/* Base Variables & Reset */
:root {
    --bg-dark: #07090F;
    --bg-card: #11141E;
    --text-main: #FFFFFF;
    --text-muted: #A0AABF;
    --gold-primary: #D4AF37;
    --gold-secondary: #E5C158;
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --font-family: 'Poppins', sans-serif;
}

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

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

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

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3 { font-weight: 700; line-height: 1.2; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; }
p { color: var(--text-muted); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-muted);
}
.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
}
.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}
.logo span { color: var(--gold-primary); }

.nav a {
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav a:hover { color: var(--gold-primary); }

.btn-whatsapp {
    background: transparent;
    color: var(--gold-secondary);
    border: 1px solid var(--gold-secondary);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-whatsapp:hover {
    background: rgba(0, 255, 102, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-login:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-main);
}

.mobile-only {
    display: none;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 40px 100px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-secondary);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.05);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: #25D366;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 8px #25D366;
}

.badge-pulse::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    animation: badge-ripple 2s infinite ease-out;
}

@keyframes badge-ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    font-weight: 800;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.hero-accuracy-tag {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.accuracy-value {
    background: rgba(0, 240, 255, 0.1);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-visual img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

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

/* Discount Banner */
.discount-banner {
    background: linear-gradient(90deg, #0A0A0A, rgba(0, 255, 102, 0.1), #0A0A0A);
    border-top: 1px solid var(--gold-secondary);
    border-bottom: 1px solid var(--gold-secondary);
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.15);
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.btn-banner {
    background: var(--gold-gradient);
    color: #000;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.8);
}

/* Features */
.features { padding: 100px 0; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border-color 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 { margin-bottom: 10px; font-size: 1.2rem; }

/* How It Works */
.how-it-works { padding: 100px 0; background: #0f0f0f; }
.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step p { font-size: 0.9rem; }

/* Pricing */
.pricing { padding: 100px 0; }
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.plan-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
}

.plan-card.classic {
    border-color: var(--gold-primary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
    transform: scale(1.05);
    z-index: 10;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-card h3 { font-size: 1.5rem; margin-bottom: 20px; }

.price-tier {
    margin-bottom: 20px;
    font-weight: 700;
}
.tier-main {
    font-size: 1.4rem;
    color: var(--text-main);
    opacity: 0.7;
    margin-bottom: 5px;
}
.tier-main .note {
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
}
.tier-discount {
    font-size: 2rem;
    color: var(--gold-primary);
}
.tier-discount .note {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.features-list { margin-bottom: 30px; text-align: left; }
.features-list li { margin-bottom: 15px; display: flex; align-items: center; }
.features-list li::before { content: '✓'; color: var(--gold-primary); margin-right: 10px; font-weight: bold; }
.features-list li.disabled { color: #555; }
.features-list li.disabled::before { content: '✕'; color: #555; }

.plan-card .btn { width: 100%; }

/* Payment Options */
.payment { padding: 80px 0; background: #0f0f0f; text-align: center; }
.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.payment-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}
.payment-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.payment-card.disabled-card {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    background: rgba(17, 20, 30, 0.4);
    border-color: rgba(255, 255, 255, 0.02);
}
.payment-card.disabled-card .disabled-status {
    color: var(--gold-secondary);
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

.payment-card .icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.payment-card h3 { font-size: 1rem; }
.payment-notice { font-style: italic; color: var(--gold-secondary); }

/* WhatsApp Support Section */
.whatsapp-support {
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.1), rgba(0, 255, 102, 0.05));
    border-top: 1px solid rgba(0, 255, 102, 0.3);
    border-bottom: 1px solid rgba(0, 255, 102, 0.3);
    padding: 80px 0;
    text-align: center;
}

.whatsapp-support h2 { margin-bottom: 10px; color: var(--gold-secondary); }
.whatsapp-support p { margin-bottom: 30px; font-size: 1.2rem; }

.btn-whatsapp-large {
    background: #25D366;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-whatsapp-large:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

/* Testimonials */
.testimonials { padding: 100px 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-style: italic;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
}

.testimonial-card p { margin-bottom: 20px; color: #fff; font-size: 1.1rem; line-height: 1.6; }

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 15px;
    font-style: normal;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.author-name {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.05rem;
}

.author-role {
    font-size: 0.78rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.testimonial-card .stars { color: #FFD700; font-size: 0.95rem; }

/* FAQ */
.faq { padding: 100px 0; background: #0f0f0f; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.faq-question:hover { background: rgba(255, 255, 255, 0.02); }
.faq-question .toggle { font-size: 1.5rem; color: var(--gold-primary); transition: transform 0.3s; }
.faq-item.active .toggle { transform: rotate(45deg); }

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-muted);
}
.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

/* Footer */
.footer {
    background: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p { margin-top: 15px; }

.footer h3 { margin-bottom: 20px; font-size: 1.2rem; }
.footer-links a, .footer-contact a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    transition: color 0.3s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-primary); }

.social-icons { display: flex; gap: 15px; margin-top: 15px; }
.social-icons a {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
}

/* Sticky WhatsApp */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
}
.sticky-whatsapp:hover { transform: scale(1.1); }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--gold-primary);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--gold-primary);
}

/* Partner Broker Section */
.partner-broker {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.partner-container h2 {
    margin-bottom: 20px;
}

.partner-description {
    margin-bottom: 40px;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}

.partner-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-card {
    max-width: 420px;
    width: 100%;
    padding: 40px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.15);
}

.partner-logo {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    padding: 10px;
}

.partner-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 35px;
    text-align: left;
}

.partner-feature-item {
    font-size: 1rem;
    color: #E2E8F0;
    display: flex;
    align-items: center;
}

.partner-check {
    margin-right: 12px;
    font-weight: bold;
    font-size: 1.1rem;
}

.partner-btn {
    width: 100%;
    display: block;
    box-sizing: border-box;
}

/* Model Limitations & Risk Disclaimer Section */
.risk-disclaimer {
    padding: 80px 0;
    background: #07090F;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.disclaimer-box {
    background: rgba(17, 20, 30, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.disclaimer-box.active {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
}

.disclaimer-header {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.01);
    transition: background 0.3s;
}

.disclaimer-header:hover {
    background: rgba(212, 175, 55, 0.03);
}

.disclaimer-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    flex: 1;
    margin-left: 15px;
    text-align: left;
}

.warning-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    animation: pulseWarning 2s infinite;
}

.disclaimer-toggle {
    font-size: 1.6rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.disclaimer-box.active .disclaimer-toggle {
    transform: rotate(45deg);
}

.disclaimer-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid transparent;
}

.disclaimer-box.active .disclaimer-content {
    max-height: 1000px;
    padding: 24px 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-content > p {
    margin-bottom: 25px;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.disclaimer-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 20px;
    border-left: 3px solid var(--gold-primary);
}

.disclaimer-item h4 {
    color: var(--text-main);
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.disclaimer-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

@keyframes pulseWarning {
    0% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
    100% { opacity: 0.8; transform: scale(1); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .hero-content { margin-bottom: 50px; }
    .hero-buttons { justify-content: center; }
    .plan-card.classic { transform: scale(1); }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(17, 20, 30, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav a {
        margin: 20px 0;
        font-size: 1.3rem;
        font-weight: 600;
    }
    
    .header-ctas {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .nav .mobile-nav-login {
        margin-top: 25px;
        padding: 10px 24px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 6px;
        font-size: 1.1rem;
        width: 85%;
        text-align: center;
    }
    .nav .mobile-nav-login:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .nav .mobile-nav-whatsapp {
        margin-top: 12px;
        padding: 10px 24px;
        border: 1px solid var(--gold-secondary);
        color: var(--gold-secondary);
        border-radius: 6px;
        font-size: 1.1rem;
        width: 85%;
        text-align: center;
    }
    .nav .mobile-nav-whatsapp:hover {
        background: rgba(0, 255, 102, 0.1);
    }
}

@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    .hero h1 { font-size: 2.5rem; }
    .header { padding: 15px 20px; }
    
    .disclaimer-header {
        padding: 20px;
    }
    .disclaimer-header h3 {
        font-size: 1.1rem;
        margin-left: 10px;
    }
    .disclaimer-content {
        padding: 0 20px;
    }
    .disclaimer-box.active .disclaimer-content {
        padding: 20px 20px 30px;
    }
}

