﻿/* css/vitagreen.css */

:root {
    --primary: #9EDB32;
    --primary-light: #B7E64A;
    --primary-dark: #7FBF1F;
    --green-deep: #5C8F17;

    --bg-main: #F7F8F2;
    --bg-beige: #ECE5D8;

    --text-dark: #2C2C2C;
    --text-gray: #6F6F6F;

    --button: #9EDB32;
    --button-hover: #7FBF1F;

    /* Legacy Mappings to preserve existing layout */
    --bg-color: var(--bg-main);
    --text-color: var(--text-dark);
    --text-light: var(--text-gray);
    --footer-bg: var(--text-dark);
    
    --white: #ffffff;
    --black: #000000;
    --font-family: 'Inter', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

h2 {
    font-size: 28px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Placeholders */
.placeholder-img {
    background-color: #e0ded5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 14px;
    text-align: center;
    border-radius: var(--radius);
}

.placeholder-avatar {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
    min-height: 40px;
    aspect-ratio: 1/1;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #ccc;
    border: 2px solid var(--white);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-white {
    display: inline-block;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
    width: 100%;
    max-width: 400px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* --- Ticker --- */
.ticker-wrapper {
    background-color: var(--primary);
    color: var(--white);
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.ticker-content {
    display: inline-block;
    animation: ticker 20s linear infinite;
}
.ticker-content span {
    padding-right: 50px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes ticker-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* --- Hero Section --- */
.hero-bg-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-bg-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero23.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15; /* Deixa o fundo sutil para dar leitura ao texto escuro */
    z-index: 0;
}

.hero-container {
    padding: 32px 20px 40px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-proof-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.social-proof-line .avatars {
    display: flex;
}
.social-proof-line .avatars .placeholder-avatar {
    margin-left: -10px;
}
.social-proof-line .avatars .placeholder-avatar:first-child {
    margin-left: 0;
}
.social-proof-line p {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.3;
}

.hero-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 32px;
}
.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
}
.icon-check {
    color: var(--primary-light);
    font-weight: 800;
}

.hero-container .btn-primary {
    margin-bottom: 20px;
}

.trust-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.trust-badges .badge {
    font-size: 12px;
    background-color: #e9e8e2;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--text-light);
}

.features-line {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
}

/* --- Benefits Marquee --- */
.benefits-marquee {
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 800;
}

.benefits-marquee .marquee-content {
    display: inline-block;
    animation: ticker-reverse 25s linear infinite;
}
.benefits-marquee .marquee-content span {
    padding-right: 40px;
}

/* --- Section Formatting --- */
section {
    padding: 60px 0;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Scrollers */
.cards-scroller {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 24px;
    scrollbar-width: none; /* Firefox */
}
.cards-scroller::-webkit-scrollbar {
    display: none; /* Chrome */
}

/* --- Videos Scroll --- */
.videos-section {
    padding: 80px 0 60px;
    background-color: var(--bg-beige);
}

.videos-title {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 32px;
    line-height: 1.3;
    text-transform: none;
    font-weight: 800;
}

.scroll-video {
    width: 160px;
    height: 284px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    background-color: #000;
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.3;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.carousel-dots .dot.active {
    opacity: 1;
}

/* Centralize videos on desktop */
@media (min-width: 768px) {
    #video-scroller {
        justify-content: center;
    }
}

/* --- Testimonials --- */
.testimonials-section {
    background-color: var(--white);
}
.testimonial-card {
    min-width: 280px;
    background-color: var(--bg-color);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.quote-icon {
    font-size: 40px;
    color: var(--primary-light);
    font-family: serif;
    line-height: 1;
    margin-bottom: 10px;
}
.testimonial-card p {
    font-size: 15px;
    margin-bottom: 20px;
    font-style: italic;
}
.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.author-info strong {
    display: block;
    font-size: 14px;
}
.author-info span {
    font-size: 12px;
    color: var(--text-light);
}
.stars {
    color: #F5A623;
    font-size: 18px;
    letter-spacing: 2px;
}

/* --- Superfoods --- */
.superfood-card {
    min-width: 240px;
    background-color: var(--white);
    padding: 16px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.superfood-img {
    height: 160px;
    margin-bottom: 16px;
}
.tag {
    display: inline-block;
    background-color: #eaf3e6;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.superfood-card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}
.superfood-card em {
    display: block;
    font-size: 13px;
    color: var(--primary-light);
    margin-bottom: 12px;
    font-style: normal;
    font-weight: 600;
}
.superfood-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* --- Benefits Accordion --- */
.benefits-accordion-section {
    background-color: var(--white);
}

.accordion {
    margin-bottom: 32px;
}
.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.accordion-body p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--text-light);
}
.accordion-item.active .accordion-body {
    max-height: 200px;
}
.accordion-item.active .icon-plus {
    transform: rotate(45deg);
}
.icon-plus {
    font-size: 24px;
    transition: transform 0.3s ease;
    font-weight: 400;
    color: var(--primary);
}

/* --- Preparation --- */
.prep-card {
    min-width: 260px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
}
.prep-img {
    height: 180px;
    margin-bottom: 20px;
}
.prep-step {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: var(--primary);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}
.prep-card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}
.prep-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* --- Numbers Section --- */
.numbers-section {
    background-color: var(--primary);
    color: var(--white);
}
.numbers-section h2 {
    color: var(--white);
}
.scroller-large .number-card {
    min-width: 280px;
    background-color: rgba(255,255,255,0.1);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
}
.big-number {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--white);
}
.number-card strong {
    display: block;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    color: var(--white);
}
.number-card p {
    font-size: 14px;
    opacity: 0.9;
    color: var(--white);
}
.footnote {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 24px;
}

/* --- Comparison Table --- */
.comparison-section {
    background-color: var(--white);
}
.table-container {
    overflow-x: auto;
    margin-bottom: 24px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}
th, td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
th {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-light);
}
.col-highlight {
    background-color: #eaf3e6;
    color: var(--primary);
    font-weight: 700;
    text-align: center;
}
th.col-highlight {
    background-color: var(--primary);
    color: var(--white);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.row-total td {
    font-weight: 800;
    font-size: 16px;
    border-bottom: none;
}
.price-box {
    text-align: center;
}
.price-strike {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}
.price-strike del {
    color: var(--text-light);
    font-weight: 500;
}

/* --- Offers Section --- */
.offers-section {
    background-color: var(--bg-color);
}
.offers-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    padding-bottom: 24px;
    padding-top: 16px;
}
.offers-stack .product-card {
    width: 100%;
    max-width: 400px;
}
.product-card {
    min-width: 280px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    border: 2px solid transparent;
}
.highlighted-card {
    border-color: var(--primary);
    background-color: #fcfffb;
}
.badge-promo {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1a1a;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}
.badges-wrapper {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    white-space: nowrap;
}
.badge-popular {
    background-color: #FFC107;
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
}
.badge-shipping {
    background-color: #FFC107;
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
}
.product-img {
    height: 200px;
    margin-bottom: 16px;
    margin-top: 16px;
}
.product-card .stars {
    margin-bottom: 8px;
    font-size: 16px;
}
.product-card .rating {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 700;
}
.product-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
.product-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    min-height: 42px;
}
.price-block {
    margin-bottom: 16px;
}
.price-block del {
    color: var(--text-light);
    font-size: 14px;
    display: block;
}
.current-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}
.per-dose {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
    background-color: #eaf3e6;
    padding: 8px;
    border-radius: 4px;
    text-align: center;
}
.btn-buy {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background-color: #e0ded5;
    color: var(--text-color);
    transition: var(--transition);
}
.dark-btn {
    background-color: var(--primary);
    color: var(--white);
}
.btn-buy:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.gift-line {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
    margin-top: 24px;
}

/* --- FAQ Section --- */
.faq-section {
    background-color: var(--white);
}

/* --- Final CTA --- */
.final-cta-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 20px;
}
.final-cta-section h2 {
    color: var(--white);
}
.final-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}
.final-price {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 32px;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 60px 0 100px; /* Extra padding for sticky footer */
}
.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
}
.lead-capture {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}
.lead-capture input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-family);
}
.lead-capture button {
    background-color: var(--primary-light);
    color: var(--white);
    border: none;
    padding: 0 24px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
}
.social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}
.social-icons a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 14px;
    opacity: 0.8;
}
.footer-badges {
    display: flex;
    gap: 16px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.7;
}

/* --- Floating WhatsApp --- */
.fab-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 99;
    transition: var(--transition);
}
.fab-whatsapp:hover {
    transform: scale(1.1);
}
.fab-whatsapp svg {
    width: 32px;
    height: 32px;
}

/* --- Sticky Footer --- */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.sticky-footer.visible {
    transform: translateY(0);
}
.sticky-logo {
    font-weight: 800;
    color: var(--primary);
}
.sticky-info {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
}
.sticky-footer .btn-primary {
    width: auto;
    padding: 10px 20px;
    font-size: 14px;
}

/* --- Desktop Adjustments --- */
@media (min-width: 768px) {
    .hero-container h1 { font-size: 48px; }
    .hero-subtitle { font-size: 18px; }
    h2 { font-size: 36px; }
    .footer-links { grid-template-columns: repeat(3, 1fr); }
    .lead-capture { max-width: 400px; }
    .fab-whatsapp { bottom: 20px; }
    .sticky-footer { display: none; } /* Ocultar sticky footer no desktop, focando em mobile */
}

/* Animação para a seção de ofertas */
@keyframes fadeInUpOffer {
    from { opacity: 0; transform: translateY(60px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.offer-hidden { opacity: 0; }
.offer-visible { animation: fadeInUpOffer 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }


/* Animação de pulso para botões de compra */
@keyframes pulseBuyButton {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}
.btn-buy { animation: pulseBuyButton 2s infinite ease-in-out; }
.btn-buy:hover { animation: none; transform: scale(1.06); }



