/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: #222; background: #fff; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════════ */
:root {
  navy:      #1a2755;
  navy-dark: #162040;
  card-bg:   #1e2f5e;
  yellow:    #F5C842;
  border:    #dde3ef;
  text-soft: #666;
  text-mid:  #444;
  gray-bg:   #f5f6fa;
}

/* ═══════════════════════════════════════════════
   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;
}

/* ═══════════════════════════════════════════════
   HERO BANNER
═══════════════════════════════════════════════ */
.hero-banner {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 32px auto;
  border-radius: 20px;
  overflow: hidden;
}
.hero-banner > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.hero-banner-bottom {
  background: #1a2755;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 32px;
  border-radius: 0 0 20px 20px;
}
.hero-banner-left h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}
.hero-banner-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid rgba(255,255,255,.2);
  padding-left: 32px;
}
.hero-desc-bold {
  font-family: 'Open Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}
.hero-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   HISTORIA
═══════════════════════════════════════════════ */
.historia-section {
  max-width: 860px;
  margin: 48px auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.historia-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.historia-text p {
  font-size: .88rem;
  color: #222;
  line-height: 1.8;
  text-align: justify;
  font-weight: 600;
}
.historia-logo {
  flex-shrink: 0;
  width: 180px;
}
.historia-logo img {
  width: 100%;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════
   MISIÓN & VISIÓN
═══════════════════════════════════════════════ */
.mision-vision-section {
  max-width: 860px;
  margin: 0 auto 56px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mv-card {
  display: flex;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  background: #fff;
}
.mv-text {
  flex: 1;
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.mv-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a2755;
}
.mv-text p {
  font-size: .85rem;
  color: #333;
  line-height: 1.75;
  text-align: justify;
}
.mv-text--right {
  text-align: right;
}
.mv-text--right p {
  text-align: justify;
}
.mv-img {
  width: 280px;
  flex-shrink: 0;
}
.mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════
   VALORES
═══════════════════════════════════════════════ */
.valores-section {
  max-width: 920px;
  margin: 0 auto 64px;
  padding: 0 24px;
  text-align: center;
}
.valores-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 36px;
}
.valores-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.valor-card {
  width: 155px;
  border: 2px solid #222;
  border-radius: 20px;
  padding: 24px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
}
.valor-icon img {
   width: 32px;
  height: 32px;
  object-fit: contain;
}
.valor-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.valor-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: #222;
}
.valor-card p {
  font-size: .72rem;
  color: #444;
  line-height: 1.55;
  text-align: center;
}
/* ═══════════════════════════════════════════════
   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;
    }
}