:root {
  --olive: #8B9A2E;
  --olive-dark: #6d7a22;
  --orange: #be5b15;
  --orange-light: #d46b22;
  --charcoal: #4a4a4a;
  --navy: #000e55;
  --navy-mid: #001580;
  --white: #ffffff;
  --off-white: #f5f4f0;
  --light-gray: #ececec;
  --mid-gray: #999;
  --dark: #111111;
  --card-bg: #fafaf8;
  --border: rgba(74,74,74,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 2px 20px rgba(0,0,0,0.07);
  --transition: 0.25s ease;
  font-size: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.container { width: 90%; max-width: 1180px; margin: 0 auto; }

/* ===================== HEADER ===================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

header.scrolled .header-inner {
  padding: 14px 0;
  border-bottom-color: var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 120px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-dark { display: block; }
.logo-white { display: none; }
header.hero-mode .logo-dark { display: none; }
header.hero-mode .logo-white { display: block; }

nav { display: flex; align-items: center; gap: 28px; }

nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  font-family: 'Barlow', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
}
nav a:hover { color: var(--orange); }

header.hero-mode nav a { color: rgba(255,255,255,0.85); }
header.hero-mode nav a:hover { color: #fff; }

.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); margin: 4px 0; border-radius: 2px; transition: all 0.3s;
}
header.hero-mode .nav-mobile-toggle span { background: #fff; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-transform: uppercase;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }

.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover { background: var(--orange-light); transform: translateY(-1px); }

.btn-olive {
  background: var(--olive);
  color: #fff;
}
.btn-olive:hover { background: var(--olive-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-wa {
  background: #1da462;
  color: #fff;
}
.btn-wa:hover { background: #178a52; transform: translateY(-1px); }

.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: var(--radius-md); }

.btn-icon {
  width: 16px; height: 16px; flex-shrink: 0;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,14,85,0.82) 0%,
    rgba(0,14,85,0.55) 50%,
    rgba(139,154,46,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139,154,46,0.25);
  border: 1px solid rgba(139,154,46,0.5);
  color: #c8d95a;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 22px;
  max-width: 720px;
  letter-spacing: 1px;
}

.hero h1 .accent {
  color: var(--olive);
  display: inline-block;
  position: relative;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 38px;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat .label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.hero-stat .accent-line {
  width: 28px;
  height: 2px;
  background: var(--olive);
  border-radius: 2px;
  margin-bottom: 8px;
}

.carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.35);
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { width: 24px; background: var(--olive); }

/* ===================== SECTION BASE ===================== */
section { padding: 80px 0; }

.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 560px;
  font-family: 'Barlow', sans-serif;
}

.section-header { margin-bottom: 48px; }

/* ===================== SERVICIOS ===================== */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: #eee;
}

.service-body { padding: 22px; }

.service-icon {
  width: 38px; height: 38px;
  background: var(--olive);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.service-icon svg { width: 18px; height: 18px; fill: #fff; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-bullets li {
  font-size: 0.875rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-bullets li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  margin-top: 16px;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 10px; color: var(--orange); }

/* ===================== SERVICIO 360 ===================== */
.s360 { background: var(--off-white); }

.s360-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.s360-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.s360-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  transition: opacity 0.35s ease;
}

.s360-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--navy);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-family: 'Barlow Condensed', sans-serif;
}
.s360-badge-float .big { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.s360-badge-float .small { font-size: 11px; opacity: 0.65; margin-top: 2px; letter-spacing: 0.5px; }

.s360-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.s360-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.s360-point:hover, .s360-point.active {
  border-color: var(--olive);
  background: rgba(139,154,46,0.06);
}
.s360-point.active .point-dot { background: var(--olive); }

.point-dot {
  width: 8px; height: 8px;
  background: var(--light-gray);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
  transition: background var(--transition);
}

.s360-point-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.4;
}
.s360-point-text small {
  display: block;
  font-size: 11px;
  color: var(--mid-gray);
  font-weight: 400;
  margin-top: 2px;
}

/* ===================== PROCESO ===================== */
.proceso { background: var(--navy); overflow: hidden; position: relative; }

.proceso::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(139,154,46,0.08);
  pointer-events: none;
}

.proceso .section-tag { color: var(--olive); }
.proceso .section-title { color: #fff; }
.proceso .section-subtitle { color: rgba(255,255,255,0.6); }

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
  position: relative;
}

.proceso-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: rgba(139,154,46,0.3);
  z-index: 0;
}

.proceso-step {
  padding: 24px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(139,154,46,0.15);
  border: 1px solid rgba(139,154,46,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--olive);
  margin: 0 auto 18px;
}

.proceso-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.proceso-step p {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ===================== VIDEO ===================== */
.video-section { background: var(--white); }

.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
}

.video-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,14,85,0.6);
  cursor: pointer;
  transition: opacity 0.3s;
}
.video-overlay.hidden { opacity: 0; pointer-events: none; }

.play-btn {
  width: 72px; height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.video-overlay:hover .play-btn { transform: scale(1.08); background: var(--orange-light); }

.play-btn svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }

.video-caption {
  text-align: center;
  margin-top: 22px;
  font-size: 0.875rem;
  color: var(--mid-gray);
}

/* ===================== TESTIMONIOS ===================== */
.testimonios { background: var(--off-white); }

.testimonios-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.testimonios-track::-webkit-scrollbar { display: none; }

.testimonio-card {
  flex: 0 0 calc(33.33% - 14px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  scroll-snap-align: start;
  transition: box-shadow var(--transition);
  min-width: 280px;
}
.testimonio-card:hover { box-shadow: var(--shadow-card); }

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.star {
  width: 14px; height: 14px;
  color: #F5A623;
  font-size: 14px;
  line-height: 1;
}

.testimonio-text {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonio-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.author-name { font-size: 13px; font-weight: 600; color: var(--dark); }
.author-sub { font-size: 11px; color: var(--mid-gray); }

.test-nav {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.test-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.test-btn:hover { background: var(--navy); border-color: var(--navy); }
.test-btn:hover svg { stroke: #fff; }
.test-btn svg { width: 16px; height: 16px; stroke: var(--charcoal); fill: none; stroke-width: 2; stroke-linecap: round; }

/* ===================== AGENDA ===================== */
.agenda-section { background: var(--white); }

.agenda-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.agenda-info { }

.agenda-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.agenda-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  width: 40px; height: 40px;
  background: rgba(139,154,46,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; stroke: var(--olive); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.info-text strong { font-size: 14px; font-weight: 600; color: var(--dark); display: block; }
.info-text span { font-size: 13px; color: var(--mid-gray); }

.agenda-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.form-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.5px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--olive); }

select.form-input { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.slots-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 10px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.slot {
  padding: 10px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  user-select: none;
}
.slot:hover { border-color: var(--olive); color: var(--olive); }
.slot.selected { background: var(--olive); border-color: var(--olive); color: #fff; }
.slot.disabled { opacity: 0.35; pointer-events: none; }

.form-submit { width: 100%; justify-content: center; font-size: 15px; padding: 14px; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}
.form-success svg { width: 52px; height: 52px; stroke: var(--olive); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 14px; }
.form-success h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; color: var(--mid-gray); }

/* ===================== FOOTER ===================== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-mark { }

.footer-desc {
  font-size: 13.5px;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.55);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background var(--transition);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
.social-btn:hover { background: var(--olive); color: #fff; }

.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ===================== WA FLOAT ===================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-btn {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  text-decoration: none;
  transition: transform var(--transition);
}
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 28px; height: 28px; fill: #fff; }

.wa-tooltip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--dark);
  font-weight: 500;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.25s;
  pointer-events: none;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== POPUP ===================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,14,85,0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.popup-overlay.visible { opacity: 1; pointer-events: all; }

.popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 420px;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.35s;
}
.popup-overlay.visible .popup-box { transform: translateY(0); }

.popup-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.popup-body { padding: 28px; }

.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--dark);
  z-index: 1;
}

.popup-header {
  position: relative;
}

.popup-tag {
  display: inline-block;
  background: rgba(190,91,21,0.12);
  color: var(--orange);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.popup-body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.5px;
}

.popup-body p {
  font-size: 13.5px;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.popup-inputs { display: flex; flex-direction: column; gap: 10px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .agenda-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 50;
  }
  nav.open a { font-size: 1.3rem; color: var(--dark); }
  .nav-mobile-toggle { display: block; z-index: 60; position: relative; }

  .s360-layout { grid-template-columns: 1fr; }
  .s360-img-wrap { display: none; }
  .s360-points { grid-template-columns: 1fr; }

  .proceso-steps { grid-template-columns: 1fr 1fr; }
  .proceso-steps::before { display: none; }

  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-actions { flex-direction: column; width: max-content; }

  .testimonio-card { flex: 0 0 85vw; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .slots-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .header-cta .btn:not(.btn-navy) { display: none; }
  .proceso-steps { grid-template-columns: 1fr; }
  .wa-float { bottom: 16px; right: 16px; }
}

/* ===================== UTILS ===================== */
.divider {
  width: 40px;
  height: 3px;
  background: var(--olive);
  border-radius: 2px;
  margin-bottom: 16px;
}

.flatpickr-calendar { font-family: 'Barlow', sans-serif !important; }
