/* ==========================================================================
   STYLE.CSS - Sistema de Diseño de Alta Conversión para Financiera Holly Plaza
   ========================================================================== */

/* 1. CONFIGURACIÓN DE VARIABLES (:root) */
:root {
    /* Paleta 60-30-10 */
    --bg-primary: #F8FAFC;      /* 60% - Fondo limpio */
    --bg-secondary: #FFFFFF;    /* Contenedores y tarjetas */
    --bg-dark: #0F172A;         /* Slate 900 - Contraste corporativo */
    
    --brand-primary: #0F172A;   /* 30% - Estructura/Confianza (Slate 900) */
    --brand-secondary: #1E3A8A; /* Blue 800 */
    --brand-accent: #0284C7;    /* Sky 600 - Acento de confianza */
    --brand-gradient: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #0284C7 100%);
    --brand-gradient-hover: linear-gradient(135deg, #1E293B 0%, #1D4ED8 50%, #0369A1 100%);
    
    --cta-color: #D97706;       /* 10% - Urgencia/Acción (Amber 600) */
    --cta-hover: #B45309;       /* Amber 700 */
    --cta-light: #FEF3C7;       /* Amber 100 */
    --cta-text: #FFFFFF;
    
    /* Estado y Validaciones */
    --color-success: #10B981;   /* Emerald 500 */
    --color-error: #EF4444;     /* Red 500 */
    
    /* Escala de Grises */
    --text-primary: #0F172A;    /* Slate 900 */
    --text-secondary: #475569;  /* Slate 600 */
    --text-light: #94A3B8;      /* Slate 400 */
    --border-color: #E2E8F0;    /* Slate 200 */
    
    /* Tipografía */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Sombras y Bordes */
    --shadow-sm: 0 1px 2px 0 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);
    --shadow-premium: 0 20px 25px -5px rgba(15, 23, 42, 0.15), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* 2. RESET Y ESTILOS BASE */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.25;
    color: var(--brand-primary);
}

a {
    color: var(--brand-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--brand-secondary);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* 3. CLASES DE UTILIDAD */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* 4. TOP-BAR */
.top-bar {
    background-color: var(--bg-dark);
    color: #FFFFFF;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.support-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.top-bar-contact {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-link {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.top-link:hover {
    color: #FFFFFF;
}

.icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.phone-cta-top {
    color: var(--cta-light);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background-color: rgba(217, 119, 6, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
}

.phone-cta-top:hover {
    background-color: rgba(217, 119, 6, 0.3);
    color: #FFFFFF;
}

/* 5. CABECERA NAVEGACIÓN */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding var(--transition-normal), box-shadow var(--transition-normal);
    backdrop-filter: blur(10px);
}

.main-header.header-shrunk {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height var(--transition-normal);
}

.main-header.header-shrunk .header-content {
    height: 60px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    background: var(--brand-gradient);
    color: #FFFFFF;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.4rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--brand-primary);
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--brand-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--brand-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--brand-secondary);
    background-color: rgba(30, 58, 138, 0.05);
}

.nav-menu a.nav-cta {
    background-color: var(--cta-color);
    color: var(--cta-text);
    font-weight: 700;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.nav-menu a.nav-cta:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* 6. HERO SECTION CON CAPTURA */
.hero-section {
    background: var(--brand-gradient);
    color: #FFFFFF;
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(2, 132, 199, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-info {
    z-index: 2;
}

.hero-tag {
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: #FBBF24; /* Color oro/brillo */
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-num {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    color: #FBBF24;
}

.trust-lbl {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 600;
}

/* FORMULARIO DE CAPTURA RÁPIDA CRO */
.capture-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 2.2rem;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 10;
}

.capture-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--brand-primary);
}

.capture-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-secondary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15);
}

.form-input.is-invalid {
    border-color: var(--color-error);
    background-color: #FEF2F2;
}

.error-feedback {
    color: var(--color-error);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--cta-color);
    color: var(--cta-text);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.form-disclaimer {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.3;
}

/* 7. SECCIONES COMUNES */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-badge {
    color: var(--brand-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: 2.2rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* 8. GRID DE SERVICIOS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(30, 58, 138, 0.15);
}

.service-card-top h3 {
    font-size: 1.3rem;
    margin: 1.25rem 0 0.75rem 0;
}

.service-card-top p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(2, 132, 199, 0.08);
    color: var(--brand-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--color-success);
    font-weight: bold;
}

.service-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--brand-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: auto;
}

.service-link:hover {
    color: var(--brand-accent);
}

/* 9. PROCESO TÉCNICO (PASOS) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
}

.step-num {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(30, 58, 138, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* 10. COBERTURA GEOGRÁFICA */
.coverage-box {
    background: var(--brand-gradient);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    color: #FFFFFF;
    box-shadow: var(--shadow-premium);
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.coverage-info h2 {
    color: #FFFFFF;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.coverage-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.coverage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.coverage-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

/* 11. BLOQUE DE CONTACTO DUAL */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-info-block p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(30, 58, 138, 0.05);
    color: var(--brand-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-detail-text h4 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.contact-detail-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* 12. PÁGINAS LEGALES / LEGALES CORE */
.legal-container {
    max-width: 800px;
    margin: 3rem auto 6rem auto;
    padding: 0 1.5rem;
}

.legal-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: var(--brand-primary);
}

.legal-content p, .legal-content ul {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.legal-content ul {
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* 13. PÁGINA DE GRACIAS Y 404 */
.status-page {
    text-align: center;
    padding: 6rem 0;
    max-width: 600px;
    margin: 0 auto;
}

.status-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
}

.status-icon-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.status-icon-error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
}

.status-icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.status-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.status-page p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thanks-urgency {
    background-color: var(--cta-light);
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--cta-hover);
}

.actions-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* 14. COOKIE CONSENT */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--brand-primary);
    color: #FFFFFF;
    padding: 1.25rem 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-text a {
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept {
    background-color: var(--cta-color);
    color: #FFFFFF;
    font-size: 0.8rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    border: none;
}

.btn-cookie-accept:hover {
    background-color: var(--cta-hover);
}

.btn-cookie-deny {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-deny:hover {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

/* 15. PIE DE PÁGINA (FOOTER) */
.main-footer {
    background-color: var(--bg-dark);
    color: #FFFFFF;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    background: var(--brand-gradient);
    color: #FFFFFF;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.6rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.brand-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.footer-contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact-info a {
    color: #FFFFFF;
    font-weight: 600;
}

.footer-col h3 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--cta-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer-col a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.disclaimer-box {
    background-color: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--cta-color);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.disclaimer-title {
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.credit-link a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
}

.credit-link a:hover {
    color: #FFFFFF;
}

/* ==========================================================================
   16. MEDIA QUERIES (MOBILE-FIRST)
   ========================================================================== */

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-info {
        text-align: center;
    }
    
    .hero-desc {
        margin: 0 auto 2rem auto;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--bg-secondary);
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border-color);
        padding: 1.5rem 0;
        display: none;
    }
    
    .main-header.header-shrunk .nav-menu {
        top: 60px;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu a {
        display: block;
        text-align: center;
        width: 80%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .coverage-box {
        padding: 2rem 1.5rem;
    }
    
    .actions-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }
}
