@charset "utf-8";

:root {
  --black: #111827;
  --dark: #0f1115;
  --dark-2: #1a1a1d;
  --white: #ffffff;
  --highlight: #145da2;
  --whatsapp: #25d366;
}

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

html, body {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--dark);
  color: var(--black);
}

header {
  width: 100%;
  background-color: rgba(255,255,255,.94);
  padding: .75rem 3rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(0,0,0,.06);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--black);
}


.logo img {
  height: 76px;
  width: auto;
  display: block;
}

.logo span {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: .03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  transition: color .25s ease;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--highlight); }

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  padding: .65rem;
  border-radius: 14px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 20px 45px rgba(0,0,0,.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.dropdown-menu a {
  display: block;
  padding: .85rem 1rem;
  border-radius: 10px;
  font-size: .98rem;
}

.dropdown-menu a:hover {
  background: #f3f4f6;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menutheta {
  display: none;
  font-size: 1.9rem;
  background: none;
  border: none;
  color: var(--black);
  cursor: pointer;
}

.banner {
  width: 100%;
  min-height: 92vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5rem 6rem;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(20,93,162,.10), transparent 45%),
    linear-gradient(90deg, rgba(5,8,14,.82) 0%, rgba(5,8,14,.48) 48%, rgba(5,8,14,.15) 100%);
  animation: heroGlow 8s ease-in-out infinite;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--white);
}

.eyebrow, .section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.68);
  letter-spacing: .18em;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.banner h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  text-shadow: 0 10px 28px rgba(0,0,0,.35);
}

.hero-sub {
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.65;
  color: #e5e7eb;
  max-width: 680px;
  margin-bottom: 2rem;
}

.modern-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 2.2rem;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.24);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  backdrop-filter: blur(8px);
}

.modern-btn:hover {
  transform: translateY(-2px);
  background: var(--highlight);
  border-color: var(--highlight);
}

.full-section {
  display: flex;
  width: 100%;
  min-height: 720px;
  background: var(--dark);
  overflow: hidden;
  align-items: stretch;
}

.full-section.reverse { flex-direction: row-reverse; }

.image-side {
  width: 50%;
  min-height: 720px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--dark);
  flex-shrink: 0;
}

.image-side::before,
.image-side::after { content: none !important; }

.text-panel {
  width: 50%;
  min-height: 720px;
  padding: clamp(3rem, 6vw, 6rem);
  background: linear-gradient(135deg, #111827 0%, #1a1a1d 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.text-panel h2 {
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1.06;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.text-panel p {
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  max-width: 640px;
  margin-bottom: .9rem;
}

.text-panel p:last-child { margin-bottom: 0; }

/* CTA distinto para romper repetición */
.cta-section {
  min-height: 620px;
  padding: 6rem 2rem;
  background:
    radial-gradient(circle at top left, rgba(20,93,162,.32), transparent 34%),
    linear-gradient(135deg, #0b0f17 0%, #181b21 55%, #0f1115 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card {
  width: min(980px, 100%);
  padding: clamp(2.4rem, 6vw, 5rem);
  border-radius: 28px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  color: var(--white);
  text-align: center;
}

.cta-card h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
}

.cta-card p {
  max-width: 760px;
  margin: 0 auto 1rem;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255,255,255,.86);
}

.cta-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--highlight);
  border-color: var(--highlight);
}

.cta-secondary {
  background: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(3px);
  transition: opacity .7s ease, transform .7s ease, filter .7s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

footer {
  background: linear-gradient(180deg, #eef3f7 0%, #fff 100%);
  padding: 3rem 1.5rem 1.5rem;
  text-align: left;
}

.footer-inner {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-brand {
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--black);
}

.footer-col h4 {
  margin-bottom: 10px;
  color: var(--black);
}

.footer-col p,
.footer-col a {
  color: #374151;
  line-height: 1.7;
  font-size: .98rem;
  text-decoration: none;
}

.footer-col a:hover { color: var(--highlight); }

.footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,.08);
  text-align: center;
  color: #6b7280;
  font-size: .92rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 62px;
  height: 62px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  z-index: 999;
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
}

@media (max-width: 980px) {
  header { padding: 1rem 1.5rem; }
  .banner { padding: 4rem 2rem; }

  .full-section,
  .full-section.reverse {
    flex-direction: column;
    min-height: auto;
  }

  .image-side {
    width: 100%;
    min-height: 420px;
    height: 420px;
  }

  .text-panel {
    width: 100%;
    min-height: auto;
    padding: 3rem 2rem;
  }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menutheta { display: block; }

  
.logo img {
  height: 76px;
  width: auto;
  display: block;
}

.logo span {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: .03em;
}

.nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,.98);
    position: absolute;
    top: calc(100% + .65rem);
    right: 0;
    width: min(340px, 92vw);
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    gap: 0;
  }

  .nav-links.show { display: flex; }

  .nav-links a,
  .dropdown-toggle {
    width: 100%;
    padding: .95rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f7f8fa;
    border-radius: 12px;
    margin: .4rem 0 .7rem;
    padding: .35rem;
    display: block;
  }

  .dropdown-menu a {
    border-bottom: 0;
    padding: .75rem .85rem;
    font-size: .96rem;
  }

  .banner {
    min-height: 86vh;
    padding: 3rem 1.25rem;
    text-align: left;
  }

  .banner::after { background: rgba(5,8,14,.68); }

  .image-side {
    height: 320px;
    min-height: 320px;
  }

  .text-panel { padding: 2.2rem 1.5rem; }

  .cta-section {
    padding: 4rem 1.2rem;
    min-height: auto;
  }

  .cta-card {
    border-radius: 22px;
  }

  .footer-inner { grid-template-columns: 1fr; }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 1rem;
    bottom: 1rem;
  }
}



/* ===== BLOQUE INSTITUCIONAL AXIAL / MANIFIESTO ===== */

.axial-statement {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  background:
    radial-gradient(circle at top left, rgba(20,93,162,.24), transparent 38%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.06), transparent 36%),
    linear-gradient(135deg, #0b0f17 0%, #111827 52%, #0f1115 100%);
  color: var(--white);
}

.statement-content {
  width: min(1080px, 100%);
  margin: 0 auto;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.statement-content span {
  display: block;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.1rem;
  font-size: .8rem;
  font-weight: 800;
}

.statement-content h2 {
  max-width: 860px;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.8rem;
}

.statement-lead {
  max-width: 900px;
  margin: 0 auto 1.8rem;
  color: rgba(255,255,255,.95);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.75;
  font-weight: 500;
}

.statement-line {
  width: 78px;
  height: 2px;
  background: var(--highlight);
  margin: 0 auto 1.9rem;
}

.statement-content p {
  max-width: 900px;
  margin: 0 auto 1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
  font-size: clamp(1rem, 1.12vw, 1.08rem);
}

.statement-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .axial-statement {
    min-height: 100vh;
    padding: 4rem 1.25rem;
  }

  .statement-content h2 {
	font-size: clamp(2rem, 8vw, 3rem);
  }

  .statement-lead,
  .statement-content p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .statement-line {
    margin-bottom: 1.6rem;
  }
}


/* ===== CORRECCION FINAL: MENU + CIERRE FULLSCREEN ===== */

/* Menu desplegable estable */
.nav-dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: .35rem; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 270px;
  padding: .65rem;
  border-radius: 14px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 20px 45px rgba(0,0,0,.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 1200;
}
.dropdown-menu a {
  display: block;
  padding: .85rem 1rem;
  border-radius: 10px;
  font-size: .98rem;
  color: var(--black);
}
.dropdown-menu a:hover { background: #f3f4f6; color: var(--highlight); }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Anula el viejo cierre tipo card */
.cta-section, .cta-card, .cta-actions { all: unset; }

/* Cierre full screen */
.cta-fullscreen {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background:
    radial-gradient(circle at top left, rgba(20,93,162,.25), transparent 40%),
    linear-gradient(135deg, #0b0f17 0%, #111827 50%, #0f1115 100%);
  color: white;
}
.cta-content {
  max-width: 1000px;
  margin: 0 auto;
}
.cta-content span {
  display: block;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
  font-size: .8rem;
  font-weight: 800;
}
.cta-content h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  color: white;
  margin-bottom: 2rem;
}
.cta-content p {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: rgba(255,255,255,.85);
  font-size: 1.2rem;
  line-height: 1.8;
}
.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.8rem;
  border-radius: 14px;
  background: #25D366;
  color: white;
  font-weight: 800;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .22);
}
.cta-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, .28);
}

@media (max-width: 768px) {
  
.logo img {
  height: 76px;
  width: auto;
  display: block;
}

.logo span {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: .03em;
}

.nav-links { gap: 0; }
  .nav-dropdown { width: 100%; }
  .dropdown-toggle { width: 100%; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f7f8fa;
    border-radius: 12px;
    margin: .4rem 0 .7rem;
    padding: .35rem;
    display: block;
    width: 100%;
  }
  .dropdown-menu a {
    border-bottom: 0 !important;
    padding: .75rem .85rem;
    font-size: .96rem;
  }
  .cta-fullscreen {
    min-height: 100vh;
    padding: 4rem 1.25rem;
  }
  .cta-content h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .cta-content p { font-size: 1.05rem; }
}




@keyframes heroGlow {
  0% { opacity: .92; }
  50% { opacity: 1; }
  100% { opacity: .92; }
}


@media (max-width: 768px) {
  .banner::after {
    animation: none;
  }
}
