:root {
    --primary-pink: #FF1493;
    --primary-light: #FF69B4;
    --primary-dark: #C71585;
    --neon-glow: 0 0 20px rgba(255, 20, 147, 0.6);
    --bg-color: #FAFAFA;
    --bg-gradient: linear-gradient(135deg, #ffffff 0%, #fff0f5 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(255, 20, 147, 0.1);
    --text-dark: #1A000A;
    --text-light: #664d57;
    --white: #FFFFFF;
    --success-green: #00A859;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: var(--bg-gradient);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Background Animations */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: floatGlow 10s infinite alternate;
    will-change: transform;
    /* Otimização de GPU */
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 20, 147, 0.3);
    top: -100px;
    left: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(255, 105, 180, 0.2);
    top: 40%;
    right: -200px;
    animation-delay: -5s;
}

.glow-3 {
    width: 600px;
    height: 600px;
    background: rgba(199, 21, 133, 0.2);
    bottom: -200px;
    left: 20%;
    animation-duration: 15s;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Particles Container */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    font-size: 1.5rem;
    animation: fall linear forwards;
    filter: drop-shadow(0 4px 6px rgba(255, 20, 147, 0.3));
    will-change: transform;
    /* Otimização de performance */
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg) scale(0);
        opacity: 0;
    }

    10% {
        transform: translateY(0) rotate(45deg) scale(1);
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(255, 20, 147, 0.2);
}

.premium-glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 245, 0.9));
    border: 2px solid var(--primary-pink);
    box-shadow: var(--neon-glow);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-light));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: var(--neon-glow);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.8);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-pink);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary-pink);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

.btn-secondary:hover {
    background: var(--primary-pink);
    color: var(--white);
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-pink);
}

/* Reveal Animation Class */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section Defaults */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    line-height: 1.15;
    background: linear-gradient(to right, var(--primary-pink), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle,
.section-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-inline: auto;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 90vh;
    padding-top: 8rem;
}

.logo-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.logo-title .dot {
    color: var(--primary-pink);
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-content .description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pricing-card {
    border-radius: 24px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
}

.price-new {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-pink);
    line-height: 1;
    margin-bottom: 1rem;
}

.price-new span {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.benefits-list.center {
    text-align: center;
}

.security-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--success-green);
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yogurt-splash {
    width: 100%;
    max-width: 500px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.yogurt-splash svg {
    width: 100%;
    filter: drop-shadow(0 20px 30px rgba(255, 20, 147, 0.3));
}

.illustrative-yogurt {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 105, 180, 0.4));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    box-shadow:
        inset 15px 15px 30px rgba(255, 255, 255, 0.9),
        inset -15px -15px 30px rgba(255, 20, 147, 0.3),
        0 20px 50px rgba(255, 20, 147, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: morph 8s ease-in-out infinite, float 6s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

.emoji-glass {
    font-size: 8rem;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
    z-index: 2;
}

.emoji-strawberry {
    font-size: 5rem;
    position: absolute;
    top: 40px;
    right: 40px;
    filter: drop-shadow(0 10px 15px rgba(255, 20, 147, 0.4));
    z-index: 3;
    animation: float 4s ease-in-out infinite 1s;
}

.floating-strawberry {
    position: absolute;
    font-size: 3rem;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.sb-1 {
    top: 10%;
    right: 10%;
    animation: float 4s ease-in-out infinite 0.5s;
}

.sb-2 {
    bottom: 20%;
    left: 10%;
    animation: float 5s ease-in-out infinite 1s;
    font-size: 2.5rem;
}

.sb-3 {
    top: 40%;
    left: -5%;
    animation: float 7s ease-in-out infinite 1.5s;
    font-size: 2rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Recipes Grid */
.recipes-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 1rem 1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.recipes-grid::-webkit-scrollbar {
    display: none;
}

.recipe-card {
    flex: 0 0 280px;
    background: var(--primary-pink);
    border-radius: 20px;
    overflow: hidden;
    color: var(--white);
    text-align: center;
    position: relative;
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3);
}

.recipe-image {
    height: 180px;
    background-color: #FFF0F5;
    position: relative;
    overflow: hidden;
}

.recipe-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.recipe-wave {
    position: absolute;
    bottom: -1px;
    /* Prevents tiny gaps */
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 1;
}

.recipe-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.recipe-title {
    padding: 15px 15px 25px 15px;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.tags-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 900;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-pink), #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Uma borda/sombra branca sutil para desgrudar do fundo */
    filter: drop-shadow(0px 1px 2px rgba(255, 255, 255, 0.9)) drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.1));
}

.tag::before {
    content: "🍓";
    -webkit-text-fill-color: initial;
    /* Preserva a cor original do emoji */
    font-size: 1.1rem;
}

/* Deliverables Section */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.deliverable-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 20, 147, 0.15);
}

.deliverable-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.15);
    border-color: rgba(255, 20, 147, 0.4);
}

.deliverable-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 15px rgba(255, 20, 147, 0.2));
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.deliverable-card h3 {
    font-size: 1.4rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-weight: 800;
}

.deliverable-card p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Social Proof Image Wrapper */
.social-proof-wrapper {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 20, 147, 0.1);
    background: white;
}

.social-proof-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.testimonials-section {
    padding-bottom: 1rem;
}

/* Guarantee */
.guarantee-card {
    text-align: center;
    padding: 4rem 2rem;
}

.shield-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.guarantee-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-pink);
}

/* Offers */
.offers-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.offer-card {
    width: 100%;
    max-width: 800px;
    position: relative;
    padding: 3rem;
}

.badges {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.badge {
    background: var(--text-dark);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.badge.highlight {
    background: var(--primary-pink);
}

.badge.sold {
    background: #FF9800;
}

.premium-offer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.95));
    border: 3px solid var(--primary-pink);
    transform: scale(1.02);
}

.glow-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 26px;
    background: linear-gradient(45deg, var(--primary-pink), transparent, var(--primary-light), transparent);
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% {
        filter: blur(10px) hue-rotate(0deg);
    }

    100% {
        filter: blur(10px) hue-rotate(360deg);
    }
}

.premium-header {
    text-align: center;
    margin-bottom: 2rem;
}

.premium-header h3 {
    font-size: 2rem;
    color: var(--primary-pink);
    font-weight: 900;
}

.items-list {
    list-style: none;
    margin: 1.5rem 0;
}

.items-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.items-list li strong {
    display: block;
    color: var(--text-dark);
}

.items-list li span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.item-price {
    font-weight: bold;
    color: var(--primary-pink);
    white-space: nowrap;
    margin-left: 1rem;
}

.total-block {
    text-align: center;
    background: rgba(255, 20, 147, 0.05);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.price-strikethrough {
    text-decoration: line-through;
    font-size: 1.5rem;
    color: var(--text-light);
    margin: 0.5rem 0;
}

.final-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-pink);
    line-height: 1;
    text-shadow: 0 4px 10px rgba(255, 20, 147, 0.2);
}

.installments {
    font-weight: bold;
    color: var(--success-green);
    font-size: 1.2rem;
}

.delivery-text {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Timer */
.timer-section {
    text-align: center;
    background: var(--text-dark);
    color: white;
    border-radius: 24px;
    padding: 3rem;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.timer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    min-width: 80px;
    backdrop-filter: blur(5px);
}

.time-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-light);
}

.time-box label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.separator {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-pink);
    line-height: 1.5;
}

/* FAQ */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item.glass-card {
    padding: 0;
    overflow: hidden;
    /* Otimização de performance: O blur do glassmorphism em muitos itens causa travamento (lag) */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.98);
    /* Força o navegador a renderizar o card na GPU, evitando lag ao empurrar os itens de baixo */
    transform: translateZ(0);
    will-change: transform;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--primary-pink);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.3s ease-out;
    padding: 0 1.5rem;
    opacity: 0;
    will-change: max-height, padding, opacity;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
    opacity: 1;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    background: var(--text-dark);
    color: var(--white);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Custom Guarantee Section */
.guarantee-section {
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
}

.guarantee-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, var(--primary-pink), var(--primary-dark));
    border-radius: 30px;
    padding: 4rem 3rem;
    max-width: 900px;
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3);
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

/* Glowing background effect inside the card */
.guarantee-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.guarantee-seal {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.25));
}

.guarantee-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--white);
}

.guarantee-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-highlight {
    color: #FFD700;
    /* Gold */
    font-weight: 900;
}

@media (max-width: 768px) {
    .guarantee-showcase {
        padding: 3rem 1.5rem;
    }

    .guarantee-title {
        font-size: 2rem;
    }

    .guarantee-text {
        font-size: 1.1rem;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 2rem 2rem 6rem 2rem;
    text-align: center;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: linear-gradient(to right, rgba(255, 20, 147, 0.03), rgba(255, 20, 147, 0.08));
    border: 1px solid rgba(255, 20, 147, 0.15);
    border-radius: 24px;
}

.final-cta-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.final-cta-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-content {
        display: contents;
    }

    .logo-title {
        order: 1;
        font-size: 3.2rem;
        margin-bottom: 0;
        line-height: 1;
    }

    .small-alert {
        order: 5;
    }

    .subtitle {
        order: 2;
        margin-bottom: 0;
        line-height: 1.2;
    }

    .hero-visual {
        order: 3;
        margin: 0.5rem 0;
    }

    .illustrative-yogurt {
        width: 250px;
        height: 250px;
    }

    .emoji-glass {
        font-size: 6rem;
    }

    .emoji-strawberry {
        font-size: 3.5rem;
        top: 25px;
        right: 25px;
    }

    .description {
        order: 4;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .pricing-card {
        order: 6;
        margin-top: 0;
        padding: 1.5rem;
    }

    .benefits-list {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 600px) {
    section {
        padding: 3rem 1.5rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .time-box {
        min-width: 60px;
        padding: 0.5rem;
    }

    .time-box span {
        font-size: 1.8rem;
    }

    .badges {
        flex-direction: column;
        align-items: center;
        top: -30px;
    }

    .offer-card {
        padding: 2rem 1.5rem;
    }

    .items-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .item-price {
        margin-left: 0;
    }
}

/* Mobile Recipes Carousel */
@media (max-width: 768px) {
    .recipes-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 2rem;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        scrollbar-width: none;
        /* Firefox */
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .recipes-grid::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .recipe-card {
        flex: 0 0 85%;
        /* Cards take up 85% of screen width on mobile */
        scroll-snap-align: center;
    }

    .swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--white);
        width: 100%;
        margin: 0 auto 1rem auto;
        font-size: 0.95rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-shadow: 0 2px 10px rgba(255, 20, 147, 0.9), 0 0 5px rgba(0, 0, 0, 0.5);
    }

    .carousel-container {
        position: relative;
    }

    .carousel-arrow {
        display: flex;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        /* Não bloqueia o toque do usuário */
        animation: bounceHorizontal 1.5s infinite;
        filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
        transition: opacity 0.3s ease;
    }

    .carousel-arrow.hidden {
        opacity: 0 !important;
        animation: none;
    }

    .carousel-arrow svg {
        width: 40px;
        height: 40px;
    }
}

@keyframes bounceHorizontal {

    0%,
    100% {
        transform: translate(0, -50%);
        opacity: 1;
    }

    50% {
        transform: translate(15px, -50%);
        opacity: 0.7;
    }
}

@media (min-width: 769px) {
    .swipe-hint {
        display: none;
    }

    .carousel-arrow {
        display: flex;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        animation: bounceHorizontal 1.5s infinite;
    }
}

/* Eyebrow Alert */
.small-alert {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-pink);
    border: 1px solid rgba(255, 20, 147, 0.4);
    background: rgba(255, 20, 147, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    animation: fadeInSlide 1s ease-out;
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}