/* --- CONFIGURACIÓN BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Nunito Sans', sans-serif; overflow-x: hidden; color: #333; background-color: #fff; }
html { scroll-behavior: smooth; }

/* --- TIPOGRAFÍA RESPONSIVE --- */
.hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 30px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 15px; }
.section-desc { font-size: 1rem; color: #666; margin-bottom: 25px; line-height: 1.5; font-weight: 400; }
.benefits-title { font-size: clamp(2.5rem, 6vw, 3.8rem); font-weight: 800; line-height: 1; margin-bottom: 10px; color: #333; }
.assistance-mix { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.4; margin-bottom: 50px; }

/* --- NAVBAR --- */
header { position: relative; width: 100%; height: 100vh; min-height: 600px; }
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 5%;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
.nav-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 5%;
}
.navbar.scrolled .nav-links a { color: #23272b; }
.navbar.scrolled .nav-links a:hover { color: #3968ff; }
.navbar.scrolled .nav-links .btn-login { color: #fff !important; }
.navbar.scrolled .menu-toggle { color: #333; }
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    flex-shrink: 0;
    margin-right: 28px;
}
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}
.navbar.scrolled .logo-img { height: 46px; }
.nav-links {
    list-style: none;
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 0;
    transition: all 0.4s ease;
}
.nav-links li { display: flex; align-items: center; }
.nav-links a {
    text-decoration: none;
    color: #23272b;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 10px;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.nav-links a:hover { color: #3968ff; }
.nav-links .btn-login {
    background-color: #3366ff;
    color: #fff;
    padding: 9px 24px;
    border-radius: 22px;
    transition: background-color 0.3s ease;
    margin-left: 8px;
}
.nav-links .btn-login:hover { background-color: #264dc0; }
.menu-toggle { display: none; color: #fff; font-size: 1.8rem; cursor: pointer; z-index: 1001; transition: color 0.3s ease; }

/* --- HERO CARRUSEL --- */
.carousel-container { width: 100%; height: 100%; position: relative; overflow: hidden; }
.carousel-track { display: flex; width: 200%; height: 100%; transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1); }
.slide { width: 50%; height: 100%; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; padding-left: 10%; opacity: 0; transition: opacity 0.8s ease; }
.slide.active { opacity: 1; }
.content { position: relative; z-index: 2; max-width: 600px; padding-right: 20px; }
.btn-primary { display: inline-block; padding: 15px 40px; background-color: #fff; color: #3366ff; text-decoration: none; font-size: clamp(0.9rem, 2vw, 1.1rem); font-weight: 800; border-radius: 30px; transition: all 0.3s ease; }
.btn-primary:hover { background-color: #3366ff; color: #fff; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: none; color: rgba(255, 255, 255, 0.6); font-size: 2.5rem; cursor: pointer; z-index: 10; transition: color 0.3s ease; padding: 10px; }
.carousel-btn:hover { color: #fff; }
.prev-btn { left: 2%; }
.next-btn { right: 2%; }

/* --- BARRA DE COTIZACIÓN --- */
.quote-bar { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 1200px; background-color: #fff; border-radius: 50px; display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; z-index: 10; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
.quote-item { display: flex; align-items: center; gap: 15px; color: #333; flex: 1; justify-content: center; padding: 10px; }
.quote-item:not(:last-child) { border-right: 1px solid #eee; }
.quote-icon { font-size: 1.5rem; color: #3366ff; }
.quote-text { display: flex; flex-direction: column; }
.quote-label { font-weight: 800; font-size: 0.95rem; }
.quote-sublabel { font-size: 0.8rem; color: #888; font-weight: 400; }
.btn-quote { background-color: #3366ff; color: #fff; text-decoration: none; padding: 12px 25px; border-radius: 25px; font-weight: 800; display: flex; align-items: center; gap: 10px; transition: background-color 0.3s ease; white-space: nowrap; }
.btn-quote:hover { background-color: #264dc0; }

/* --- SECCIÓN NOSOTROS --- */
.section-why { position: relative; padding: 100px 5%; background: radial-gradient(circle at top, #ffffff 0%, #f4f7fb 100%); text-align: center; }
.container-why { max-width: 1000px; margin: 0 auto; }
.text-black { color: #333; }
.text-blue { color: #3366ff; }
.pill { display: inline-flex; align-items: center; justify-content: center; padding: 8px 15px; border-radius: 30px; vertical-align: middle; margin: 5px; font-size: clamp(0.9rem, 2vw, 1.2rem); }
.pill-plane { background-color: rgba(51, 102, 255, 0.1); border: 2px solid #3366ff; color: #3366ff; }
.pill-passport { background-color: rgba(139, 69, 19, 0.1); border: 2px solid #8b4513; color: #8b4513; }
.why-subhead { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 20px; color: #333; }
.why-text { font-size: 1.1rem; line-height: 1.6; color: #666; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; font-weight: 400; }
.family-image-container img { max-width: 100%; height: auto; border-radius: 10px; }

/* --- PLANES Y MEMBRESÍAS (COMÚN) --- */
.section-plans, .section-memberships { position: relative; padding: 80px 5%; background-color: #ffffff; color: #333; }
.section-memberships { background-color: #f9fbff; text-align: center; }
.container-plans, .container-memberships { max-width: 1400px; margin: 0 auto; }
.plans-row { display: flex; align-items: flex-start; gap: 40px; margin-bottom: 80px; }
.plans-intro { flex: 0 0 280px; text-align: left; }
.btn-quote-inline { display: inline-block; padding: 10px 30px; background-color: #3366ff; color: #fff; text-decoration: none; border-radius: 25px; font-weight: 800; font-size: 0.95rem; transition: background-color 0.3s ease; }
.btn-quote-inline:hover { background-color: #264dc0; }
.plans-grid { flex: 1; display: grid; gap: 20px; }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); max-width: 1000px; }

.plan-card, .membership-card { position: relative; height: 480px; background-size: cover; background-position: center; border-radius: 25px; overflow: hidden; display: flex; align-items: flex-end; padding: 30px 20px; color: #fff; transition: transform 0.4s ease, box-shadow 0.4s ease; text-align: left; }
.plan-card:hover, .membership-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.plan-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%); z-index: 1; transition: background 0.4s ease; }
.plan-card-content { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; }
.plan-title { font-size: 1.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 10px; transition: margin-bottom 0.4s ease; }

.plan-features { list-style: none; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.5s ease, opacity 0.5s ease, margin-bottom 0.5s ease; }
.plan-features li { font-size: 0.85rem; line-height: 1.3; color: rgba(255,255,255,0.95); margin-bottom: 6px; position: relative; padding-left: 12px; font-weight: 400; }
.plan-features li::before { content: '•'; position: absolute; left: 0; color: #fff; font-size: 0.8rem; }
.reveal-info-hover:hover .plan-features { max-height: 250px; opacity: 1; margin-bottom: 25px; margin-top: 5px; }
.reveal-info-hover:hover .plan-card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 100%), repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0,0,0,0.3) 2px, rgba(0,0,0,0.3) 4px); }

.btn-coverage { display: inline-flex; align-items: center; justify-content: center; padding: 8px 20px; border-radius: 20px; text-decoration: none; font-weight: 700; font-size: 0.85rem; transition: all 0.3s ease; align-self: flex-start; border: 1px solid rgba(255,255,255,0.7); color: rgba(255,255,255,0.9); background-color: transparent; }
.btn-coverage:hover { background-color: rgba(255,255,255,0.15); border-color: #fff; color: #fff; cursor: pointer; }
.btn-blue { background-color: #3366ff; color: #fff; border: 1px solid #3366ff; }
.btn-blue:hover { background-color: #264dc0; border-color: #264dc0; }

/* --- CARRUSEL MEMBRESÍAS --- */
.memberships-carousel-wrapper { position: relative; padding: 0 40px; margin: 0 auto 40px; max-width: 1350px; display: flex; align-items: center; }
.memberships-track-container { flex: 1; overflow: hidden; }
.memberships-track { display: flex; gap: 20px; transition: transform 0.5s ease-in-out; }
.membership-card { flex: 0 0 calc(25% - 15px); }
.memberships-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.5rem; color: #3366ff; background: transparent; border: none; cursor: pointer; padding: 10px; z-index: 10; transition: color 0.3s ease; }
.memberships-nav-btn:hover { color: #264dc0; }
.memberships-prev { left: -10px; }
.memberships-next { right: -10px; }
.pill-socio { background-color: #3366ff; color: #fff; padding: 5px 15px; border-radius: 15px; font-weight: 700; font-size: 0.8rem; margin-bottom: 15px; align-self: flex-start; }
.plan-price { font-size: 1.5rem; font-weight: 700; margin-top: auto; }
.cta-full-pill { display: flex; justify-content: space-between; align-items: center; background-color: #3366ff; border-radius: 100px; padding: 15px 40px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); max-width: 900px; margin: 0 auto; flex-wrap: wrap; gap: 15px; }
.cta-full-pill p { font-size: 1.2rem; font-weight: 800; color: #fff; margin: 0; }
.btn-pill-action { background-color: #fff; color: #3366ff; text-decoration: none; padding: 12px 30px; border-radius: 30px; font-weight: 800; font-size: 1rem; transition: background-color 0.3s ease; white-space: nowrap; }
.btn-pill-action:hover { background-color: #c5d6ff; }

/* --- BENTO DESIGN (BENEFICIOS) --- */
.section-benefits { position: relative; padding: 80px 5%; background-color: #ffffff; color: #333; text-align: center; }
.container-benefits { max-width: 1400px; margin: 0 auto; }
.benefits-subtitle { font-size: 1.1rem; color: #666; margin-bottom: 40px; font-weight: 400; }
.benefits-subtitle em { font-weight: 700; color: #333; font-style: normal; }

.bento-wrapper { display: flex; gap: 20px; height: 600px; width: 100%; }
.bento-col { display: flex; flex-direction: column; flex: 1; gap: 20px; }
.bento-item {
    position: relative;
    flex: 1;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: #fff;
    transition: flex 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
}
.bento-item:hover { flex: 1.8; box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
.bento-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%); z-index: 1; transition: background 0.5s ease; }
.bento-item:hover .bento-card-overlay { background: rgba(51, 102, 255, 0.9); }
.bento-card-content { position: relative; z-index: 2; width: 100%; }
.bento-title { font-size: 1.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 0; transition: margin-bottom 0.5s ease; }
.bento-desc { font-size: 0.95rem; line-height: 1.5; font-weight: 400; color: rgba(255,255,255,0.95); max-height: 0; opacity: 0; margin-top: 0; overflow: hidden; transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease; }
.bento-item:hover .bento-title { margin-bottom: 10px; }
.bento-item:hover .bento-desc { max-height: 150px; opacity: 1; margin-top: 10px; }


/* --- NUEVA SECCIÓN: NOSOTROS EXTRA --- */
.section-nosotros-extra {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 100px;
}

.quienes-somos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    margin-bottom: 70px;
}

.quienes-header {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.quienes-title {
    flex: 0 0 300px;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #2b303b;
    line-height: 1.1;
}

.quienes-desc {
    flex: 1;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
    min-width: 300px;
}

.quienes-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.quienes-card {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.quienes-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.quienes-card.mision {
    background-color: #7B9DFF;
}

.quienes-card.vision {
    background-color: #4A6FFF;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.card-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.card-icon {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.quienes-card p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.95;
}

.tarjeta-info-wrapper {
    width: 100%;
    background-color: #3b6df0; 
    padding: 80px 5% 0 5%;
    overflow: hidden;
}

.tarjeta-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.tarjeta-text {
    flex: 1;
    min-width: 350px;
    color: #fff;
    padding-bottom: 80px;
}

.tarjeta-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.tarjeta-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
}

.tarjeta-image {
    flex: 1;
    min-width: 350px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.passport-img {
    max-width: 100%;
    height: auto;
    display: block;
    transform-origin: bottom center;
}

/* Animación de flotación infinita para el pasaporte */
@keyframes float-img {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating-anim {
    animation: float-img 6s ease-in-out infinite;
}


/* --- SABÍAS QUE... --- */
.section-sabias { padding: 80px 5%; background-color: #ffffff; display: flex; flex-direction: column; align-items: center; }
.container-sabias { display: flex; align-items: center; max-width: 1300px; width: 100%; gap: 30px; flex-wrap: wrap; }
.sabias-title-area { flex: 0 0 auto; }
.sabias-title { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; color: #2b303b; line-height: 1.1; margin: 0; }
.sabias-carousel-area { flex: 1; display: flex; align-items: center; gap: 10px; min-width: 300px; }
.sabias-track-container { flex: 1; overflow: hidden; border-radius: 20px; }
.sabias-track { display: flex; gap: 20px; transition: transform 0.5s ease-in-out; }
.sabias-card { flex: 0 0 calc(50% - 10px); display: flex; align-items: center; padding: 30px 25px; border-radius: 25px; color: #fff; min-height: 180px; flex-wrap: wrap; gap: 15px; }
.sabias-card-left { flex: 1; min-width: 150px; display: flex; flex-direction: column; align-items: flex-start; }
.sabias-card-left h3 { font-size: 1.3rem; font-weight: 600; line-height: 1.2; margin-bottom: 15px; }
.btn-sabias-info { display: inline-block; padding: 8px 20px; border: 1px solid #fff; border-radius: 20px; color: #fff; text-decoration: none; font-size: 0.85rem; font-weight: 300; transition: all 0.3s ease; }
.btn-sabias-info:hover { background-color: #fff; color: #3366ff; }
.sabias-card-right { flex: 1; min-width: 150px; font-size: 0.9rem; line-height: 1.4; font-weight: 300; }
.sabias-nav-btn { background: transparent; border: none; color: #407BFF; font-size: 2.5rem; cursor: pointer; transition: transform 0.2s ease, color 0.3s ease; padding: 10px; }
.sabias-nav-btn:hover { color: #264dc0; }
.sabias-pagination { margin-top: 30px; display: flex; gap: 10px; justify-content: center; width: 100%; }
.sabias-dot { width: 10px; height: 10px; background-color: #d1d5db; border-radius: 50%; cursor: pointer; transition: background-color 0.3s ease, transform 0.3s ease; }
.sabias-dot.active { background-color: #7B9DFF; transform: scale(1.3); }

/* --- FOOTER --- */
.site-footer { width: 100%; font-family: 'Nunito Sans', sans-serif; }
.footer-main { position: relative; background-size: cover; background-position: center; padding: 80px 5% 40px; color: #fff; }
.footer-overlay { position: absolute; inset: 0; background: rgba(74, 134, 255, 0.92); z-index: 1; }
.footer-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { font-size: 2.2rem; font-weight: 800; line-height: 1.1; }
.footer-logo strong { font-weight: 800; display: block; }
.brand-tagline { font-size: 1.1rem; font-weight: 300; margin-top: 5px; }
.phone-col h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 5px; line-height: 1.2; }
.phone-col p { font-size: 1.1rem; font-weight: 300; margin: 2px 0; }
.contact-col { align-items: flex-start; }
.btn-whatsapp { display: flex; align-items: center; gap: 10px; border: 2px solid #fff; border-radius: 40px; padding: 10px 20px; color: #fff; text-decoration: none; transition: all 0.3s ease; }
.btn-whatsapp i { font-size: 2rem; }
.btn-whatsapp div { display: flex; flex-direction: column; font-weight: 800; font-size: 1rem; line-height: 1.2; text-align: left; }
.btn-whatsapp:hover { background: #fff; color: #4a86ff; }
.email-link { margin-top: 10px; margin-left: 10px; color: #fff; text-decoration: none; font-weight: 300; font-size: 1rem; }
.social-col { flex-direction: row; gap: 15px; }
.social-icon { background: #fff; color: #4a86ff; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; text-decoration: none; transition: transform 0.3s ease; }
.social-icon:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.footer-hours { position: relative; z-index: 2; text-align: center; margin-top: 50px; font-weight: 300; font-size: 1rem; }
.footer-hours strong { font-weight: 800; }
.footer-bottom { background: #fff; padding: 20px 5%; color: #666; font-size: 0.9rem; }
.footer-bottom-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom-content a { color: #666; text-decoration: none; transition: color 0.3s; }

/* --- ANIMACIONES SCROLL --- */
.animate-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.slide.active .animate-in { opacity: 1; transform: translateY(0); }

.scroll-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-anim.is-visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE — TABLET (máx. 992px) --- */
@media (max-width: 992px) {
    .quote-bar { flex-wrap: wrap; border-radius: 20px; bottom: 20px; }
    .quote-item { flex: 1 1 40%; border: none !important; justify-content: flex-start; }
    .btn-quote { flex: 1 1 100%; justify-content: center; margin-top: 10px; }
    .plans-row { flex-direction: column; align-items: stretch; text-align: center; }
    .plans-intro { text-align: center; margin-bottom: 20px; }
    .membership-card { flex: 0 0 calc(50% - 10px); }
    .bento-wrapper { height: auto; flex-direction: column; }
    .bento-col { flex-direction: row; height: 300px; }
}

/* --- RESPONSIVE — MOBILE (máx. 768px) --- */
@media (max-width: 768px) {
    .menu-toggle { display: block; position: absolute; top: 50%; transform: translateY(-50%); right: 5%; }
    .navbar { justify-content: flex-start; padding: 14px 5%; }
    .nav-inner { width: 100%; justify-content: flex-start; }
    .logo { margin-right: 0; }
    .logo-img { height: 46px; }
    .nav-links {
        position: fixed; top: 0; left: -100%; width: 80%; max-width: 320px; height: 100vh;
        background-color: #fff; flex-direction: column; padding: 80px 0 30px;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15); opacity: 0; visibility: hidden;
        transition: left 0.4s ease, opacity 0.4s ease;
    }
    .nav-links.nav-active { left: 0; opacity: 1; visibility: visible; }
    .nav-links a { color: #23272b; font-size: 1.05rem; padding: 12px 28px; display: block; }
    .nav-links a:hover { color: #3968ff; }
    .nav-links .btn-login { margin: 14px 28px 0; display: inline-block; }

    .quote-bar { display: none; }
    .plan-card, .membership-card { height: 400px; }
    .membership-card { flex: 0 0 100%; }
    .memberships-carousel-wrapper { padding: 0 10px; }
    .memberships-prev { left: 0px; }
    .memberships-next { right: 0px; }

    .bento-col { flex-direction: column; height: auto; }
    .bento-item { min-height: 250px; flex: none; }
    .bento-item:hover { flex: none; }
    .bento-item:hover .bento-desc { max-height: 200px; }

    .sabias-card { flex: 0 0 100%; }
    .footer-bottom-content { justify-content: center; text-align: center; }

    /* Fix responsive nueva sección */
    .quienes-header { flex-direction: column; gap: 20px; }
    .quienes-title { flex: none; }
    .quienes-cards { flex-direction: column; }
    .tarjeta-info-container { flex-direction: column; }
    .tarjeta-text { padding-bottom: 30px; }
}

/* --- NUEVA SECCIÓN: INFO ADICIONAL (BENEFICIOS Y POR QUÉ) --- */
.section-info-adicional {
    padding: 80px 5%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 100px;
    overflow: hidden;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.info-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
}

.info-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.info-content {
    flex: 1.2;
    min-width: 350px;
}

.info-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #333;
    margin-bottom: 30px;
}

.text-blue {
    color: #3B6DF0; /* Azul principal del diseño */
}

.info-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Tarjeta azul con checkmarks (Bloque Superior) */
.blue-card-list-wrapper {
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

/* Sombra/Fondo celeste desfasado */
.blue-card-list-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background-color: #E6F3FF; /* Tono celeste claro */
    border-radius: 40px;
    z-index: -1;
}

.blue-card-list {
    background-color: #3B6DF0;
    border-radius: 40px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(59, 109, 240, 0.15);
}

.blue-card-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blue-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 400;
}

/* Cuadro blanco con icono de check azul */
.check-icon {
    background-color: #fff;
    color: #3B6DF0;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.8rem;
}

/* Contenedor de la imagen sesgada (Bloque Inferior) */
.image-framed-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-framed-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -15px;
    right: 15px;
    bottom: -20px;
    background-color: #E6F3FF;
    border-radius: 30px 10px 30px 10px;
    transform: skew(-2deg);
    z-index: -1;
}

.image-framed-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3B6DF0;
    border-radius: 30px 10px 30px 10px;
    transform: skew(-2deg);
    z-index: 0;
}

.image-framed-wrapper img {
    border-radius: 25px 10px 25px 10px;
    z-index: 2;
    position: relative;
    padding: 8px;
    transform: skew(0deg); 
}

/* --- RESPONSIVE PARA LA NUEVA SECCIÓN --- */
@media (max-width: 992px) {
    .section-info-adicional {
        gap: 60px;
        padding: 60px 5%;
    }
    .info-container {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }
    .info-content {
        min-width: 100%;
    }
    .blue-card-list li {
        text-align: left;
    }
    .blue-card-list-wrapper::before {
        right: 0px; 
        left: 10px;
        bottom: -15px;
    }
    .image-framed-wrapper::before {
        left: 10px;
        right: -10px;
    }
}

@media (max-width: 768px) {
    .blue-card-list {
        padding: 25px;
    }
    .info-content h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
}

/* --- CARRUSEL PLANES DE CORTA ESTADÍA --- */
.plans-carousel-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0; /* Previene que el contenedor flex colapse y se desborde */
}

.plans-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 25px; /* Mantiene la estética de las esquinas */
}

.plans-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.plans-track .plan-card {
    flex: 0 0 calc(25% - 15px); /* Por defecto muestra 4 tarjetas */
}

.plans-nav-btn {
    background: transparent;
    border: none;
    color: #3366ff; /* Azul característico de la marca */
    font-size: 3rem; /* Flechas gruesas y grandes */
    cursor: pointer;
    padding: 5px;
    z-index: 10;
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plans-nav-btn:hover {
    color: #264dc0;
    transform: scale(1.1);
}

/* Responsivo para el nuevo carrusel */
@media (max-width: 1200px) {
    .plans-track .plan-card { flex: 0 0 calc(33.333% - 13.33px); } /* 3 tarjetas */
}
@media (max-width: 992px) {
    .plans-carousel-wrapper { flex-direction: row; width: 100%; justify-content: center; }
    .plans-track .plan-card { flex: 0 0 calc(50% - 10px); } /* 2 tarjetas */
}
@media (max-width: 768px) {
    .plans-nav-btn { font-size: 2rem; }
    .plans-track .plan-card { flex: 0 0 100%; } /* 1 tarjeta */
}

/* --- POP-UP INICIAL Y OVERLAY --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Tramado oscuro de fondo */
    z-index: 10000; /* Por encima de todo */
    display: none; /* Oculto por defecto */
    transition: opacity 0.5s ease;
    opacity: 0;
}

.popup-overlay.active {
    display: block;
    opacity: 1;
}

.popup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    background-color: transparent;
    z-index: 10001; /* Por encima del overlay */
    display: none; /* Oculto por defecto */
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    border-radius: 15px; /* Bordes redondeados para el contenedor */
    overflow: hidden; /* Cortar imagen para seguir bordes */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.popup-modal.active {
    display: block;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

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

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    line-height: 1;
    z-index: 10002; /* Por encima de la imagen */
}

.popup-close-btn:hover {
    color: #ddd;
    transform: scale(1.1);
}
/* Fin Pop-up Inicial */

/* --- PLAN DETAILS MODAL (DISEÑO ESPECÍFICO) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); /* FONDO OSCURO */
    z-index: 2000;
    display: none;
    transition: opacity 0.4s ease;
}

.plan-details-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 1200px; /* Ancho amplio según la muestra */
    background-color: transparent;
    z-index: 2001;
    display: none;
    flex-direction: column;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.modal-overlay.active,
.plan-details-modal.active {
    display: flex;
    opacity: 1;
}

.plan-details-modal.active {
    transform: translate(-50%, -50%) scale(1);
}

.modal-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 20px;
    overflow: hidden; /* Esto hace que la imagen no se salga de las esquinas curvas */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.modal-image-wrapper {
    width: 100%;
    max-height: 65vh; /* Ajuste para dar espacio al botón abajo */
    background-color: #3B6DF0; /* Color azul por si la imagen tarda */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.modal-coverage-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Hace que llene el espacio uniformemente sin aplastarse */
    display: block;
}

.modal-footer-wrapper {
    background-color: #ffffff; /* El fondo blanco para la zona del CTA */
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-cta-btn {
    background-color: #3B6DF0; /* Mismo color de tu mockup */
    color: #ffffff !important;
    padding: 15px 40px;
    border-radius: 40px; /* Forma de píldora */
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(59, 109, 240, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.modal-cta-btn:hover {
    background-color: #264dc0;
    transform: translateY(-2px);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #ffffff;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Sombra para que la "x" sea visible sobre la imagen */
}

.close-modal-btn:hover {
    color: #e0e0e0;
}
/* END PLAN DETAILS MODAL */