/* ============================================================
   INVERSIONISTA 360 IA — Landing Page
   Colores tomados del brochure final BrochureInversionista360IA-1G.pdf
   Fondo oscuro: #0D2B2B (teal muy oscuro)
   Verde principal: #1A6B5A / #2A8C6A
   Teal acento: #3ABFB0
   Blanco: #FFFFFF
   Gris claro: #F5F5F5
   Texto oscuro: #1A2B3C
   ============================================================ */

:root {
  --dark-bg:     #0D2B2B;
  --dark-bg2:    #0A2222;
  --dark-bg3:    #112E2E;
  --green:       #2A8C6A;
  --green-l:     #3AAF85;
  --teal:        #3ABFB0;
  --teal-l:      #4DD9CA;
  --white:       #FFFFFF;
  --off-white:   #F5F5F5;
  --light-bg:    #F8F8F6;
  --gray-l:      #E5E5E2;
  --gray-t:      #666666;
  --gray-m:      #999999;
  --text-dark:   #1A2B3C;
  --gold:        #C9A84C;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================ BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  border: none;
}
.btn-primary:hover { background: var(--green-l); transform: translateY(-2px); }
.btn-primary.btn-large { font-size: 13px; padding: 20px 50px; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--text-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1.5px solid var(--text-dark);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}
.btn-outline-dark:hover { background: var(--text-dark); color: var(--white); }

.btn-nav {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: background 0.25s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--green-l); }

/* ============================================================ NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 34, 34, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58,191,176,0.12);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo { height: 40px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

/* ============================================================ HERO */
.hero {
  background: var(--dark-bg);
  min-height: 100vh;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Círculos decorativos sutiles del brochure */
.hero-circles { position: absolute; inset: 0; pointer-events: none; }
.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(58,191,176,0.08);
}
.c1 { width: 700px; height: 700px; top: -150px; right: -100px; }
.c2 { width: 500px; height: 500px; top: -50px; right: 0px; border-color: rgba(58,191,176,0.05); }
.c3 { width: 900px; height: 900px; top: -250px; right: -200px; border-color: rgba(58,191,176,0.04); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-top-bar {
  display: flex;
  justify-content: flex-end;
  padding: 24px 0 0;
}
.hero-smai-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-smai-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
}

/* Hero two-column layout */
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  flex: 1;
  gap: 40px;
  padding: 30px 0 20px;
}
.hero-isotipo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.hero-isotipo {
  width: 380px;
  max-width: 100%;
  opacity: 0.92;
  filter: drop-shadow(0 0 60px rgba(58,191,176,0.18));
  animation: hero-float 6s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-body { padding: 50px 0 40px; max-width: 620px; }

.hero-cert-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-style: italic;
}

.hero-title {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-360 {
  color: var(--teal);
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
}
.hero-gen {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--teal);
  font-style: italic;
}
.hero-libre {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 5px 14px;
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Quote bar inferior del hero */
.hero-quote-bar {
  margin-top: auto;
  border-left: 3px solid var(--teal);
  padding: 16px 20px;
  max-width: 560px;
  margin-bottom: 24px;
}
.hero-quote p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.hero-quote-bold {
  font-weight: 700;
  color: var(--teal) !important;
}

.hero-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================ SECTION COMMONS */
.section-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--teal); }
.eyebrow-icon { font-size: 14px; color: var(--green); }
.eyebrow-icon-sm { font-size: 12px; }

.section-title-lg {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}
.title-light { color: var(--white); }

.sub-heading {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-m);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-l);
}
.sub-heading-dark {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-t);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-l);
}

/* ============================================================ CONCEPTO */
.concepto {
  background: var(--white);
  padding: 90px 0 0;
  position: relative;
}
.concepto-logo-corner {
  position: absolute;
  top: 60px;
  right: 60px;
  opacity: 0.08;
  pointer-events: none;
}
.concepto-logo-corner img { width: 120px; }

.manifesto-rows {
  border-top: 1px solid var(--gray-l);
  border-bottom: 1px solid var(--gray-l);
  margin-bottom: 32px;
}
.man-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-l);
  flex-wrap: wrap;
}
.man-row:last-child { border-bottom: none; }
.man-row span:first-child {
  font-size: 13px;
  color: var(--gray-t);
}
.man-row strong { color: var(--text-dark); }
.man-right {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: right;
}
.man-teal { color: var(--teal) !important; }

.concepto-body {
  font-size: 13px;
  color: var(--gray-t);
  line-height: 1.9;
  margin-bottom: 14px;
  max-width: 820px;
}

/* Dominios */
.dominios-section { margin-top: 50px; }
.dominios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-l);
  margin-bottom: 40px;
}
.dominio-card {
  background: var(--white);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.2s;
}
.dominio-card:hover { background: var(--off-white); }
.dom-icon { font-size: 18px; margin-bottom: 4px; }
.dom-name {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 1.4;
}
.dom-desc {
  font-size: 9px;
  font-weight: 400;
  color: var(--gray-t);
  line-height: 1.5;
}

/* Universo */
.universo-section { margin-bottom: 40px; }
.universo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.universo-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}
.universo-more {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal) !important;
  font-style: italic;
}

/* Transformación */
.transformacion-section { margin-bottom: 0; }
.trans-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: start;
}
.trans-col { padding: 20px 0; }
.trans-hoy { border-top: 2px solid var(--gray-m); }
.trans-fin { border-top: 2px solid var(--green); }
.trans-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-m);
  margin-bottom: 14px;
}
.trans-label-fin { color: var(--green); }
.trans-item {
  font-size: 11px;
  color: var(--gray-t);
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-l);
  line-height: 1.5;
}
.trans-item:last-child { border-bottom: none; }
.trans-item-fin { font-weight: 600; color: var(--text-dark); }
.trans-arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
.trans-arrow-icon { font-size: 22px; color: var(--teal); }

/* Manifiesto bar */
.manifiesto-bar {
  background: var(--dark-bg);
  margin-top: 50px;
}
.man-bar-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 32px;
}
.man-bar-eyebrow {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--teal);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.man-bar-text {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  max-width: 820px;
}
.man-bar-text strong { color: rgba(255,255,255,0.9); }

/* ============================================================ EXPERIENCIA */
.experiencia { background: var(--light-bg); }

.experiencia-header {
  background: var(--dark-bg);
  padding: 80px 0 0;
}
.exp-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 40px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-box {
  background: rgba(255,255,255,0.06);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-lbl {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--teal);
  text-transform: uppercase;
}

.experiencia-body { padding: 60px 0; }

.exp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.incluye-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.incluye-list li {
  font-size: 12px;
  color: var(--gray-t);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-l);
  line-height: 1.5;
}
.incluye-list li:last-child { border-bottom: none; }

.proyecto-card {
  background: #1A4A3A;
  padding: 28px 24px;
  height: 100%;
}
.proy-eyebrow {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.proy-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 20px;
}
.proy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: proy-counter;
}
.proy-list li {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  counter-increment: proy-counter;
}
.proy-list li::before {
  content: counter(proy-counter, decimal-leading-zero);
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  min-width: 22px;
}
.proy-list li:last-child { border-bottom: none; }

.filosofia-bar {
  background: var(--off-white);
  border-top: 1px solid var(--gray-l);
  padding: 28px 32px;
}
.filosofia-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.filosofia-eyebrow {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  white-space: nowrap;
}
.filosofia-text {
  font-size: 12px;
  color: var(--gray-t);
  line-height: 1.8;
  flex: 1;
}
.filosofia-text strong { color: var(--text-dark); }
.filosofia-logo { width: 50px; opacity: 0.25; flex-shrink: 0; }

/* ============================================================ INSTRUCTOR */
.instructor { background: var(--light-bg); }

.instructor-top {
  background: var(--dark-bg);
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 580px;
  overflow: hidden;
}
.instructor-photo-col {
  overflow: hidden;
  position: relative;
}
.instructor-photo-col::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--dark-bg));
}
.instructor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.9) contrast(1.05);
}
.instructor-text-col {
  padding: 60px 50px 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inst-name {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.inst-role {
  font-size: 11px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.inst-separator {
  width: 40px;
  height: 2px;
  background: var(--teal);
  margin-bottom: 20px;
}
.inst-bio {
  font-size: 10px;
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  margin-bottom: 12px;
}
.inst-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.inst-tags span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 10px;
  text-transform: uppercase;
}

/* Info + Fechas */
.instructor-bottom { padding: 60px 0; }
.info-fechas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.info-rows { display: flex; flex-direction: column; gap: 0; }
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-l);
}
.info-row:last-child { border-bottom: none; }
.info-val { font-size: 16px; font-weight: 700; color: var(--text-dark); }
.info-lbl { font-size: 8px; font-weight: 700; letter-spacing: 2px; color: var(--gray-m); text-transform: uppercase; }

.fechas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.fecha-box {
  background: var(--white);
  border: 1px solid var(--gray-l);
  padding: 14px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fecha-num { font-size: 22px; font-weight: 800; color: var(--text-dark); line-height: 1; }
.fecha-mes { font-size: 8px; font-weight: 700; letter-spacing: 1px; color: var(--green); text-transform: uppercase; }

/* Inversión */
.inversion-block {
  background: var(--dark-bg);
  display: grid;
  grid-template-columns: 1fr 1fr 200px;
  gap: 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.inversion-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--green), var(--teal));
}

.inv-left {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.inv-preventa-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.inv-precio {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.inv-num { font-size: 52px; }
.inv-mxn { font-size: 18px; font-weight: 400; color: rgba(255,255,255,0.5); }
.inv-ahorro {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
}

.inv-center {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.inv-regular-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.inv-regular-precio {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}
.inv-msi {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: rgba(58,191,176,0.15);
  padding: 10px 16px;
}
.inv-msi-icon { font-size: 14px; }
.inv-msi-sub { font-size: 9px; color: rgba(255,255,255,0.4); }

.inv-right {
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.inv-qr-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  line-height: 1.5;
}
.inv-qr {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: var(--white);
  padding: 6px;
}
.inv-qr-sub {
  font-size: 8px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.cupo-bar {
  background: var(--dark-bg3);
  text-align: center;
  padding: 12px 32px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.brochure-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-left: 3px solid var(--teal);
  flex-wrap: wrap;
}
.brochure-bar strong { font-size: 14px; color: var(--text-dark); display: block; margin-bottom: 4px; }
.brochure-bar p { font-size: 11px; color: var(--gray-t); }

/* ============================================================ CIERRE */
.cierre {
  background: var(--off-white);
  padding: 90px 0;
  text-align: center;
  border-top: 1px solid var(--gray-l);
}
.cierre-quote {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}
.cierre-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--green);
  text-transform: uppercase;
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ============================================================ FOOTER */
.footer {
  background: var(--dark-bg2);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo { height: 44px; width: auto; }
.footer-info { flex: 1; }
.footer-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.65); }
.footer-url { font-size: 9px; color: rgba(255,255,255,0.3); margin-top: 3px; letter-spacing: 1px; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.footer-contact a {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--teal); }

/* Barra de contacto en el cierre */
.contacto-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-l);
  flex-wrap: wrap;
}
.contacto-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
}
.contacto-item:hover { color: var(--green); }
.contacto-icon { font-size: 16px; }
.contacto-sep { font-size: 18px; color: var(--gray-m); }

/* ============================================================ RESPONSIVE */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-two-col { grid-template-columns: 1fr; }
  .hero-isotipo-col { display: none; }
  .dominios-grid { grid-template-columns: repeat(2, 1fr); }
  .instructor-top { grid-template-columns: 1fr; }
  .instructor-photo-col { min-height: 380px; }
  .instructor-text-col { padding: 40px 32px; }
  .info-fechas-grid { grid-template-columns: 1fr; }
  .inversion-block { grid-template-columns: 1fr; }
  .inv-left, .inv-center, .inv-right { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .exp-two-col { grid-template-columns: 1fr; }
  .trans-grid { grid-template-columns: 1fr; }
  .trans-arrow-col { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero-content { padding: 0 20px; }
  .dominios-grid { grid-template-columns: 1fr; }
  .fechas-grid { grid-template-columns: repeat(4, 1fr); }
  .man-row { flex-direction: column; gap: 4px; }
  .man-right { text-align: left; }
  .brochure-bar { flex-direction: column; text-align: center; }
  .info-fechas-grid { gap: 24px; }
}
