/* ─── GOOGLE FONTS ──────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap");

/* ─── RESET & BASE ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Open Sans",
    system-ui,
    -apple-system,
    sans-serif;
  color: #1a2e35;
  background: #fff;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ─── VARIABLES ────────────────────────────────────────── */
:root {
  --blue: #026172;
  --blue-mid: #014e5a;
  --teal: #7a9a85;
  --teal-light: #ff7300;
  --bg-light: #e6f2f4;
  --bg-teal: #edf3ef;
  --text: #1a2e35;
  --text-muted: #4a6572;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(2, 97, 114, 0.14);
  --radius: 12px;
}

/* ─── TIPOGRAFÍA ───────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  line-height: 1.25;
  font-family: "Montserrat", system-ui, sans-serif;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ─── LAYOUT ───────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 80px 0;
}
.section--bg-light {
  background: var(--bg-light);
}
.section--bg-teal {
  background: var(--bg-teal);
}
.section--dark {
  background: var(--blue);
  color: var(--white);
}
.section--dark p {
  color: rgba(255, 255, 255, 0.8);
}

.tag {
  display: inline-block;
  background: var(--teal-light);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.tag--blue {
  background: var(--blue);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.section-header {
  margin-bottom: 1rem;
}
.section-header--center {
  text-align: center;
}
.section-header--center p {
  max-width: 600px;
  margin: 0.8rem auto 0;
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 56px 0;
  }
}

/* ─── BOTONES ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: "Montserrat", sans-serif;
}
.btn--primary {
  background: var(--teal-light);
  color: #fff;
}
.btn--primary:hover {
  background: #e06600;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 115, 0, 0.38);
}
.btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ─── NAVBAR ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e0eaf3;
  height: 68px;
  display: flex;
  align-items: center;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navbar__logo {
  display: flex;
  align-items: center;
}
.navbar__logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.navbar__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.navbar__links a:hover {
  color: var(--teal);
}
.navbar__cta {
  background: var(--teal-light);
  color: #fff;
  padding: 0.55rem 1.4rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  transition: background 0.2s;
}
.navbar__cta:hover {
  background: #e06600;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .navbar__links,
  .navbar__cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #012f39 0%, #026172 55%, #013e47 100%);
  display: flex;
  align-items: center;
  padding-top: calc(68px + 4rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.hero__content {
  position: relative;
  color: #fff;
  max-width: 640px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero h1 span {
  color: var(--teal-light);
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}
.hero__stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-light);
  display: block;
}
.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── TARJETAS PROBLEMA ────────────────────────────────── */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 860px) {
  .problem-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

.problem-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.8rem 2rem 2.4rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(2, 97, 114, 0.07);
  border-top: 3px solid transparent;
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    border-top-color 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.problem-card:hover {
  box-shadow: 0 10px 36px rgba(2, 97, 114, 0.14);
  transform: translateY(-5px);
  border-top-color: var(--teal-light);
}
.problem-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.4rem;
  background: var(--bg-light);
}
.problem-card h3 {
  color: var(--blue);
  font-size: 1.05rem;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}
.problem-card p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: center;
}

/* ─── PASOS (timeline) ──────────────────────────────────── */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.steps-timeline::before {
  content: "";
  position: absolute;
  top: 21px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 2px;
  background: linear-gradient(to right, #026172, #56674c, #ab6d26, #ff7300);
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.25rem;
}
.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  border: 3px solid #fff;
}
.step-item:nth-child(1) .step-circle {
  background: #026172;
  box-shadow: 0 0 0 2px #026172;
}
.step-item:nth-child(2) .step-circle {
  background: #56674c;
  box-shadow: 0 0 0 2px #56674c;
}
.step-item:nth-child(3) .step-circle {
  background: #ab6d26;
  box-shadow: 0 0 0 2px #ab6d26;
}
.step-item:nth-child(4) .step-circle {
  background: #ff7300;
  box-shadow: 0 0 0 2px #ff7300;
}
.step-title {
  font-size: 0.97rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: var(--blue);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 760px) {
  .steps-timeline {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .steps-timeline::before {
    display: none;
  }
  .step-item {
    text-align: left;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
  }
  .step-circle {
    margin: 0;
    flex-shrink: 0;
  }
}

/* ─── PILARES (horizontal cards) ───────────────────────── */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3rem;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  background: #fff;
  border-radius: 14px;
  padding: 1.8rem 2rem;
  box-shadow: 0 2px 14px rgba(2, 97, 114, 0.07);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.pillar:hover {
  box-shadow: 0 6px 28px rgba(2, 97, 114, 0.13);
  transform: translateX(4px);
}
.pillar__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}
.pillar:nth-child(1) .pillar__icon-wrap {
  background: var(--bg-light);
}
.pillar:nth-child(2) .pillar__icon-wrap {
  background: var(--bg-teal);
}
.pillar:nth-child(3) .pillar__icon-wrap {
  background: #fff3e8;
}
.pillar__body {
  flex: 1;
}
.pillar__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--blue);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}
.pillar__desc {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--text-muted);
}
@media (max-width: 600px) {
  .pillar {
    padding: 1.4rem 1.2rem;
    gap: 1.2rem;
  }
}

/* ─── SEGMENTOS ────────────────────────────────────────── */
.segment-tabs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.segment-tab {
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  font-size: 0.95rem;
  transition: all 0.2s;
  font-family: inherit;
}
.segment-tab.active,
.segment-tab:hover {
  background: var(--blue);
  color: #fff;
}
.segment-panel {
  display: none;
}
.segment-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 700px) {
  .segment-panel.active {
    grid-template-columns: 1fr;
  }
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.2rem;
}
.check-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: "✓";
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 0.1rem;
}
.segment-visual {
  background: linear-gradient(145deg, var(--bg-light), var(--bg-teal));
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}
.segment-visual__icon {
  font-size: 4.5rem;
  margin-bottom: 1rem;
}
.segment-visual__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── TESTIMONIOS ──────────────────────────────────────── */
.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: 0 2px 12px rgba(26, 82, 118, 0.08);
}
.testimonial__text {
  font-size: 0.97rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial__author {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.9rem;
}
.testimonial__role {
  font-size: 0.8rem;
  color: #8fa8bc;
}
.stars {
  color: #f1c40f;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

/* ─── EQUIPO ───────────────────────────────────────────── */
.team-card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid #dde8f0;
}
.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 800;
}
.team-card__name {
  color: var(--blue);
  font-size: 1.05rem;
}
.team-card__role {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.2rem;
}

/* ─── CALENDARIO DE TURNOS ─────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 860px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
}
.booking-info h2 {
  color: var(--white);
}
.booking-info p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.8rem;
}
.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.booking-perk {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
.booking-perk::before {
  content: "✓";
  color: var(--teal-light);
  font-weight: 800;
  min-width: 20px;
}

.booking-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid #e4eff7;
}
.cal-header__title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue);
  text-transform: capitalize;
}
.cal-nav {
  background: none;
  border: 1.5px solid #ccd8e2;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s,
    border-color 0.15s;
  font-family: inherit;
}
.cal-nav:hover {
  background: var(--bg-light);
  border-color: var(--teal);
}
.cal-grid {
  padding: 0.9rem 1.1rem 1rem;
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.4rem;
}
.cal-weekdays span {
  font-size: 0.68rem;
  font-weight: 700;
  color: #8fa8bc;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b0c4d4;
  position: relative;
  transition: all 0.15s;
  font-family: inherit;
}
.cal-day.empty,
.cal-day.past {
  pointer-events: none;
}
.cal-day.past {
  color: #d0dde6;
}
.cal-day.available {
  color: var(--blue);
  cursor: pointer;
  background: #e6f2f4;
}
.cal-day.available:hover {
  background: var(--blue);
  color: #fff;
  transform: scale(1.1);
}
.cal-day.available .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-light);
  position: absolute;
  bottom: 3px;
}
.cal-day.available:hover .dot {
  background: rgba(255, 255, 255, 0.7);
}
.cal-day.selected {
  background: var(--teal-light) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(255, 115, 0, 0.35);
}
.cal-day.selected .dot {
  background: rgba(255, 255, 255, 0.8) !important;
}
.cal-day.today:not(.selected) {
  outline: 2px solid var(--teal-light);
  outline-offset: -2px;
}
.cal-legend {
  display: flex;
  gap: 1rem;
  padding: 0.7rem 1.1rem 0.9rem;
  border-top: 1px solid #e4eff7;
  flex-wrap: wrap;
}
.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #8fa8bc;
}
.cal-legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 3px;
}
.cal-legend-dot.green {
  background: #e6f2f4;
  border: 1.5px solid var(--blue);
}
.cal-legend-dot.blue {
  background: var(--teal-light);
}
.cal-legend-dot.grey {
  background: #e4eff7;
}

/* ─── PANEL DE HORARIOS ────────────────────────────────── */
.slot-panel {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #dde8f0;
  overflow: hidden;
  animation: fadeSlide 0.25s ease;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slot-panel__header {
  background: var(--bg-light);
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid #dde8f0;
}
.slot-panel__date {
  font-weight: 800;
  color: var(--blue);
  font-size: 0.97rem;
}
.slot-panel__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}
.slot-panel__body {
  padding: 1.1rem 1.2rem;
}
.slot-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #8fa8bc;
  margin: 0.3rem 0 0.6rem;
}
.slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}
.slot-btn {
  padding: 0.42rem 0.95rem;
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  border: 1.5px solid #ccd8e2;
  background: #fff;
  color: var(--text);
  font-family: inherit;
}
.slot-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--bg-light);
}
.slot-btn.selected {
  background: var(--teal-light);
  border-color: var(--teal-light);
  color: #fff;
}

/* ─── FORMULARIO DE TURNO ──────────────────────────────── */
.mini-form {
  background: #fff;
  border-radius: 14px;
  padding: 1.4rem;
  border: 1.5px solid #dde8f0;
  animation: fadeSlide 0.25s ease;
}
.mini-form__title {
  font-weight: 800;
  color: var(--blue);
  font-size: 0.93rem;
  margin-bottom: 1rem;
}
.mini-form__title em {
  color: var(--teal);
  font-style: normal;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  margin-bottom: 0.75rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}
.form-group input,
.form-group select {
  padding: 0.62rem 0.9rem;
  border: 1.5px solid #ccd8e2;
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  background: #fff;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(2, 97, 114, 0.12);
}
.btn--submit {
  width: 100%;
  background: var(--teal-light);
  color: #fff;
  padding: 0.88rem;
  font-size: 0.98rem;
  font-weight: 800;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition:
    background 0.2s,
    transform 0.2s;
  margin-top: 0.3rem;
  font-family: "Montserrat", sans-serif;
}
.btn--submit:disabled {
  background: #b0c4d4;
  cursor: not-allowed;
}
.btn--submit:not(:disabled):hover {
  background: #e06600;
  transform: translateY(-2px);
}
.form-note {
  font-size: 0.77rem;
  color: #8fa8bc;
  text-align: center;
  margin-top: 0.55rem;
}
.panel-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px dashed rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.panel-placeholder__icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
  opacity: 0.5;
}
.panel-placeholder p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}
.success-msg {
  display: none;
  background: #e6f2f4;
  border: 1.5px solid var(--blue);
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
  color: var(--blue);
  font-weight: 700;
  animation: fadeSlide 0.3s ease;
}
.success-msg .success-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* ─── FAQ ──────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid #dde8f0;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 0;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}
.faq-question .arrow {
  color: var(--teal);
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.faq-item.open .arrow {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding-bottom: 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.faq-item.open .faq-answer {
  display: block;
}

/* ─── CONTACTO ─────────────────────────────────────────── */
.contact-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item strong {
  color: #fff;
  display: block;
  margin-bottom: 0.2rem;
}
.contact-item span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

/* ─── FOOTER ───────────────────────────────────────────── */
footer {
  background: #0c2d42;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.88rem;
}
footer strong {
  color: rgba(255, 255, 255, 0.9);
}

/* ─── WHATSAPP FLOTANTE ────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ─── ANIMACIONES ──────────────────────────────────────── */
.anim {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

.os-modal-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.os-modal-wrapper.active {
  display: flex;
}

.os-modal-window {
  width: min(900px, 95vw);
  height: min(760px, 92vh);
  border-radius: 0px;
  overflow: hidden;
  background: #fff;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

#osFrame {
  width: 100%;
  height: 100%;
  border: none;
}

#osClose {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 20;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #fc0202;
  cursor: pointer;
  font-size: 18px;
}
