/* ==========================================================================
   STYLE.CSS - Sistema de Diseño Premium (Nicho Financiero Venezuela)
   Alineación de Paleta: 60% (Fondo/Limpio), 30% (Corporativo/Confianza), 10% (CRO)
   ========================================================================== */

/* 1. CONFIGURACIÓN DE VARIABLES (:root) */
:root {
    /* 60% - Fondos y Tipografía Base (Limpio y Seguro) */
    --bg-main: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-light: #F1F5F9;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --border-color: #E2E8F0;

    /* 30% - Estructura e Identidad Corporativa (Confianza Clínica) */
    --primary: #1E3A8A;
    --primary-hover: #172554;
    --primary-gradient: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
    --secondary: #0D9488;
    --secondary-hover: #0F766E;
    --secondary-gradient: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
    
    /* 10% - Urgencia y Llamados a la Acción Directos (CRO) */
    --accent: #EA580C;
    --accent-hover: #C2410C;
    --accent-gradient: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
    --amber: #D97706;
    --amber-hover: #B45309;
    
    /* Estados y Colores del Sistema */
    --success: #10B981;
    --error: #EF4444;
    --info: #3B82F6;
    --white: #FFFFFF;
    
    /* Tipografías */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Estructura y Transiciones */
    --max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --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 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

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

img, svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.icon-inline {
    width: 1.15em;
    height: 1.15em;
    display: inline-block;
    vertical-align: -0.15em;
    fill: currentColor;
}

/* 3. CLASES DE BOTONES CRO */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.btn-accent {
    background: var(--accent-gradient);
    color: var(--white);
}

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

.btn-secondary {
    background: var(--secondary-gradient);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border-color);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* 4. CABECERA Y NAVEGACIÓN */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .top-bar-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.5s 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-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

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

.top-bar-link:hover {
    color: var(--white);
}

.top-bar-cta {
    background-color: var(--accent);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    animation: shrinkPulse 3s infinite alternate;
}

@keyframes shrinkPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
}

.top-bar-cta:hover {
    background-color: var(--accent-hover);
    color: var(--white);
}

/* Main Header */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

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

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

.logo-svg {
    height: 38px;
    width: auto;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.hamburger-bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Nav Menu Mobile First */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 90px 2rem 2rem;
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease;
    z-index: 105;
}

.nav-menu.active {
    right: 0;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
}

.nav-link-btn {
    background: var(--secondary-gradient);
    color: var(--white) !important;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
}

.nav-link-btn:hover {
    background: var(--secondary-hover);
}

/* Hamburger active transformation */
.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
    }
    
    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0;
    }
    
    .nav-link-btn {
        padding: 0.5rem 1.25rem;
    }
}

/* 5. SECCIÓN HERO CON FORMULARIO (MÁXIMO CRO) */
.hero-section {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .hero-section {
        padding: 5rem 0;
    }
}

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

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-text-content {
    max-width: 650px;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(13, 148, 136, 0.2);
    color: #2DD4BF;
    border: 1px solid rgba(13, 148, 136, 0.4);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    color: var(--white);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-title span {
    color: #2DD4BF;
    background: linear-gradient(120deg, #2DD4BF 0%, #00C6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.hero-trust-icon {
    color: var(--success);
    flex-shrink: 0;
}

/* Formulario Hero */
.hero-form-container {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.form-title {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--secondary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

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

.form-disclaimer a {
    text-decoration: underline;
}

/* 6. BLOQUE DE SERVICIOS (TARJETAS PRECIOSAS) */
.section-padding {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 0;
    }
}

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

.section-tag {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 1.85rem;
    font-weight: 800;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 148, 136, 0.3);
}

.service-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(13, 148, 136, 0.1);
    color: var(--secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--accent);
}

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

/* 7. PROCESO TÉCNICO (PASOS NUMERADOS) */
.process-section {
    background-color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    position: relative;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.process-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    background: linear-gradient(180deg, rgba(13, 148, 136, 0.2) 0%, rgba(13, 148, 136, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.process-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-desc {
    font-size: 0.9rem;
}

/* 8. COBERTURA GEOGRÁFICA (VENEZUELA) */
.coverage-section {
    background-color: var(--bg-light);
}

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

@media (min-width: 992px) {
    .coverage-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.coverage-list-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.coverage-bullet {
    width: 6px;
    height: 6px;
    background-color: var(--secondary);
    border-radius: 50%;
}

.coverage-info-box {
    background-color: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--secondary);
}

.coverage-info-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* 9. PÁGINAS LEGALES E INFO ADICIONAL */
.legal-container {
    padding: 3rem 0;
}

.legal-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .legal-box {
        padding: 3.5rem;
    }
}

.legal-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
}

.legal-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.legal-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.legal-list {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.legal-list-item {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* 10. BLOQUE DE CONTACTO DETALLADO */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .contact-section-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

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

.contact-card-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-detail-card {
    display: flex;
    gap: 1rem;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

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

.contact-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-card-val {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* 11. PIE DE PÁGINA */
.main-footer {
    background-color: #0B1329;
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--secondary);
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    }
}

.footer-logo {
    margin-bottom: 1.25rem;
}

.footer-brand-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
}

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

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-list li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.85rem;
}

.contact-label {
    color: var(--white);
    font-weight: 600;
}

.contact-value {
    color: rgba(255,255,255,0.65);
}

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

.footer-address {
    line-height: 1.4;
}

.footer-disclaimer-box {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    text-align: justify;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-developer a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: underline;
}

.footer-developer a:hover {
    color: #2DD4BF;
}

/* 12. BANNER DE COOKIES */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0F172A;
    color: var(--white);
    padding: 1.25rem 0;
    z-index: 1000;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.25);
    border-top: 3px solid var(--secondary);
}

.cookie-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cookie-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }
}

.cookie-content {
    flex-grow: 1;
    max-width: 800px;
}

.cookie-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.cookie-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin-bottom: 0;
}

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

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

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

.cookie-btn-decline {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
    color: var(--white);
    border-color: var(--white);
}

/* 13. PÁGINA DE GRACIAS Y ERROR 404 */
.thanks-container, .error-container {
    padding: 5rem 0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon-box, .error-icon-box {
    width: 80px;
    height: 80px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

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

.thanks-title, .error-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.thanks-subtitle, .error-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.thanks-action-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.thanks-action-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.thanks-action-desc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

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