:root {
    --primary: #1e392a; /* Premium Dark Green */
    --primary-light: #f1f5f3;
    --primary-dark: #12251a;
    --accent: #d4af37; /* Metallic Gold */
    --accent-hover: #b5952f;
    --accent-orange: #e67e22; /* Vibrant Orange for Button Gradients */
    --text-dark: #2c3e50;
    --text-light: #5f6a73;
    --white: #ffffff;
    --off-white: #fafafa;
    --dark: #1a2520;
    
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--off-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.25rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
    color: var(--primary);
}

h3 {
    font-size: 1.35rem;
    color: var(--primary-dark);
}

p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.subtitle-color { color: var(--text-light); }

.text-large { font-size: 1.5rem; line-height: 1.4; color: var(--text-dark); }
.bold { font-weight: 800; }

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

.highlight-gradient {
    background: linear-gradient(135deg, #f1c40f 0%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-center { text-align: center; }
.text-white, .text-white p, .text-white h2, .text-white .text-large { color: var(--white); }
.opacity-70 { opacity: 0.7; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Backgrounds */
.bg-light-green { background-color: var(--primary-light); }
.bg-white { background-color: var(--white); }
.bg-off-white { background-color: var(--off-white); }
.bg-dark { background-color: var(--dark); }
.bg-gradient { background: linear-gradient(135deg, var(--accent-orange), var(--accent)); }

/* Layout Utils */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section { padding: 6rem 0; }

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.align-center { align-items: center; }
.w-100 { width: 100%; }

/* Premium Buttons */
.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-orange) 100%);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.4);
    background: linear-gradient(135deg, #f1c40f 0%, #e67e22 100%);
}

.btn-large {
    font-size: 1.4rem;
    padding: 1.4rem 3rem;
}

.btn-pulse {
    animation: premium-pulse 2.5s infinite;
}

@keyframes premium-pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(230, 126, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0); }
}

/* Hero Section (UPDATED) */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    background-image: url('images/hero-bg.jpg.png'); /* The background image */
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.hero > .container {
    position: relative;
    z-index: 2;
}

/* Glassmorphism Effect for Hero */
.hero-glass {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 40px -10px rgba(30, 57, 42, 0.15);
    max-width: 750px;
    margin: 0 auto;
}

.hero h1 {
    text-shadow: none;
    color: var(--primary-dark);
}

.hero .subtitle {
    color: var(--text-dark);
    font-weight: 400;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 3.5rem;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.hero-bullets li {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(30, 57, 42, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(30, 57, 42, 0.05);
}


.hero-bullets .icon { color: var(--accent); }

/* [SECCIÓN EXPERTA - PARALLAX DESIGN] */
.expert-parallax {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end; /* Card na base da seção */
    background-image: url('images/hero-bg.jpg.png'); /* Misma imagen que el hero */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-bottom: 1.5rem; /* Leve distância da base para elegância */
}

.expert-parallax::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.3); /* Overlay inicial leve */
    transition: background 1.5s ease;
    z-index: 1;
}

.expert-parallax.visible::before {
    background: rgba(255, 255, 255, 0); /* Imagem totalmente nítida ao centralizar */
}

/* Garante que o fade-in da seção inteira seja suave */
.expert-parallax.fade-in {
    opacity: 0.8;
    transform: none; /* Mantemos o parallax fixo */
    transition: opacity 1.5s ease;
}

.expert-parallax.visible {
    opacity: 1;
}

.container-expert {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end; /* Card a la derecha para ver a la experta a la izquierda */
}

.expert-floating-card-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 0 30px 60px rgba(30,57,42,0.1);
    max-width: 380px;
    border: 1px solid rgba(255,255,255,0.4);
    transform: translateX(100px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.expert-floating-card-wrapper.visible {
    transform: translateX(0);
    opacity: 1;
}

.badge-expert {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.expert-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
}

/* Responsive Expert Section */
@media (max-width: 991px) {
    .container-expert { justify-content: center; }
    .expert-floating-card-wrapper {
        transform: translateY(50px);
        text-align: center;
    }
    .expert-floating-card-wrapper.visible {
        transform: translateY(0);
    }
    .stat-item { flex: 1; }
}

/* Premium Cards */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 35px rgba(30, 57, 42, 0.06);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(30, 57, 42, 0.03);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(30, 57, 42, 0.1);
}

.card-img-wrapper {
    width: 100%;
    height: 320px; /* Aumentado para garantir visibilidade da expert + balões no mobile tbm */
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 1.2rem;
    border: 1px solid rgba(0,0,0,0.08);
}

.emotional-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Garante que o balão (que está em cima) não seja cortado */
    transition: transform 0.4s ease;
}

.card:hover .emotional-card-img {
    transform: scale(1.08);
}

/* Bullet Lists */
.bad-bullets-container, .imagination-container {
    display: flex;
    justify-content: center;
}

.bad-bullets, .good-bullets, .imagination-list, .offer-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.bad-bullets li, .good-bullets li, .imagination-list li, .offer-list li {
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cross { color: #e74c3c; font-weight: bold; font-size: 1.4rem; }
.check { color: var(--primary); font-weight: bold; font-size: 1.4rem; }
.gold-star { color: var(--accent); font-size: 1.4rem; }

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-item { display: flex; flex-direction: column; align-items: center; }

.icon-circle {
    width: 90px;
    height: 90px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(30, 57, 42, 0.08);
}

.benefit-item p { font-size: 1.25rem; font-weight: 800; color: var(--text-dark); }

/* Product Images */
.responsive-img { width: 100%; height: auto; display: block; }
.shadow-premium { box-shadow: 0 30px 60px -15px rgba(30, 57, 42, 0.25); }
.rounded-xl { border-radius: 2rem; }

.product-features p {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

/* Recipes */
.recipe-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
}

.recipe-card {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: transform 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

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

.img-wrapper { overflow: hidden; }

.recipe-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.recipe-card:hover .recipe-img { transform: scale(1.05); }

.recipe-info { padding: 1.8rem; text-align: left; }
.recipe-info h3 { margin-bottom: 0.5rem; }

.recipe-meta {
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 600;
}
.recipe-meta span { color: var(--primary-light); margin: 0 0.5rem; }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    position: relative;
    box-shadow: 0 15px 35px rgba(30, 57, 42, 0.06);
    border: 1px solid rgba(0,0,0,0.02);
    text-align: center;
}

.testimonial-img-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--primary-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card p { position: relative; z-index: 2; font-style: italic; color: var(--text-dark); font-size: 1.05rem; }
.testimonial-card .stars { color: #f1c40f; font-size: 1.2rem; margin-bottom: 0.8rem; position: relative; z-index: 2; }
.testimonial-card .author { margin-top: 1.2rem; font-weight: 800; color: var(--primary); font-style: normal; }

/* Offer Box */
.premium-border {
    background: var(--white);
    border-radius: 2rem;
    padding: 4rem 3rem;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 30px 60px -15px rgba(30, 57, 42, 0.15);
    border-bottom: 6px solid var(--accent);
}

.offer-box h2 { color: var(--text-dark); }
.offer-list li { color: var(--text-dark); }

.price-box {
    margin: 2.5rem 0;
    padding-top: 2.5rem;
    border-top: 2px dashed rgba(0,0,0,0.1);
}

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

.new-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.new-price span { font-size: 4.5rem; line-height: 1; letter-spacing: -0.05em; }
.new-price small { font-size: 1.2rem; font-weight: 400; color: var(--text-light); display: block; margin-top: 0.5rem; }
.price-compare { color: var(--accent-orange); font-weight: 800; font-size: 1.3rem; }
/* Recipe Horizontal Scroll Gallery */
.recipe-gallery-scroll {
    overflow: hidden;
    padding-bottom: 4rem;
}

.horizontal-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 2rem 5%;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.horizontal-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.scroll-item {
    flex: 0 0 280px;
    scroll-snap-align: center;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(30, 57, 42, 0.15);
    background: white;
    transition: transform 0.4s ease;
}

.scroll-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.scroll-item:hover {
    transform: scale(1.02);
}

.mb-2 { margin-bottom: 2rem; }

/* Desktop adjustments for scroll gallery */
@media (min-width: 1200px) {
    .horizontal-scroll-container {
        justify-content: center;
        overflow-x: visible;
        flex-wrap: wrap;
    }
}
/* Bonuses Section */
.bonuses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(30, 57, 42, 0.05);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-img-container {
    width: 100%;
    height: 180px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 2px solid #27ae60; /* Contorno verde vibrante */
    background: #f9fdfa; /* Fundo leve para o contorno destacar */
    padding: 1rem;
}

.bonus-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.8rem;
    filter: drop-shadow(0 5px 10px rgba(39, 174, 96, 0.2));
    transition: transform 0.4s ease;
}

.bonus-placeholder {
    font-size: 3rem;
    background: var(--primary-light);
    color: #27ae60;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-card p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

.bonus-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 800;
}

.bonus-total {
    background: var(--primary-light);
    display: inline-block;
    padding: 2rem 3rem;
    border-radius: 2rem;
    border: 2px dashed var(--primary);
}

.mt-4 { margin-top: 4rem; }

@media (min-width: 768px) {
    .bonuses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Guarantee Card Adjustments */
.guarantee-card {
    background: var(--primary-light);
    border-radius: 2rem;
    padding: 4rem;
    border: 1px solid rgba(30, 57, 42, 0.05);
}

.guarantee-badge {
    background: var(--accent);
    color: white;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    border: 6px solid white;
}
.badge-text { font-size: 3rem; }

.guarantee-img {
    max-width: 260px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 15px 30px rgba(30, 57, 42, 0.18));
    transition: transform 0.4s ease;
}

.guarantee-img:hover {
    transform: scale(1.04) rotate(-1deg);
}


/* FAQ */
.faq-list { max-width: 800px; margin: 3rem auto 0; }

.faq-item {
    background: var(--white);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
}

.faq-question {
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 { margin: 0; color: var(--text-dark); transition: color 0.3s; }
.faq-item:hover .faq-question h3 { color: var(--primary); }

.faq-icon {
    font-size: 1.8rem;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 300;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p { color: var(--text-light); }

.faq-item.active .faq-answer { padding-bottom: 1.8rem; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--accent-orange); }

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Desktop/Tablet Media Queries */
@media (max-width: 767px) {
    .hero-glass { padding: 3rem 1.5rem; }
    .hero { padding: 4rem 0; }
    .guarantee-card { padding: 2rem; text-align: center; }
    .hero-bullets li { font-size: 1rem; padding: 0.5rem 1rem; }
    .premium-border { padding: 3rem 1.5rem; }
    .new-price span { font-size: 3.5rem; }
}

@media (min-width: 480px) {
    .recipe-grid, .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .grid-2-col { grid-template-columns: 1fr 1fr; }
    
    .benefits-grid, .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .recipe-grid { grid-template-columns: repeat(4, 1fr); }
    .cards-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}
/* Scarcity and New Price Colors */
.scarcity-text {
    background: #fff5f0;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
}

.red-price {
    color: #e74c3c !important;
    font-weight: 600;
}

.green-price span {
    color: #27ae60 !important;
    text-shadow: 0 0 20px rgba(39, 174, 96, 0.1);
}

.green-btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%) !important;
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4) !important;
    border: none !important;
}

.green-btn:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%) !important;
    transform: translateY(-4px);
}

/* Floating CTA */
.floating-cta-container {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(200px); /* Oculto inicialmente */
    z-index: 1000;
    width: 90%;
    max-width: 450px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cta-container.visible {
    transform: translateX(-50%) translateY(0);
}

.btn-floating {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    letter-spacing: 0;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}

@media (max-width: 768px) {
    .floating-cta-container {
        bottom: 1.5rem;
    }
    .btn-floating {
        font-size: 1rem;
        padding: 1rem;
    }
}

.mb-1 { margin-bottom: 1rem; }

/* Footers */
.footer.section { padding: 4rem 0; }
