/* Force Update: 2026-02-11 21:18 Hamburger Debug Fix */
:root {
    /* Main Brands */
    --primary-color: #0F172A;
    /* Azul Marinho Profundo */
    --secondary-color: #111827;
    /* Grafite Elegante */

    /* CTA & Highlights */
    --accent-color: #10B981;
    /* Verde Esmeralda Premium */
    --accent-hover: #059669;
    --accent-focus: #34D399;

    /* Support Colors */
    --icon-color: #0EA5A4;
    /* Azul Petróleo Claro */
    --icon-bg: #CCFBF1;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --border-color: #E5E7EB;

    /* Backgrounds */
    --white: #FFFFFF;
    --light-bg: #F9FAFB;

    /* System */
    --font-family: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
}

p {
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo-img {
    height: 35px;
    width: auto;
}

.logo-symbol {
    height: 35px;
    width: auto;
    margin-right: -4px;
}

nav ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--text-primary);
}

nav a:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.cta-btn:focus {
    outline: 2px solid var(--accent-focus);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #E2E8F0;
    /* Slate-200 for better contrast on dark bg */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    margin-top: 50px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image img {
    width: 100%;
    display: block;
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

/* Pain & Agitation */
.pain-points {
    background: var(--white);
}

.pain-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pain-item {
    background: #FEF2F2;
    /* Red-50 */
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid #FECACA;
    /* Red-200 */
    transition: var(--transition);
}

.pain-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pain-item h3 {
    color: #991B1B;
    /* Red-800 */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pain-item p {
    color: #7F1D1D;
    /* Red-900 */
}

.agitation {
    background: var(--secondary-color);
    color: var(--white);
    padding: 100px 0;
}

.agitation .section-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.agitation>.container>p {
    color: #E2E8F0;
    font-size: 1.3rem;
    margin-bottom: 50px;
    text-align: center;
}

/* Agitation List Alignment */
.agitation-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.agitation-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.agitation-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.agitation-item .icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.agitation-item p {
    margin: 0;
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.6;
}

.agitation-item strong {
    color: var(--accent-color);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.agitation-result {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FEE2E2;
    padding: 30px 40px;
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Solution */
.solution {
    background: var(--light-bg);
}

.solution h2 {
    color: var(--primary-color);
}

.solution-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.solution-item {
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.solution-item i {
    color: var(--accent-color);
}

/* How it Works */
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    /* Increased slightly to fit 3 cards better */
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    flex: 1 1 300px;
    /* Grow, shrink, base width */
    max-width: 350px;
    /* Prevent cards from getting too wide alone */
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.step-number {
    background: var(--icon-bg);
    color: var(--icon-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Comparison */
.comparison {
    background: var(--white);
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.col-before,
.col-after {
    padding: 40px;
    border-radius: var(--radius);
}

.col-before {
    background: #F3F4F6;
    /* Gray-100 */
    border: 1px solid var(--border-color);
}

.col-after {
    background: var(--white);
    border: 1px solid var(--accent-color);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.col-after::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-color);
}

.col-before h3,
.col-after h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.col-before ul li,
.col-after ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.col-before ul li::before {
    content: "✖";
    color: #EF4444;
    /* Red-500 */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.col-after ul li::before {
    content: "✔";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Proof */
.proof {
    background: var(--light-bg);
}

.proof-icon-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.proof-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Plans */
.plans {
    background: var(--white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}


.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.plan-card h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.plan-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.plan-details {
    margin: 30px 0;
    text-align: left;
    flex-grow: 1;
}

.plan-details li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
}

.plan-details li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.plan-extra {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    margin: 15px 0 20px;
    padding: 10px;
    background: var(--light-bg);
    border-radius: 6px;
    border-left: 3px solid var(--accent-color);
}

/* Guarantee */
.guarantee {
    background: var(--light-bg);
}

.guarantee-box {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

/* FAQ */
.faq {
    background: var(--white);
}

.faq-item {
    background: var(--light-bg);
    margin-bottom: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}

.faq-answer {
    padding: 25px;
    padding-top: 0;
    display: none;
    color: var(--text-secondary);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    display: block;
    border-color: var(--border-color);
}

.faq-item.active .faq-question {
    color: var(--accent-color);
}

/* Final CTA */
.final-cta {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
}

.final-cta p {
    color: #E2E8F0;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: #9CA3AF;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #1F2937;
}

.footer-content .logo {
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
}

/* Floating Whatsapp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
}

/* Mobile Menu Toggle (Default Hidden on Desktop) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 10002;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* Responsive - Polish Professional Mobile */
@media (max-width: 768px) {

    /* Header & Navigation */
    header {
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 99999;
        background: var(--white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        /* Smoother shadow */
        padding: 15px 0;
    }

    .header-content {
        flex-direction: row;
        /* Align logo and burger side-by-side */
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    /* Show Hamburger */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Menu Logic */
    /* Menu Logic - Simplified */
    nav {
        /* Ensure nav container doesn't block content */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 10001;
    }

    nav ul {
        display: none;
        /* Hidden by default */
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: var(--white);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        border-top: 1px solid var(--border-color);
        animation: none;
    }


    /* Active State (Open Menu) */
    nav ul.active {
        display: flex;
        /* Show when active */
        animation: slideDown 0.3s ease forwards;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {


    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    nav li {
        width: 100%;
        border-bottom: 1px solid #F1F5F9;
    }

    nav li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        color: var(--secondary-color);
        font-weight: 600;
        transition: background 0.2s;
    }

    nav a:active {
        background: #F8FAFC;
    }

    /* Hide Desktop CTA in Header (Move to Menu or Hide?) 
       Let's Hide Header CTA and maybe add to menu later if needed 
       For now, usually Mobile Header shouldn't be cluttered */
    .header-content>.cta-btn {
        display: none;
        /* Hide primary CTA on mobile header to save space for logo/burger */
    }

    /* WhatsApp Float Fix */
    .whatsapp-float {
        position: fixed !important;
        bottom: 25px !important;
        right: 25px !important;
        width: 55px !important;
        height: 55px !important;
        font-size: 28px !important;
        z-index: 2147483647 !important;
        /* Max Z-Index */
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    /* Typography Adjustments */
    .hero-content h1 {
        font-size: 2rem;
        padding: 0 10px;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    /* Grids to Single Column */
    .pain-list,
    .steps,
    .bonus-grid,
    .plans-grid,
    .comparison-table {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 20px;
    }

    /* Global Padding Fixes */
    .container {
        padding: 0 20px;
    }

    section {
        padding: 50px 0;
    }

    .plan-card:hover {
        transform: none;
    }
}