:root {
    /* ===== Colores oficiales CN Ciudad Alcorcón ===== */
    /* Azul Royal: el color emblemático del club       */
    --primary-blue:   #1343AD;
    /* Azul Royal oscuro: cabeceras y fondos profundos  */
    --dark-blue:      #0A2E7A;
    /* Azul Royal claro: hover y estados acivos         */
    --light-blue:     #1E58D0;
    /* Blanco: el segundo color oficial del club        */
    --accent-white:   #FFFFFF;
    /* Fondo secciones alternas: blanco azulado suave   */
    --bg-light:       #EEF3FB;
    --bg-dark:        #081D52;
    --text-main:      #0F1E3D;
    --text-light:     #FFFFFF;
    --glass-bg:       rgba(255, 255, 255, 0.13);
    --glass-border:   rgba(255, 255, 255, 0.28);
    /* Mantenemos el celeste solo como acento secundario */
    --secondary-blue: #4A90D9;
    --mid-blue:       #1343AD;

    /* Fonts */
    --font-main: 'Outfit', sans-serif;
    
    /* Spacing & Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Layout Utility --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.table-responsive {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 30px auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 46, 122, 0.05);
    border: 1px solid rgba(19, 67, 173, 0.08);
}

/* Tablas de Horarios Universales */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.95rem;
}

/* Aplicar anchos proporcionales ÚNICAMENTE si la tabla tiene exactamente 3 columnas */
.schedule-table th:nth-child(1):nth-last-child(3),
.schedule-table td:nth-child(1):nth-last-child(3) {
    width: 40%;
}

.schedule-table th:nth-child(2):nth-last-child(2),
.schedule-table td:nth-child(2):nth-last-child(2) {
    width: 30%;
}

.schedule-table th:nth-child(3):nth-last-child(1),
.schedule-table td:nth-child(3):nth-last-child(1) {
    width: 30%;
}

.schedule-table th, .schedule-table td {
    border: 1px solid #eee;
    padding: 12px 15px;
    text-align: left;
}

.schedule-table th {
    background-color: var(--primary-blue);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.schedule-table tr:nth-child(even) {
    background-color: #f9faff;
}

.schedule-table tr:hover {
    background-color: #f0f4ff;
}

/* Cabeceras de Grupos */
.group-header {
    background: var(--dark-blue);
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 20px;
}

.note-box {
    background: #f4f4f4;
    padding: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 40px;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 10px 10px;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(19, 67, 173, 0.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1000;
    padding: 0 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.logo {
    color: var(--text-light);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--secondary-blue);
}

/* --- Dropdown Menu --- */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown a i {
    transition: transform 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    z-index: 1000;
    top: 100%; /* Justo debajo del nav */
    padding: 10px 0;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Puente invisible para que no se cierre al mover el ratón */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.dropdown-content a {
    color: var(--dark-blue);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: none;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #f8faff;
    color: var(--primary-blue);
    opacity: 1;
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover > a {
    color: var(--secondary-blue);
    opacity: 1;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* --- Banner de cabecera (entre nav y hero) --- */
.site-banner {
    padding-top: 80px; /* compensa el nav fijo */
    width: 100%;
    line-height: 0;
    background: var(--dark-blue);
}

.site-banner img {
    width: 100%;
    height: auto;     /* imagen completa, sin recorte */
    display: block;
}

/* --- Hero Section --- */
.hero {
    height: 50vh;
    background: #1a365d; /* Azul oscuro profundo de la imagen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    padding: 0 20px;
}

/* --- Slider de frases hero (posición fija absoluta) --- */
#hero-slider {
    position: relative;
    width: 100%;
    /* Altura fija = nunca causa reflow en el hero */
    height: 11rem;
    margin-bottom: 20px;
    /* Las palabras se posicionan dentro de este contenedor */
}

/* Cada palabra: posición absoluta fija, solo cambia el estilo */
#hero-slider span {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 900;
    white-space: nowrap;
    line-height: 1;
    /* Transición solo de propiedades visuales, NO de posición */
    transition: opacity 0.55s ease, font-size 0.55s ease,
                letter-spacing 0.55s ease, color 0.55s ease;
    /* Estado inactivo por defecto */
    font-size: 1.4rem;
    opacity: 0.3;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

/* Posiciones fijas de cada palabra (el ORDEN siempre es visible) */
#hero-slider span:nth-child(1) { top: 0;    }   /* DIVERSIÓN  — arriba   */
#hero-slider span:nth-child(2) { top: 50%;
    transform: translateY(-50%); }               /* DEPORTE    — centro   */
#hero-slider span:nth-child(3) { bottom: 0; }   /* COMPETICIÓN — abajo   */

/* Estado activo: grande, brillante, con gradiente */
#hero-slider span.active {
    font-size: clamp(3.5rem, 9vw, 6rem);
    opacity: 1;
    letter-spacing: -3px;
    background: linear-gradient(90deg, #FFFFFF 0%, #C0DCFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ajuste móvil */
@media (max-width: 768px) {
    #hero-slider { height: 8rem; }
    #hero-slider span { font-size: 1rem; }
    #hero-slider span.active { font-size: clamp(2.5rem, 11vw, 4rem); }
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-primary {
    padding: 15px 40px;
    background: #FFFFFF;
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    transition: var(--transition);
    border: 2px solid #FFFFFF;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--primary-blue);
    color: #FFFFFF;
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(19, 67, 173, 0.25);
}

/* --- Sections General --- */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    font-weight: 800;
}

.section-title .underline {
    width: 60px;
    height: 4px;
    background: var(--secondary-blue);
    margin: 10px auto;
}

/* --- Grid Activities --- */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* --- Grid Activities --- */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* --- Actividades Adultos (Opción 1: Bento Style) --- */
.adult-activities-section {
    margin-top: 100px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    border: 1px solid rgba(19, 67, 173, 0.08);
}

.adult-activities-title {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}

.adult-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.adult-card {
    background: white;
    padding: 25px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.adult-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(19, 67, 173, 0.12);
}

.adult-card .icon-circle {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.adult-card:hover .icon-circle {
    background: var(--primary-blue);
    transform: rotate(-5deg) scale(1.1);
}

.adult-card .info { flex: 1; }
.adult-card h3 { font-size: 1.2rem; color: var(--primary-blue); margin: 0; }
.adult-card p { font-size: 0.85rem; color: #777; margin: 4px 0 0; line-height: 1.4; }

.adult-card .btn-icon {
    color: var(--primary-blue);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.adult-card:hover .btn-icon {
    opacity: 1;
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .adult-grid { grid-template-columns: 1fr; }
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,50,0.1);
}

.tarifa-card {
    transition: var(--transition);
}

.tarifa-card:hover {
    box-shadow: 0 15px 40px rgba(0, 50, 150, 0.15) !important;
}

.tarifa-card ul li:last-child {
    border-bottom: none !important;
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 30px;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

/* --- About Section --- */
.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* --- Footer --- */
footer {
    background: var(--primary-blue);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.footer-col p, .footer-col li {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 10px;
    list-style: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile Menu (Basic Static for now) --- */
/* --- Móviles --- */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark-blue);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: 0.5s ease;
        z-index: 999;
        overflow-y: auto; /* Permite scroll vertical en el menú */
        padding-top: 90px;  /* Espacio para la cabecera */
        padding-bottom: 50px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.4rem;
        display: inline-block;
        width: 100%;
        padding: 10px 0;
    }

    /* --- Desplegables Móvil (Estilo Acordeón Inline) --- */
    .dropdown {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .dropdown-content {
        position: static;
        display: none; /* Controlado por la clase .open */
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        width: 100%;
        text-align: center;
        border: none;
        border-radius: 0;
        padding: 10px 0;
        margin-top: 5px;
    }

    .dropdown-content::before {
        display: none; /* Eliminar el puente invisible en móvil */
    }

    .dropdown-content a {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 12px 20px !important;
        font-size: 1.05rem !important;
        text-transform: none;
        opacity: 0.8;
    }

    .dropdown-content a:hover {
        background-color: transparent !important;
        color: var(--secondary-blue) !important;
        padding-left: 20px !important;
        opacity: 1;
    }

    /* Mostrar al activar la clase .open */
    .dropdown.open .dropdown-content {
        display: block;
    }

    /* Rotación de chevron en móvil */
    .dropdown.open > a i {
        transform: rotate(180deg);
    }

    .mobile-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #fff;
        margin: 5px;
        transition: 0.3s;
    }

    /* Animación hamburguesa */
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .about-flex {
        flex-direction: column;
    }
    .slider-words span {
        font-size: clamp(0.9rem, 3vw, 1.5rem);
    }
    .slider-words span.active {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
}

/* --- Animaciones de entrada al scroll --- */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Footer Grid & Layout --- */
footer {
    background: var(--dark-blue);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-col i {
    width: 20px;
    margin-right: 8px;
    color: var(--secondary-blue);
}

.footer-col a:hover {
    color: var(--secondary-blue);
    text-decoration: underline !important;
}

/* --- Sello 15 Aniversario: Integración en Footer --- */
.anniversary-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.anniversary-footer img {
    max-width: 140px; 
    height: auto;
    border-radius: 15px;
    background: white;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
    margin-bottom: 20px;
}

.anniversary-footer img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col i { margin-right: 0; display: block; margin: 0 auto 5px; }
}


/* --- Modal Lightbox Global --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 30, 80, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox.active {
    display: flex;
    opacity: 1;
}
.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: contain;
}
.lightbox.active .lightbox-content {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
}
.lightbox-close:hover {
    color: #f1c40f;
    transform: scale(1.2);
}

/* Cuadro de notas informativas en tablas */
.note-box {
    background: #fff9db;
    border-left: 5px solid #f1c40f;
    padding: 15px 20px;
    margin: 5px 0 30px;
    font-size: 0.95rem;
    color: #856404;
    border-radius: 0 8px 8px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}
.note-box::before {
    content: "\f05a"; /* Icono de info de FontAwesome */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: #f39c12;
}

.destacado-section {
    padding: 5.5rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid rgba(19, 67, 173, 0.06);
    position: relative;
    overflow: hidden;
}

.destacado-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.destacado-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.destacado-section-header h2 {
    font-size: 2.4rem;
    color: var(--primary-blue);
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

.destacado-section-header .underline {
    width: 70px;
    height: 4px;
    background: #e11d48;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

/* Grid de destacados */
.destacado-grid {
    display: grid;
    gap: 3rem;
    justify-content: center;
    align-items: stretch;
}

/* Si hay 1 destacado activo */
.destacado-grid.single-item {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

/* Si hay 2 o más destacados activos */
.destacado-grid.multiple-items {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Tarjeta de destacado individual */
.destacado-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(10, 46, 122, 0.03);
    border: 1px solid rgba(19, 67, 173, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    position: relative;
}

.destacado-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(10, 46, 122, 0.08);
}

.destacado-badge {
    display: inline-block;
    align-self: center;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary-blue);
    font-weight: 800;
    margin-bottom: 12px;
    background: rgba(244, 130, 31, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

.destacado-title {
    font-size: 1.8rem;
    color: var(--primary-blue);
    font-weight: 900;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.destacado-img-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(10, 46, 122, 0.08);
    margin: 25px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.destacado-img-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}

.destacado-img-wrap:hover {
    transform: scale(1.015);
    box-shadow: 0 12px 30px rgba(10, 46, 122, 0.14);
}

.destacado-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.destacado-img-wrap:hover img {
    transform: scale(1.03);
}

.destacado-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}

.btn-destacado {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 160px;
}

.btn-destacado-primary {
    background: var(--primary-blue);
    color: var(--accent-white);
    border: 2px solid var(--primary-blue);
}

.btn-destacado-primary:hover {
    background: var(--light-blue);
    border-color: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(19, 67, 173, 0.22);
}

.btn-destacado-accent {
    background: #e11d48;
    color: var(--accent-white);
    border: 2px solid #e11d48;
}

.btn-destacado-accent:hover {
    background: #be123c;
    border-color: #be123c;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(225, 29, 72, 0.22);
}



