@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

:root {
    --primary: #014da1;
    --primary-dark: #003a7a;
    --secondary: #17a2b8;
    --accent: #25a34a;
    --accent-hover: #1e853c;
    --text: #2d3436;
    --text-muted: #636e72;
    --bg-light: #f9fbfd;
    --bg-blue: rgba(1, 77, 161, 0.04);
    --white: #ffffff;
    --success: #25a34a;
    --border: #dfe6e9;
    --shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes shimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

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

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.6rem);
    margin-bottom: 50px;
    color: var(--primary-dark);
    font-weight: 800;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Header */
header {
    background: #fff;
    padding: 18px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -1.2px;
    text-transform: uppercase;
}

.logo span { color: #000; }

/* Premium Textures & Glassmorphism */
section { position: relative; overflow: hidden; }

.ingredients {
    background: #fff;
    background-image: 
        radial-gradient(rgba(37, 163, 74, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, #ffffff 0%, #f0fdf4 100%);
    background-size: 20px 20px, 100% 100%;
}

.expert-wrap {
    display: flex;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, rgba(1, 77, 161, 0.06) 0%, rgba(23, 162, 184, 0.06) 100%);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(1, 77, 161, 0.1);
    position: relative;
    overflow: hidden;
}

.expert-wrap::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(1, 77, 161, 0.1) 0%, transparent 70%);
}

.testimonial-card, .ingredient-card, .order-card, .timeline-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover, .ingredient-card:hover, .order-card:hover, .timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    background: #fff;
}

/* Section Transitions */
.hero {
    background: radial-gradient(circle at 80% 20%, rgba(1, 77, 161, 0.05) 0%, #ffffff 100%);
    padding: 80px 0 120px;
    padding: 60px 0 100px;
    min-height: calc(100vh - 80px); /* Ocupa a tela inteira visível */
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23014da1' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Grid Updates to Respect Padding */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center; /* Centralização vertical para enquadramento perfeito */
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem); /* Tamanho otimizado para caber na tela */
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 5px 15px rgba(1, 77, 161, 0.1);
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    max-width: 520px;
    color: var(--text-muted);
    line-height: 1.5;
}

.hero-image-wrap {
    position: relative;
    max-width: 320px; /* Tamanho compacto para garantir visibilidade total */
}

.floating-img {
    width: 100%;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.12));
}

.hero-form { 
    background: #fff; 
    padding: 35px 30px; 
    border-radius: 30px; 
    box-shadow: 0 40px 90px rgba(0,0,0,0.12); 
    width: 100%; 
    max-width: 420px; 
    margin-left: auto;
}

.form-group { 
    margin-bottom: 20px; 
    text-align: left; 
    width: 100%; 
}

.form-group label { 
    display: block !important; 
    margin-bottom: 8px; 
    font-weight: 700; 
    font-size: 0.95rem; 
    color: #333; 
}

.form-group input { 
    display: block !important;
    width: 100% !important; 
    padding: 15px; 
    border: 2px solid #f0f0f0; 
    border-radius: 12px; 
    font-size: 1rem; 
    outline: none; 
    transition: 0.3s;
    background: #fcfcfc;
}

.form-group input:focus { 
    border-color: #014da1; 
    background: #fff;
    box-shadow: 0 0 10px rgba(1, 77, 161, 0.1); 
}

.price-box { 
    margin: 25px 0; 
    background: #f8fbff; 
    padding: 20px; 
    border-radius: 15px; 
    border: 1px dashed rgba(1, 77, 161, 0.2); 
    text-align: center;
}

.old-price { 
    display: block; 
    color: #d63031; 
    text-decoration: line-through; 
    font-size: 1rem; 
    margin-bottom: 5px; 
    font-weight: 600; 
}

.new-price { 
    font-size: 2.2rem; 
    font-weight: 900; 
    color: #014da1; 
}

.btn-cta { 
    display: block;
    width: 100%; 
    padding: 20px; 
    background: linear-gradient(135deg, #ffc107 0%, #ffca2c 100%); 
    color: #000; 
    border: none; 
    border-radius: 15px; 
    font-size: 1.3rem; 
    font-weight: 900; 
    cursor: pointer; 
    transition: 0.3s; 
    box-shadow: 0 10px 20px rgba(255, 179, 0, 0.3); 
    text-transform: uppercase; 
    margin-bottom: 25px; 
}

.btn-cta:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 30px rgba(255, 179, 0, 0.4); 
}

.form-trust { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    font-weight: 600; 
    color: #555; 
    font-size: 0.9rem; 
}

.badge-item { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
}

.badge-item i { 
    color: #25a34a; 
    font-size: 1.1rem; 
}

/* Testimonials */
.results-testi { background: var(--bg-light); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: #fff; border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.testimonial-image { width: 100%; height: auto; display: block; }
.testimonial-info { padding: 25px; }
.stars { color: #ffc107; margin-bottom: 8px; }
.testimonial-author { margin-top: 12px; font-weight: 700; color: var(--primary); }

/* Expert Section */
.expert-wrap {
    display: flex;
    gap: 50px;
    align-items: center;
    background: var(--bg-blue);
    padding: 50px;
    border-radius: 30px;
}

.expert-img {
    flex: 0 0 320px;
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Comparison Table */
.table-responsive { overflow-x: auto; border-radius: 15px; box-shadow: var(--shadow); }
.comparison-table { width: 100%; min-width: 700px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 18px; text-align: center; border: 1px solid var(--border); }
.comparison-table th { background: var(--primary); color: #fff; }
.comparison-table td:first-child { text-align: left; font-weight: 700; background: #fafafa; position: sticky; left: 0; }
.check { color: var(--success); font-weight: bold; }
.cross { color: #d63031; font-weight: bold; }

/* Timeline - Fresh Light Green */
.timeline {
    background: linear-gradient(to bottom, #f0fdf4 0%, #ffffff 100%);
}

.timeline-item {
    background: #fff;
    border: 1px solid rgba(37, 163, 74, 0.1);
}

/* Timeline Section Update */
.expect-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

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

.full-product-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

@media (max-width: 991px) {
    .expect-grid {
        grid-template-columns: 1fr;
    }
    .expect-image {
        margin-bottom: 30px;
        order: -1;
    }
    .full-product-img {
        width: 60%;
        max-width: 260px;
    }
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
}

.timeline-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 480px) { .timeline-grid { grid-template-columns: 1fr; } }
.timeline-item { text-align: center; padding: 30px 20px; background: #fff; border-radius: 20px; box-shadow: var(--shadow); }
.timeline-step { width: 50px; height: 50px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-weight: 800; font-size: 1.2rem; }

/* FAQ - Modern Silver */
.faq { background: #f4f6f8; padding: 100px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 12px; border: 1px solid var(--border); border-radius: 10px; }
.faq-question { padding: 18px; cursor: pointer; display: flex; justify-content: space-between; font-weight: 700; }
.faq-answer { padding: 0 18px; max-height: 0; overflow: hidden; transition: all 0.3s; }
.faq-item.active .faq-answer { padding: 18px; max-height: 200px; border-top: 1px solid var(--border); }

/* Order Process */
.order-process { background: #f0f7ff; }
.order-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.order-card { background: #fff; padding: 40px 20px; border-radius: 25px; text-align: center; box-shadow: var(--shadow); }
.order-icon { width: 140px; margin-bottom: 20px; }
.order-num { width: 40px; height: 40px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-weight: 800; }

/* Ingredients Section */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ingredient-card {
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}

.ingredient-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.ingredient-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.ingredient-card h4 {
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-size: 1.25rem;
}

/* Footer Section */
footer { background: #111; color: #fff; padding: 50px 0; }
footer .logo span { color: #fff; }
.footer-links a { color: #fff; text-decoration: none; margin: 0 10px; opacity: 0.7; font-size: 0.9rem; }
.disclaimer-text { font-size: 11px; opacity: 0.4; margin-top: 30px; text-align: justify; line-height: 1.4; }

/* ==========================================================================
   MOBILE DESIGN PROTOCOL (Elite 50-60 Senior Framework)
   ========================================================================== */
@media (max-width: 991px) {
    .container { width: 96% !important; padding: 0 8px !important; }
    section { padding: 60px 0; }
    
    header { padding: 15px 0 !important; background: #ffffff !important; box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important; position: sticky !important; top: 0 !important; z-index: 1000 !important; }
    .nav { justify-content: center !important; }
    .logo { font-size: 22px !important; letter-spacing: -0.8px !important; text-align: center; }

    /* --- HERO SECTION --- */
    .hero { padding: 40px 0 80px; min-height: auto; text-align: center; }
    .hero-grid { display: flex; flex-direction: column; align-items: center; gap: 50px; width: 100%; }
    .hero-content { width: 100%; max-width: 100%; }
    
    .hero-content h1 { font-size: 30px !important; font-weight: 950 !important; line-height: 1.2 !important; margin-bottom: 20px !important; text-align: center; color: var(--primary-dark); }
    .hero-content p { font-size: 18px !important; line-height: 1.6 !important; text-align: center; margin-bottom: 25px !important; }
    .hero-content p strong { font-weight: 900 !important; color: var(--primary-dark); }
    .hero-image-wrap { margin: 0 auto 30px; width: 75% !important; max-width: 220px !important; display: block; }

    /* --- FORM & CONVERSION --- */
    .hero-form { 
        margin: 30px auto 0 !important; 
        width: 100% !important; 
        max-width: none !important; 
        padding: 30px 15px !important; 
        border-radius: 20px; 
        background: #fff;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08); 
        box-sizing: border-box !important;
    }
    
    .hero-form h3 { font-size: 24px !important; margin-bottom: 25px !important; font-weight: 900; color: var(--primary-dark); text-align: center; }
    .form-group { margin-bottom: 20px !important; width: 100% !important; }
    .form-group label { font-size: 16px !important; margin-bottom: 8px !important; display: block; font-weight: 700; color: #111; text-align: left; }
    .form-group input { font-size: 16px !important; padding: 15px 12px !important; border-radius: 10px; height: auto; border: 2px solid #eee; width: 100% !important; display: block !important; }
    
    .price-box { margin: 30px 0 !important; padding: 20px 15px; border-radius: 12px; }
    .new-price { font-size: 40px !important; font-weight: 950; margin: 12px 0 !important; text-align: center; color: var(--primary); }
    .old-price { font-size: 18px !important; }
    .btn-cta { font-size: 20px !important; padding: 20px; border-radius: 12px; font-weight: 900; width: 100% !important; display: block !important; margin-bottom: 25px !important; }
    .form-trust { margin-top: 20px !important; gap: 12px !important; width: 100% !important; display: flex !important; flex-direction: column !important; }
    .badge-item { font-size: 16px !important; font-weight: 600 !important; color: #4b5563 !important; }
    .badge-item i { font-size: 18px !important; }

    /* --- TITLES & HIERARCHY --- */
    h2, .section-title { font-size: 26px !important; margin: 50px 0 35px !important; line-height: 1.2 !important; text-align: center; font-weight: 950; }
    h2::after { margin: 15px auto 0; }
    
    h3, h4, .ingredient-card h4, .timeline-item h3, .order-card h3, .timeline-item h4 { 
        font-size: 24px !important; 
        line-height: 1.3 !important; 
        margin-bottom: 20px !important; 
        font-weight: 950 !important; 
        text-align: center !important;
    }

    /* --- BODY CONTENT (Harmonious Legibility 17px) --- */
    p, li, .card p, .timeline-item p, .feature-card p, .ingredient-card p, .expert-content p {
        font-size: 17px !important;
        line-height: 1.6 !important;
        color: #374151;
        margin-bottom: 25px !important;
        text-align: center;
        display: block;
        font-weight: 400;
    }

    /* --- SPECIFIC COMPONENTS --- */
    .testimonial-card { text-align: center !important; padding: 25px 15px !important; border-radius: 20px !important; margin-bottom: 20px !important; }
    .testimonial-card p { font-size: 16px !important; text-align: center !important; margin-bottom: 15px !important; }
    .stars { font-size: 22px !important; text-align: center !important; margin: 0 auto 15px !important; display: block !important; }
    .testimonial-author { font-size: 20px !important; font-weight: 800; margin-top: 12px; text-align: center !important; }
    .testimonial-grid, .timeline-grid, .order-grid, .ingredients-grid { grid-template-columns: 1fr; gap: 30px; }
    .testimonial-image { width: 85%; max-width: 200px; margin: 0 auto 15px; display: block; border-radius: 12px; }
    
    .testimonial-info { text-align: center !important; width: 100% !important; }

    .ingredient-card { padding: 30px 15px; border-radius: 15px; text-align: center !important; }
    .ingredient-card i { font-size: 38px !important; margin: 0 auto 15px !important; display: block !important; }
    .ingredient-card p { font-size: 16px !important; text-align: center !important; }
    
    .order-card { padding: 35px 15px !important; margin-bottom: 35px !important; border-radius: 25px !important; text-align: center !important; }
    .order-card h5 { font-size: 26px !important; font-weight: 950 !important; line-height: 1.3 !important; margin-bottom: 15px !important; text-align: center !important; }
    .order-icon { width: 100% !important; max-width: 220px !important; margin: 0 auto 25px !important; display: block !important; }
    .order-num { width: 50px !important; height: 50px !important; font-size: 22px !important; line-height: 50px !important; margin: 0 auto 20px !important; }
    .order-card p { font-size: 16px !important; text-align: center !important; }

    .expert-wrap { 
        display: flex !important; 
        flex-direction: column !important; 
        align-items: center !important; 
        text-align: center !important;
        padding: 30px 15px !important; 
        border-radius: 20px !important; 
    }
    .expert-img { width: 100% !important; max-width: 280px !important; margin: 0 auto 30px !important; display: block !important; border-radius: 15px !important; }
    .expert-content h2 { font-size: 28px !important; margin-bottom: 20px !important; }
    .expert-content p { font-size: 17px !important; line-height: 1.6 !important; }
    
    .timeline-item { padding: 35px 15px !important; border-radius: 20px !important; }
    .timeline-step { width: 60px !important; height: 60px !important; font-size: 26px !important; line-height: 60px !important; }
    .timeline-item h4 { font-size: 26px !important; }

    /* --- FINAL CTA --- */
    .final-cta { padding: 60px 15px !important; text-align: center !important; }
    .final-cta h2 { font-size: 32px !important; color: #ffffff !important; margin-bottom: 25px !important; }
    .final-cta p { font-size: 18px !important; color: #ffffff !important; margin-bottom: 30px !important; opacity: 0.9 !important; }
    .final-cta .trust-badge { color: #ffffff !important; font-size: 16px !important; }

    /* --- FAQ --- */
    .faq-question { font-size: 20px !important; padding: 20px !important; min-height: 60px !important; }
    .faq-answer p { font-size: 17px !important; text-align: left !important; }

    /* --- COMPARISON TABLE --- */
    .comparison-table { min-width: 600px !important; }
    .comparison-table th, .comparison-table td { font-size: 17px !important; padding: 15px 8px !important; }
    .comparison-table i { font-size: 24px !important; }
}
