/* 
 * style.css
 * Hoja de estilos principal para Financiera Intere Plaza.
 * Basado en CSS Vanilla puro, Mobile-First, altamente optimizado para Core Web Vitals.
 */

/* ==========================================================================
   VARIABLES Y SISTEMA DE DISEÑO
   ========================================================================== */
:root {
    /* Paleta de Colores (60-30-10) */
    --bg-primary: #F8FAFC;      /* 60% Fondo */
    --bg-white: #FFFFFF;
    --primary: #0B192C;         /* 30% Estructura Principal */
    --secondary: #1E3E62;       /* 30% Estructura Secundaria */
    --accent: #D97706;          /* 10% CTA / Contraste (WCAG AA Cumplido) */
    --accent-hover: #B45309;
    
    /* Colores del Sistema */
    --text-main: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --success: #10B981;
    --error: #EF4444;
    
    /* Tipografías */
    --font-title: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout y Efectos */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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-primary: 0 10px 20px -3px rgba(11, 25, 44, 0.15);
    
    /* Ancho Máximo */
    --max-width: 1200px;
}

/* ==========================================================================
   RESET CSS MODERNO
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   UTILIDADES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.25rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.text-accent {
    color: var(--accent);
}

.bg-light {
    background-color: var(--bg-white);
}

.hidden {
    display: none !important;
}

/* Iconos integrados en CSS */
.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

/* ==========================================================================
   TOP BAR (ESTADO DINÁMICO Y LLAMADA)
   ========================================================================== */
.top-bar {
    background-color: var(--primary);
    color: var(--bg-white);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-family: var(--font-title);
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--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-email {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
}

.top-email a:hover {
    color: var(--accent);
}

.phone-btn-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.phone-btn-top:hover {
    background-color: var(--accent);
    transform: translateY(-1px);
}

/* ==========================================================================
   HEADER Y 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: 100;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.main-header.shrink {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* LOGOTIPO */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-sub {
    color: var(--accent);
}

/* BOTÓN DE MENÚ MÓVIL */
.nav-toggle {
    display: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--primary);
    position: relative;
    transition: var(--transition);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Menú activo hamburger */
.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* LISTA DE NAVEGACIÓN */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-weight: 500;
    color: var(--primary);
    font-size: 0.95rem;
    padding: 6px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-btn-contact {
    background-color: var(--primary);
    color: var(--bg-white) !important;
    padding: 8px 18px !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-btn-contact:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.nav-btn-contact::after {
    display: none;
}

/* ==========================================================================
   SECCIÓN HERO Y FORMULARIO CRO
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, rgba(11, 25, 44, 0.95), rgba(30, 62, 98, 0.9)), url('../images/hero-bg.jpg') center/cover no-repeat;
    color: var(--bg-white);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    max-width: 640px;
}

.hero-tagline {
    background-color: rgba(217, 119, 6, 0.15);
    border: 1px solid rgba(217, 119, 6, 0.3);
    color: #FBBF24;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: var(--font-title);
}

.hero-title {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature-icon {
    color: var(--accent);
    font-size: 1.2rem;
}

/* FORMULARIO DE CAPTURA (CRO) */
.cro-form-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    padding: 30px;
    color: var(--text-main);
    border-top: 4px solid var(--accent);
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-title {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 18px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.form-input {
    width: 100%;
    background-color: #F8FAFC;
    border: 1px solid var(--border-color);
    padding: 12px 14px 12px 42px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    color: var(--text-main);
}

.form-input:focus {
    border-color: var(--secondary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(30, 62, 98, 0.15);
}

.form-input.input-error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.error-message {
    color: var(--error);
    font-size: 0.75rem;
    margin-top: 4px;
}

.form-terms-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 20px;
}

.form-terms-text a {
    color: var(--secondary);
    text-decoration: underline;
}

/* BOTÓN DE CONVERSIÓN */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--bg-white);
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-title);
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(217, 119, 6, 0.4);
}

/* ==========================================================================
   BLOQUE DE SERVICIOS
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    background-color: rgba(30, 62, 98, 0.05);
    color: var(--secondary);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--secondary);
    color: var(--bg-white);
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

/* ==========================================================================
   PROCESO TÉCNICO (4 PASOS)
   ========================================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    background-color: var(--bg-white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.step-num-badge {
    background-color: var(--primary);
    color: var(--bg-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-title);
    margin: 0 auto 20px;
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 0 2px var(--primary);
}

.process-step:hover .step-num-badge {
    background-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent);
}

.step-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Line connecting steps (for desktop only) */
.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 0;
}

.process-step {
    z-index: 1;
}

/* ==========================================================================
   COBERTURA GEOGRÁFICA
   ========================================================================== */
.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.coverage-map-placeholder {
    background: radial-gradient(circle, rgba(30, 62, 98, 0.1) 0%, rgba(11, 25, 44, 0.2) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.map-venezuela-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    width: 80%;
    height: auto;
    pointer-events: none;
}

.map-badge-caracas {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-title);
    display: inline-block;
    align-self: center;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.coverage-desc {
    max-width: 500px;
}

.coverage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.coverage-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
}

/* ==========================================================================
   FORMULARIO DE CONTACTO EXTENDIDO
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
}

.contact-info-card {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-primary);
}

.contact-info-title {
    color: var(--bg-white);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
}

.contact-detail-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    color: var(--bg-white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-detail-content p, .contact-detail-content a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.contact-detail-content a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-grid .form-group.span-2 {
    grid-column: span 2;
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 16px 0;
    z-index: 200;
    box-shadow: 0 -10px 25px -5px rgba(0, 0, 0, 0.3);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-content p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn.accept {
    background-color: var(--accent);
    color: var(--bg-white);
}

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

.cookie-btn.decline {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
}

.cookie-btn.decline:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   PÁGINAS AUXILIARES (GRACIAS / 404 / LEGALES)
   ========================================================================== */

/* PÁGINAS LEGALES */
.legal-container {
    max-width: 800px;
    margin: 40px auto 80px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.legal-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.legal-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.legal-section {
    margin-bottom: 24px;
}

.legal-section h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.legal-section p, .legal-section ul {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 14px;
}

.legal-section ul {
    padding-left: 20px;
    list-style-type: disc;
}

.legal-section li {
    margin-bottom: 8px;
}

/* PÁGINA GRACIAS (THANK YOU) */
.thankyou-wrapper {
    max-width: 600px;
    margin: 80px auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--success);
}

.thankyou-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
}

.thankyou-title {
    font-size: 2rem;
    margin-bottom: 12px;
}

.thankyou-text {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.urgency-banner {
    background-color: rgba(217, 119, 6, 0.08);
    border: 1px dashed var(--accent);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.urgency-banner-title {
    font-size: 1.1rem;
    color: var(--accent-hover);
    margin-bottom: 8px;
}

.thankyou-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-cro {
    background-color: var(--accent);
    color: var(--bg-white) !important;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary-cro {
    background-color: var(--primary);
    color: var(--bg-white) !important;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.btn-secondary-cro:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

/* PÁGINA 404 */
.error-404-wrapper {
    max-width: 550px;
    margin: 100px auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.error-404-num {
    font-size: 5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 0;
    font-size: 0.9rem;
    border-top: 4px solid var(--secondary);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--bg-white);
    margin-bottom: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-rif {
    font-family: var(--font-title);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: inline-block;
    color: var(--bg-white);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

.footer-title {
    color: var(--bg-white);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.contact-value {
    color: var(--bg-white);
}

a.contact-value:hover {
    color: var(--accent);
}

/* YMYL Disclaimer Area */
.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 24px;
    margin-bottom: 30px;
    background-color: rgba(0, 0, 0, 0.15);
}

.disclaimer-title {
    color: var(--bg-white);
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-disclaimer p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    text-align: justify;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #050d18;
    padding: 20px 0;
    font-size: 0.8rem;
}

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

.copyright {
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links a:hover {
    color: var(--accent);
}

.backlink {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4) !important;
}

.backlink:hover {
    color: var(--accent) !important;
}

/* ==========================================================================
   RESPONSIVO / MEDIA QUERIES (MOBILE-FIRST)
   ========================================================================== */

/* Breakpoint para Laptops e IPads */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid::before {
        display: none;
    }
}

/* Breakpoint para Tablets y Smartphones Grandes */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Top Bar */
    .top-bar-content {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    /* Menu Móvil Colapsable */
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }
    
    .main-nav.active {
        max-height: 400px;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        display: block;
    }
    
    .nav-btn-contact {
        width: 100%;
        text-align: center;
    }
    
    /* Hero */
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    /* Cobertura */
    .coverage-content {
        grid-template-columns: 1fr;
    }
    
    /* Contacto */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Breakpoint para Móviles Pequeños */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-grid .form-group.span-2 {
        grid-column: span 1;
    }
    
    .coverage-list {
        grid-template-columns: 1fr;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
    
    .thankyou-actions a {
        width: 100%;
        text-align: center;
    }
}
