:root {
    --primary: #008B8B; /* Dark Cyan/Teal matching Amazolé */
    --primary-light: #20B2AA;
    --accent: #FFC107; /* Bright Warning Gold for CTA */
    --accent-hover: #FFD54F;
    --text-dark: #1F2937;
    --text-light: #4B5563;
    --bg-light: #F3F9F8; /* Soft Mint/Cyan hint */
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--primary);
}

.section-title span {
    color: var(--accent);
}

/* Announcement Bar */
.announcement-bar {
    background-color: #D32F2F; /* Attention Red */
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1001;
    animation: flash 3s infinite;
}

@keyframes flash {
    0%, 100% { background-color: #D32F2F; }
    50% { background-color: #B71C1C; }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

.cta-nav {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-nav:hover {
    background-color: var(--primary-light);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #FAFAF8 0%, #E8F0EA 100%);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--accent);
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-action {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366; /* WhatsApp Green vibe for COD */
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.trust-text {
    font-size: 0.9rem !important;
    font-weight: 600;
    color: var(--primary) !important;
    margin-bottom: 0 !important;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.glass-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255,255,255,0.5);
    animation: float 4s ease-in-out infinite;
}

.glass-card .icon {
    font-size: 2rem;
}

.glass-card div {
    display: flex;
    flex-direction: column;
}

.glass-card strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.glass-card span {
    font-size: 0.9rem;
    color: var(--text-light);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(0,0,0,0.03);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.b-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Formula */
.formula {
    padding: 100px 0;
    background-color: var(--primary);
    color: var(--white);
}

.formula .section-title {
    color: var(--white);
    text-align: left;
    margin-bottom: 1rem;
}

.formula-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.formula-image {
    flex: 1;
}

.formula-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.formula-text {
    flex: 1;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.ingredient-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ingredient-list li {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.ingredient-list strong {
    display: block;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.pricing-subtitle {
    text-align: center;
    margin-top: -2rem;
    margin-bottom: 4rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s;
}

.product-thumb {
    width: 180px;
    height: auto;
    margin: -60px auto 1rem auto;
    display: block;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.pricing-card:hover .product-thumb {
    transform: scale(1.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.card-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.card-header p {
    color: var(--text-light);
    font-weight: 600;
}

.card-price {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.old-price {
    text-decoration: line-through;
    color: #9CA3AF;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.current-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--primary);
}

.currency { font-size: 1.5rem; margin-top: 0.5rem; font-weight: 700; }
.amount { font-size: 4rem; font-weight: 800; line-height: 1; }
.cents { font-size: 1.5rem; margin-top: 0.5rem; font-weight: 700; }

.savings {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    color: #16a34a;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 1rem;
}

.card-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.card-features li {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.btn-secondary {
    display: block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-light);
}

.pricing-card.popular {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
    border: 2px solid var(--accent);
    box-shadow: 0 20px 40px rgba(15, 56, 39, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.pricing-card.popular .card-header h3,
.pricing-card.popular .card-header p,
.pricing-card.popular .current-price,
.pricing-card.popular .card-features li {
    color: var(--white);
}

.pricing-card.popular .old-price {
    color: rgba(255,255,255,0.6);
}

.pricing-card.popular .card-price {
    border-color: rgba(255,255,255,0.1);
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.guarantee-box {
    margin-top: 5rem;
    background: var(--primary-light);
    color: var(--white);
    padding: 3rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-top: 1rem;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.arrow {
    transition: transform 0.3s;
}

/* Footer */
footer {
    background: #0A261A;
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem 0;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--accent);
}

.copyright {
    margin-top: 3rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .formula-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 { font-size: 2.8rem; }
    
    .glass-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        width: 90%;
        justify-content: center;
    }
    
    .benefits-grid, .pricing-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-proof {
        flex-direction: column;
        text-align: center;
    }
    
    .delivery-img {
        width: 100%;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

/* Proof Section */
.proof { padding: 100px 0; background-color: var(--white); }
.video-container { max-width: 800px; margin: 0 auto 3rem auto; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.video-container video { width: 100%; display: block; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem; }
.proof-img { width: 100%; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s; }
.proof-img:hover { transform: scale(1.05); }
.delivery-proof { display: flex; align-items: center; gap: 3rem; background: var(--bg-light); padding: 3rem; border-radius: 24px; border: 2px dashed var(--primary-light); }
.delivery-img { width: 300px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.delivery-text h3 { color: var(--primary); font-size: 1.8rem; margin-bottom: 1rem; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: bounce 2s infinite;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    filter: brightness(0) invert(1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-10px); }
}

/* ── Banner Flutuante Dia das Mães ── */
.mae-banner {
    position: fixed;
    bottom: 110px;
    left: 20px;
    width: 230px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.22);
    overflow: hidden;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    animation: maeEntrada 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
    border: 2px solid #d4a017;
}

.mae-banner.escondido {
    display: none;
}

@keyframes maeEntrada {
    from { opacity: 0; transform: translateY(40px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mae-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background 0.2s;
    line-height: 1;
}

.mae-close:hover {
    background: rgba(0,0,0,0.8);
}

.mae-img {
    width: 100%;
    display: block;
}

.mae-cta {
    display: block;
    background: #25D366;
    color: #fff;
    text-align: center;
    padding: 0.85rem 1rem;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}

.mae-cta:hover {
    background: #1ebe5d;
}

/* Botão reabrir (topo fixo) */
.mae-reopen {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #b5651d, #d4a017, #b5651d);
    background-size: 200% auto;
    color: #fff;
    border: none;
    padding: 0.45rem 1.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    border-radius: 0 0 14px 14px;
    cursor: pointer;
    z-index: 9999;
    display: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    animation: brilhoOuro 2.5s linear infinite;
    letter-spacing: 0.3px;
}

.mae-reopen:hover {
    filter: brightness(1.1);
}

@keyframes brilhoOuro {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@media (max-width: 600px) {
    .mae-banner {
        width: calc(100% - 40px);
        left: 20px;
        bottom: 100px;
    }
}
