html {
    scroll-behavior: smooth;
}

:root {
    --navy-deep: #1a2755;
    --navy-medium: #1e2f5e;
    --yellow-accent: #F5C842;
    --white: #ffffff;
    --gray-text: #666666;
    --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #222;
    line-height: 1.6;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, .btn-agendar-cta {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-center { text-align: center; }

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}
.text-justify p {
    margin-bottom: 15px;
}
.text-justify p:last-child {
    margin-bottom: 0;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    height: 75px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.logo-wrap img { height: 48px; display: block; }
.navbar-links { display: flex; list-style: none; gap: 35px; align-items: center; }
.navbar-links a {
    font-weight: 700; 
    color: #1a2755;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif; 
}
.btn-nav-contactar {
    background: #F5C842;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700 !important;
    color: #1a2755 !important;
}

/* Contenido */
.hero-wrap { padding: 25px; }
.hero-banner { background: #1a2755; border-radius: 35px; display: flex; align-items: center; max-width: 1200px; margin: 0 auto; overflow: hidden; min-height: 400px; }
.hero-text { flex: 1; padding-left: 10%; color: #ffffff; text-align: left; }
.hero-text h1 { font-size: 5rem; font-weight: 800; line-height: 0.9; margin-bottom: 10px; }
.hero-text p { font-size: 1.6rem; opacity: 0.9; }
.hero-photo.glow-effect { flex: 1; display: flex; justify-content: center; align-items: center; height: 400px; align-self: stretch; background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.25) 0%, rgba(26, 39, 85, 0) 65%); }
.hero-photo img { height: 100%; object-fit: contain; }

.section-inner { max-width: 1100px; margin: 0 auto; padding: 80px 20px; }
.section-title { color: #1a2755; font-size: 2.8rem; font-weight: 800; margin-bottom: 15px; text-align: center; }
.section-subtitle { color: #666666; max-width: 750px; margin: 0 auto 50px; font-size: 1.05rem; text-align: center; }

.tabs-nav { display: flex; justify-content: center; gap: 80px; border-bottom: 2px solid #eeeeee; margin-bottom: 40px; }
.tab-btn { background: none; border: none; padding: 15px 5px; font-weight: 700; font-size: 1.2rem; color: #1a2755; cursor: pointer; position: relative; opacity: 0.6; outline: none; transition: all 0.3s ease; }
.tab-btn.active { opacity: 1; }
.tab-btn.active::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 5px; background: #1a2755; }

.producto-detalle-card { display: flex; background: #ffffff; border-radius: 30px; overflow: hidden; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); align-items: center; margin-bottom: 30px; }
.detalle-info { flex: 1.2; padding: 50px; }
.detalle-img { flex: 1; height: 350px; }
.detalle-img img { width: 100%; height: 100%; object-fit: cover; }

.planes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 40px; }
.plan-card { background: #1e2f5e; color: #ffffff; border-radius: 25px; padding: 50px 20px; text-align: center; cursor: pointer; border: 3px solid transparent; transition: all 0.3s ease; }
.plan-card.active { background: #152245; }
.plan-card img { width: 70px; margin-bottom: 25px; }
.plan-card h3 { font-size: 1.4rem; font-weight: 700; }

.plan-detalle-banner { background: #1a2755; border-radius: 30px; display: flex; overflow: hidden; color: #ffffff; min-height: 320px; margin-bottom: 30px; align-items: center; }
.plan-detalle-img { flex: 0.9; height: 320px; }
.plan-detalle-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.plan-detalle-text { flex: 1.1; padding: 50px; display: flex; align-items: center; }

.btn-agendar-cta { display: inline-block; background: #F5C842; color: #1a2755; padding: 15px 45px; border-radius: 50px; font-weight: 800; font-size: 1.1rem; text-transform: uppercase; }

/* Footer */
footer {
    background: #1a2755;
    color: #fff;
    padding: 50px 5% 30px;
}

.footer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
}

.footer-tagline {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-cols {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Aplicamos text-decoration: none !important para quitar cualquier línea */
.footer-col p, 
.footer-col li, 
.footer-col a {
    font-size: 0.85rem;
    color: #fff;
    list-style: none;
    margin-bottom: 6px;
    opacity: 0.9;
    text-decoration: none !important; 
}

.footer-col a:hover {
    color: #F5C842;
    text-decoration: none !important;
}

.contact-highlight {
    font-weight: 600;
    font-size: 0.9rem !important;
}

.address-block {
    margin-top: 15px;
}

.footer-mapa-grid {
    display: flex;
    gap: 40px;
}

.map-group h5 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #fff;
}

.no-title {
    padding-top: 25px;
}

.social-links-container {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    align-items: center;
}

.social-icons a {
    font-size: 1.4rem;
    color: #fff;
    transition: color 0.3s;
    text-decoration: none !important;
}

.social-icons a:hover {
    color: #F5C842;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
    .hero-banner, .producto-detalle-card, .plan-detalle-banner { flex-direction: column; text-align: center; }
    .hero-text { padding: 40px 20px; }
    .hero-text h1 { font-size: 3rem; }
    .hero-photo.glow-effect { width: 100%; height: 300px; justify-content: center; }
    .planes-grid { grid-template-columns: 1fr; }
    .footer-cols, .footer-mapa-grid { flex-direction: column; gap: 30px; }
    .no-title { padding-top: 0; }
}