:root {
  --navy: #011937;
  --navy-dark: #01152f;
  --navy-soft: #082b50;

  --blue: #1265ae;
  --blue-soft: #eaf4fd;

  --green: #4a972f;
  --green-soft: #eff8ea;

  --text: #102642;
  --muted: #62758d;

  --white: #ffffff;
  --background: #f8fbfe;
  --border: #d7e4ef;

  --danger: #b53333;
  --danger-soft: #fff0f0;

  --shadow:
    0 18px 48px rgba(1, 25, 55, 0.09);

  --shadow-strong:
    0 24px 70px rgba(1, 25, 55, 0.14);
}


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


html {
  scroll-behavior: smooth;
}


body {
  font-family: "Inter", sans-serif;

  background: white;

  color: var(--text);

  line-height: 1.6;
}


body.modal-open {
  overflow: hidden;
}


a {
  color: inherit;
  text-decoration: none;
}


button,
select,
input,
textarea {
  font: inherit;
}


button {
  cursor: pointer;
}


img {
  display: block;
  max-width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.topbar {
  height: 100px;

  display: grid;

  grid-template-columns:
    minmax(350px, 500px)
    1fr
    auto;

  align-items: center;

  padding: 0 4%;

  background: #011937;

  color: white;

  position: sticky;
  top: 0;

  z-index: 1000;
}


.brand {
  height: 100%;

  display: flex;
  align-items: center;
}


.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-lockup-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,.38);
  border-radius: 15px;

  background: rgba(255,255,255,.07);
  color: white;

  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.brand-lockup-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-lockup-copy strong {
  color: white;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.brand-lockup-copy span {
  color: rgba(255,255,255,.66);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}


.topbar nav {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 44px;
}


.topbar nav a {
  color: rgba(255,255,255,.92);

  font-size: 15px;
  font-weight: 600;

  position: relative;

  padding: 10px 0;
}


.topbar nav a::after {
  content: "";

  position: absolute;

  height: 2px;
  width: 0;

  left: 50%;
  bottom: 0;

  background: white;

  transform:
    translateX(-50%);

  transition:
    .2s ease;
}


.topbar nav a:hover::after {
  width: 100%;
}


.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;
  min-width: 0;
  height: 44px;

  padding: 0 18px;

  border: 0;
  border-radius: 10px;

  background: #ffffff;
  color: #011937;

  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  box-shadow: 0 4px 14px rgba(0, 0, 0, .10);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.login-btn:hover {
  background: #f2f7fc;
  color: #011937;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .14);
}

.login-btn::after {
  display: none !important;
}


.menu-btn {
  display: none;

  width: 52px;
  height: 52px;

  border-radius: 14px;

  border:
    1px solid rgba(255,255,255,.5);

  background:
    transparent;

  color: white;

  font-size: 23px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 620px;

  position: relative;

  overflow: hidden;

  display: grid;

  grid-template-columns:
    1.05fr
    .95fr;

  align-items: center;

  gap: 70px;

  padding:
    70px
    max(5%, calc((100vw - 1400px) / 2));

  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(58,123,184,.10),
      transparent 32%
    ),
    linear-gradient(
      120deg,
      #fff 0%,
      #fff 54%,
      #f4f8fc 100%
    );
}


.math-bg {
  position: absolute;

  inset: 0;

  pointer-events: none;
}


.math-bg span {
  position: absolute;

  color:
    rgba(28,101,166,.05);

  font-family:
    Georgia,
    serif;
}


.math-bg span:nth-child(1) {
  left: 2%;
  top: 62%;

  font-size: 85px;
}


.math-bg span:nth-child(2) {
  right: 3%;
  top: 52%;

  font-size: 50px;
}


.math-bg span:nth-child(3) {
  left: 45%;
  top: 14%;

  font-size: 42px;
}


.math-bg span:nth-child(4) {
  left: 52%;
  bottom: 5%;

  font-size: 76px;
}


.math-bg span:nth-child(5) {
  left: 49%;
  top: 47%;

  font-size: 68px;
}


.hero-copy {
  position: relative;

  z-index: 2;
}


.eyebrow {
  color: var(--blue);

  font-weight: 800;

  font-size: 13px;

  letter-spacing: .2em;

  margin-bottom: 20px;
}


.hero h1 {
  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(54px, 5vw, 80px);

  line-height: 1.03;

  letter-spacing: -.045em;

  color: var(--navy-dark);

  margin-bottom: 28px;
}


.hero h1 span {
  display: block;

  color: var(--blue);
}


.hero-text {
  max-width: 690px;

  font-size: 17px;

  line-height: 1.9;

  color: var(--muted);

  margin-bottom: 27px;
}


.hero-points {
  display: flex;

  gap: 28px;

  flex-wrap: wrap;

  font-size: 14px;

  font-weight: 700;

  color: var(--navy);

  margin-bottom: 30px;
}


.hero-actions {
  display: flex;

  gap: 16px;

  flex-wrap: wrap;
}


/* =========================================================
   BOTONES
========================================================= */

.btn {
  min-height: 52px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 0 27px;

  border-radius: 11px;

  border:
    1px solid transparent;

  font-weight: 700;

  transition:
    .2s ease;
}


.btn:hover {
  transform:
    translateY(-2px);
}


.btn.primary {
  background:
    linear-gradient(
      135deg,
      #083d71,
      #011937
    );

  color: white;

  box-shadow:
    0 10px 25px
    rgba(1,25,55,.18);
}


.btn.secondary {
  background: white;

  color: var(--navy);

  border-color:
    var(--navy);
}


.btn.small {
  min-height: 43px;

  padding:
    0 18px;

  font-size: 13px;
}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card {
  min-height: 450px;

  position: relative;

  z-index: 2;

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 42px;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f9fbfd
    );

  border:
    1px solid var(--border);

  box-shadow:
    var(--shadow-strong);

  overflow: hidden;
}


.hero-brand-lockup {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  width: min(520px, 88%);
  padding: 28px 30px;

  border: 1px solid #d3e1ee;
  border-radius: 20px;

  background: rgba(255,255,255,.84);

  box-shadow:
    0 15px 36px rgba(1,25,55,.08);
}

.hero-brand-mark {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;

  display: grid;
  place-items: center;

  border: 1px solid #9eb4ca;
  border-radius: 22px;

  background: #f4f8fc;
  color: var(--navy);

  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.hero-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hero-brand-copy strong {
  color: var(--navy-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.08;
}

.hero-brand-copy span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .20em;
}


.formula {
  position: absolute;

  font-family:
    Georgia,
    serif;

  font-style: italic;

  color:
    rgba(24,104,173,.28);

  font-size: 23px;
}


.formula-1 {
  top: 24px;
  left: 30px;
}


.formula-2 {
  top: 24px;
  right: 32px;
}


.formula-3 {
  bottom: 73px;
  left: 32px;
}


.hero-card-footer {
  position: absolute;

  bottom: 26px;

  color: var(--blue);

  font-size: 11px;

  letter-spacing: .23em;

  font-weight: 800;
}


/* =========================================================
   ACCESOS
========================================================= */

.quick-actions {
  width:
    min(1300px, 92%);

  margin:
    -18px auto 0;

  position: relative;

  z-index: 5;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  background: white;

  border-radius: 20px;

  border:
    1px solid #e8eef5;

  box-shadow:
    var(--shadow);

  overflow: hidden;
}


.quick-actions button {
  min-height: 145px;

  border: 0;

  border-right:
    1px solid #e4ebf2;

  background: white;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 20px;
}


.quick-actions button:last-child {
  border-right: 0;
}


.quick-actions button:hover {
  background:
    #f7fbff;
}


.quick-icon {
  width: 54px;

  height: 54px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background:
    var(--blue-soft);

  font-size: 25px;

  margin-bottom: 9px;
}


.quick-actions strong {
  color: var(--navy);

  margin-bottom: 3px;
}


.quick-actions small {
  color: var(--muted);

  max-width: 160px;
}


/* =========================================================
   SERVICIOS
========================================================= */

.services {
  padding:
    75px
    max(5%, calc((100vw - 1300px) / 2));

  background:
    linear-gradient(
      180deg,
      white,
      #f8fbfe
    );
}


.section-heading {
  max-width: 720px;

  margin:
    0 auto 42px;

  text-align: center;
}


.section-heading .eyebrow {
  margin-bottom: 7px;
}


.section-heading h2 {
  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(37px,4vw,50px);

  color: var(--navy-dark);

  margin-bottom: 10px;
}


.section-heading p {
  color: var(--muted);
}


.service-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 23px;
}


.service-card {
  min-height: 275px;

  padding: 28px;

  display: grid;

  grid-template-columns:
    65px 1fr 165px;

  gap: 18px;

  align-items: center;

  border-radius: 18px;

  background: white;

  box-shadow:
    0 12px 28px
    rgba(1,25,55,.04);
}


.service-card.individual {
  border:
    1px solid #9fc7e8;

  background:
    linear-gradient(
      135deg,
      white,
      #f5faff
    );
}


.service-card.group {
  border:
    1px solid #bfdcab;

  background:
    linear-gradient(
      135deg,
      white,
      #f1f9ed
    );
}


.service-icon {
  width: 60px;

  height: 60px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: 26px;

  background:
    linear-gradient(
      145deg,
      #1671c3,
      #114885
    );
}


.group .service-icon {
  background:
    linear-gradient(
      145deg,
      #5ba13c,
      #39882a
    );
}


.tag {
  display: inline-block;

  padding:
    4px 9px;

  border-radius: 50px;

  font-size: 10px;

  font-weight: 800;

  color: var(--blue);

  background:
    var(--blue-soft);
}


.group .tag {
  color: var(--green);

  background:
    var(--green-soft);
}


.service-info h3 {
  margin:
    8px 0 9px;

  color: var(--navy);

  font-size: 21px;
}


.service-info ul {
  list-style: none;

  font-size: 13px;

  color: var(--muted);

  line-height: 1.85;
}


.service-info li::before {
  content: "✓";

  margin-right: 6px;

  color: var(--blue);

  font-weight: 800;
}


.group .service-info li::before {
  color: var(--green);
}


.service-price {
  display: flex;

  flex-direction: column;

  align-items: flex-end;

  justify-content: center;

  text-align: right;

  height: 100%;

  padding-left: 18px;

  border-left:
    1px solid var(--border);
}


.service-price strong {
  color: var(--blue);

  font-size: 27px;
}


.group .service-price strong {
  color: var(--green);
}


.service-price span {
  color: var(--muted);

  font-size: 12px;

  margin:
    5px 0 15px;
}


.group-btn {
  color: var(--green);

  background: transparent;

  border:
    1px solid var(--green);
}


.price-note {
  color: var(--muted);

  font-size: 12px;

  text-align: center;

  margin-top: 17px;
}


/* =========================================================
   RESERVA
========================================================= */

.booking-section {
  padding:
    65px
    max(5%, calc((100vw - 1300px) / 2))
    75px;

  background:
    linear-gradient(
      145deg,
      #011937,
      #082b50
    );
}


.booking-heading {
  max-width: 750px;

  margin:
    0 auto 27px;

  text-align: center;

  color: white;
}


.booking-heading .eyebrow {
  color:
    #54a4ea;

  margin-bottom: 7px;
}


.booking-heading h2 {
  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(37px,4vw,48px);
}


.booking-heading p {
  color:
    rgba(255,255,255,.75);
}


.booking-card {
  background: white;

  border-radius: 17px;

  padding: 22px;

  box-shadow:
    0 20px 60px
    rgba(0,0,0,.18);
}


.steps {
  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  margin-bottom: 22px;
}


.step {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  color: #8190a1;

  font-size: 12px;

  font-weight: 600;
}


.step span {
  width: 28px;

  height: 28px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  border:
    1px solid #c8d5e2;

  background: white;
}


.step.active {
  color: var(--blue);
}


.step.active span {
  color: white;

  border-color:
    var(--blue);

  background:
    var(--blue);
}


.booking-content {
  display: grid;

  grid-template-columns:
    1fr 285px;

  gap: 25px;
}


.booking-form {
  display: grid;

  grid-template-columns:
    repeat(2,1fr);

  gap: 17px;

  align-content: start;
}


.field.full {
  grid-column:
    1 / -1;
}


.field label {
  display: block;

  color: var(--navy);

  font-size: 12px;

  font-weight: 700;

  margin-bottom: 5px;
}


.choice-row {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 9px;
}


.choice {
  height: 46px;

  border:
    1px solid #a9c5df;

  border-radius: 8px;

  background: white;

  color: var(--navy);

  font-size: 13px;

  font-weight: 700;
}


.choice.active {
  color: white;

  background:
    linear-gradient(
      145deg,
      #0c65b5,
      #083f76
    );

  border-color:
    transparent;
}


select,
input,
textarea {
  width: 100%;

  border:
    1px solid #c5d5e3;

  border-radius: 8px;

  background: white;

  color: var(--text);

  outline: none;
}


select,
input {
  height: 46px;

  padding:
    0 12px;
}


textarea {
  padding: 12px;

  resize: vertical;
}


select:focus,
input:focus,
textarea:focus {
  border-color:
    #5996cb;

  box-shadow:
    0 0 0 3px
    rgba(53,127,190,.1);
}


.hidden {
  display: none !important;
}


/* =========================================================
   CALENDARIO
========================================================= */

.calendar-area {
  margin-top: 10px;

  padding: 20px;

  border:
    1px solid var(--border);

  border-radius: 15px;

  background:
    #f8fbfe;
}


.calendar-header {
  display: grid;

  grid-template-columns:
    44px 1fr 44px;

  align-items: center;

  gap: 12px;

  margin-bottom: 15px;
}


.calendar-header > div {
  text-align: center;
}


.calendar-label {
  display: block;

  color: var(--blue);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .12em;
}


.calendar-header h3 {
  color: var(--navy);

  font-size: 20px;
}


.calendar-nav {
  width: 42px;

  height: 42px;

  border-radius: 10px;

  border:
    1px solid var(--border);

  background: white;

  color: var(--navy);

  font-size: 26px;
}


.calendar-weekdays {
  display: grid;

  grid-template-columns:
    repeat(7,1fr);

  gap: 6px;

  margin-bottom: 7px;
}


.calendar-weekdays span {
  text-align: center;

  color: #8090a2;

  font-size: 11px;

  font-weight: 700;
}


.calendar-days {
  display: grid;

  grid-template-columns:
    repeat(7,1fr);

  gap: 6px;
}


.calendar-day {
  min-height: 52px;

  border:
    1px solid transparent;

  border-radius: 10px;

  background: white;

  color: var(--navy);

  font-size: 13px;

  font-weight: 700;
}


.calendar-day.empty {
  visibility: hidden;
}


.calendar-day.disabled {
  color: #b5bfca;

  background: #f3f5f7;

  cursor: default;
}


.calendar-day.available {
  border-color:
    #c2ddf3;

  background:
    #eef7ff;
}


.calendar-day.available:hover {
  border-color:
    var(--blue);

  background:
    #dfefff;
}


.calendar-day.selected {
  color: white;

  border-color:
    var(--blue);

  background:
    linear-gradient(
      145deg,
      #0c65b5,
      #083f76
    );
}


.calendar-day.today {
  box-shadow:
    inset 0 0 0 2px
    rgba(18,101,174,.35);
}


.slots-panel {
  margin-top: 22px;

  padding-top: 18px;

  border-top:
    1px solid var(--border);
}


.slots-heading span {
  color: var(--blue);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .12em;
}


.slots-heading h4 {
  color: var(--navy);

  font-size: 17px;
}


.slots-grid {
  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 8px;

  margin-top: 13px;
}


.time-slot {
  min-height: 45px;

  border:
    1px solid #b9d3e9;

  border-radius: 9px;

  background: white;

  color: var(--navy);

  font-size: 12px;

  font-weight: 700;
}


.time-slot:hover {
  border-color:
    var(--blue);

  background:
    var(--blue-soft);
}


.time-slot.selected {
  color: white;

  background:
    linear-gradient(
      145deg,
      #0c65b5,
      #083f76
    );
}


.slots-placeholder {
  grid-column:
    1 / -1;

  color: var(--muted);

  font-size: 13px;

  padding:
    9px 0;
}


/* =========================================================
   RESUMEN
========================================================= */

.summary {
  padding: 20px;

  border-radius: 12px;

  color: white;

  background:
    linear-gradient(
      145deg,
      #011937,
      #082b50
    );

  box-shadow:
    0 10px 25px
    rgba(1,25,55,.18);

  align-self: start;

  position: sticky;

  top: 120px;
}


.summary-label {
  color: #c9e1f6;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .1em;
}


.summary h3 {
  font-size: 18px;

  margin:
    4px 0 12px;
}


.summary-row {
  display: flex;

  justify-content: space-between;

  gap: 15px;

  font-size: 12px;

  color:
    rgba(255,255,255,.75);

  padding:
    5px 0;
}


.summary-row strong {
  color: white;

  text-align: right;
}


.summary-total {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-top: 10px;

  padding-top: 12px;

  border-top:
    1px solid
    rgba(255,255,255,.18);
}


.summary-total strong {
  font-size: 24px;
}


#perPerson {
  display: block;

  color: #d2e5f6;

  font-size: 11px;

  margin-top: 4px;
}


.summary-button {
  width: 100%;

  margin-top: 14px;

  color: var(--navy);

  background: white;
}


/* =========================================================
   BENEFICIOS
========================================================= */

.benefits {
  max-width: 1300px;

  margin: auto;

  padding:
    70px 5%;

  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 22px;
}


.benefits article {
  padding: 24px;

  border-right:
    1px solid var(--border);
}


.benefits article:last-child {
  border-right: 0;
}


.benefits article > span {
  font-size: 28px;
}


.benefits h3 {
  color: var(--navy);

  margin:
    10px 0 6px;
}


.benefits p {
  color: var(--muted);

  font-size: 13px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
  padding:
    50px 20px;

  background:
    #011937;

  color: white;

  text-align: center;
}


.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  margin: 0 auto 20px;
}

.footer-brand-mark {
  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,.35);
  border-radius: 15px;

  background: rgba(255,255,255,.07);
  color: white;

  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 700;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-brand-copy strong {
  color: white;
  font-size: 17px;
}

.footer-brand-copy span {
  color: rgba(255,255,255,.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}


footer p {
  color:
    rgba(255,255,255,.82);
}


footer small {
  color:
    rgba(255,255,255,.45);
}


/* =========================================================
   MODAL GENERAL
========================================================= */

.modal-backdrop,
.reservation-modal-backdrop,
.reservation-success-backdrop {
  position: fixed;

  inset: 0;

  z-index: 3000;

  display: none;

  place-items: center;

  background:
    rgba(3,20,39,.72);

  backdrop-filter:
    blur(6px);

  padding: 20px;

  overflow-y: auto;
}


.modal-backdrop.show,
.reservation-modal-backdrop.show,
.reservation-success-backdrop.show {
  display: grid;
}


.modal {
  width:
    min(430px,100%);

  position: relative;

  padding: 34px;

  border-radius: 20px;

  text-align: center;

  background: white;

  box-shadow:
    0 30px 80px
    rgba(0,0,0,.26);
}


.modal-close,
.reservation-close {
  position: absolute;

  top: 12px;

  right: 16px;

  border: 0;

  background: transparent;

  color: var(--muted);

  font-size: 29px;
}


.modal-icon {
  font-size: 35px;
}


.modal h3 {
  color: var(--navy);

  margin:
    9px 0;
}


.modal p {
  color: var(--muted);

  margin-bottom: 20px;
}


/* =========================================================
   FORMULARIO RESERVA
========================================================= */

.reservation-modal {
  width:
    min(850px, 100%);

  max-height:
    calc(100vh - 40px);

  overflow-y: auto;

  position: relative;

  padding: 35px;

  border-radius: 22px;

  background: white;

  box-shadow:
    0 30px 90px
    rgba(0,0,0,.3);
}


.reservation-modal-heading {
  text-align: center;

  margin-bottom: 24px;
}


.reservation-modal-heading span {
  color: var(--blue);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: .15em;
}


.reservation-modal-heading h2 {
  font-family:
    "Playfair Display",
    Georgia,
    serif;

  color: var(--navy);

  font-size: 37px;

  margin:
    4px 0 6px;
}


.reservation-modal-heading p {
  color: var(--muted);
}


.reservation-selected {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 10px;

  padding: 16px;

  border-radius: 14px;

  background:
    var(--blue-soft);

  margin-bottom: 23px;
}


.reservation-selected div {
  text-align: center;
}


.reservation-selected small {
  display: block;

  color: var(--muted);

  font-size: 10px;

  text-transform: uppercase;

  font-weight: 700;
}


.reservation-selected strong {
  display: block;

  color: var(--navy);

  margin-top: 3px;
}


.reservation-form {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 17px;
}


.form-field.full,
.terms-box.full,
.reservation-error.full,
.reservation-actions.full {
  grid-column:
    1 / -1;
}


.form-field label {
  display: block;

  color: var(--navy);

  font-size: 12px;

  font-weight: 700;

  margin-bottom: 6px;
}


.form-field small {
  display: block;

  color: var(--muted);

  font-size: 11px;

  margin-top: 5px;
}


.terms-box {
  padding: 16px;

  border-radius: 12px;

  border:
    1px solid var(--border);

  background:
    #f8fafc;
}


.terms-checkbox {
  display: flex;

  gap: 11px;

  align-items: flex-start;

  cursor: pointer;
}


.terms-checkbox input {
  width: 18px;

  height: 18px;

  margin-top: 2px;

  flex:
    0 0 auto;
}


.terms-checkbox span {
  color: var(--text);

  font-size: 12px;

  line-height: 1.55;
}


#groupTermsText {
  color: var(--muted);

  font-size: 11px;

  margin:
    12px 0 0 29px;
}


.reservation-error {
  padding: 12px 14px;

  border-radius: 9px;

  color: var(--danger);

  background:
    var(--danger-soft);

  font-size: 12px;

  font-weight: 600;
}


.reservation-actions {
  display: flex;

  justify-content: flex-end;

  gap: 12px;

  padding-top: 5px;
}


/* =========================================================
   RESERVA CREADA
========================================================= */

.reservation-success-card {
  width:
    min(520px,100%);

  padding: 38px;

  border-radius: 22px;

  background: white;

  text-align: center;

  box-shadow:
    0 30px 90px
    rgba(0,0,0,.3);
}


.success-icon {
  width: 65px;

  height: 65px;

  display: grid;

  place-items: center;

  margin:
    0 auto 15px;

  border-radius: 50%;

  color: white;

  background:
    var(--green);

  font-size: 31px;

  font-weight: 800;
}


.success-label {
  color: var(--green);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .12em;
}


.reservation-success-card h2 {
  font-family:
    "Playfair Display",
    Georgia,
    serif;

  color: var(--navy);

  font-size: 34px;

  margin:
    5px 0 8px;
}


.reservation-success-card > p {
  color: var(--muted);

  font-size: 14px;
}


.success-summary {
  margin:
    23px 0;

  padding: 16px;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 12px;

  border-radius: 13px;

  background:
    #f5f8fb;
}


.success-summary div {
  display: flex;

  flex-direction: column;
}


.success-summary span {
  color: var(--muted);

  font-size: 10px;

  text-transform: uppercase;

  font-weight: 700;
}


.success-summary strong {
  color: var(--navy);

  font-size: 14px;
}


.countdown-box {
  padding: 17px;

  border:
    1px solid #f2d7a5;

  border-radius: 13px;

  background:
    #fff9ed;

  margin-bottom: 17px;
}


.countdown-box span {
  display: block;

  color: #8c6a28;

  font-size: 11px;

  font-weight: 700;
}


.countdown-box strong {
  display: block;

  color: #765210;

  font-size: 28px;

  margin-top: 2px;
}


.payment-next-btn {
  width: 100%;

  margin-bottom: 10px;
}


.reservation-success-card > small {
  color: var(--muted);

  font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .topbar {
    height: 88px;

    display: flex;

    justify-content: space-between;

    padding:
      7px 4%;
  }


  .brand-lockup-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-lockup-copy strong {
    font-size: 14px;
  }


  .menu-btn {
    display: block;
  }


  .login-btn {
    display: none;
  }


  .topbar nav {
    display: none;

    position: absolute;

    top: 88px;

    left: 0;

    right: 0;

    padding:
      16px 5%;

    flex-direction: column;

    gap: 0;

    align-items: stretch;

    background:
      #011937;
  }


  .topbar nav.open {
    display: flex;
  }


  .topbar nav a {
    padding:
      13px 0;
  }


  .hero {
    grid-template-columns:
      1fr;

    padding:
      65px 6%;
  }


  .quick-actions {
    grid-template-columns:
      1fr 1fr;
  }


  .service-grid {
    grid-template-columns:
      1fr;
  }


  .booking-content {
    grid-template-columns:
      1fr;
  }


  .summary {
    position: static;
  }


  .benefits {
    grid-template-columns:
      1fr 1fr;
  }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 600px) {

  .topbar {
    height: 78px;

    padding:
      6px 16px;
  }


  .brand {
    max-width:
      calc(100% - 65px);
  }


  .brand-lockup {
    gap: 10px;
  }

  .brand-lockup-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 13px;
    font-size: 18px;
  }

  .brand-lockup-copy strong {
    font-size: 13px;
  }

  .brand-lockup-copy span {
    font-size: 8px;
    letter-spacing: .12em;
  }

  .hero-brand-lockup {
    width: 100%;
    gap: 14px;
    padding: 20px;
  }

  .hero-brand-mark {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    border-radius: 18px;
    font-size: 24px;
  }

  .hero-brand-copy strong {
    font-size: 24px;
  }

  .hero-brand-copy span {
    font-size: 9px;
    letter-spacing: .14em;
  }


  .topbar nav {
    top: 78px;
  }


  .hero {
    padding:
      52px 21px 55px;

    gap: 35px;
  }


  .hero h1 {
    font-size: 47px;
  }


  .hero-points {
    display: grid;

    gap: 8px;
  }


  .hero-actions {
    flex-direction: column;
  }


  .hero-actions .btn {
    width: 100%;
  }


  .quick-actions {
    grid-template-columns:
      1fr;
  }


  .services {
    padding:
      60px 20px;
  }


  .service-card {
    display: block;

    padding: 23px;
  }


  .service-price {
    align-items: flex-start;

    text-align: left;

    border-left: 0;

    border-top:
      1px solid var(--border);

    padding:
      18px 0 0;

    margin-top: 18px;
  }


  .booking-section {
    padding:
      55px 17px;
  }


  .booking-card {
    padding: 17px;
  }


  .steps {
    grid-template-columns:
      1fr 1fr;

    gap: 12px;
  }


  .booking-form {
    display: block;
  }


  .field {
    margin-bottom: 15px;
  }


  .calendar-area {
    padding: 14px;
  }


  .calendar-day {
    min-height: 42px;

    font-size: 12px;
  }


  .slots-grid {
    grid-template-columns:
      1fr 1fr;
  }


  .benefits {
    grid-template-columns:
      1fr;

    padding:
      55px 20px;
  }


  .reservation-modal {
    padding:
      28px 18px;
  }


  .reservation-modal-heading h2 {
    font-size: 31px;
  }


  .reservation-selected {
    grid-template-columns:
      1fr;
  }


  .reservation-form {
    grid-template-columns:
      1fr;
  }


  .form-field.full,
  .terms-box.full,
  .reservation-error.full,
  .reservation-actions.full {
    grid-column:
      auto;
  }


  .reservation-actions {
    flex-direction: column-reverse;
  }


  .reservation-actions .btn {
    width: 100%;
  }


  .success-summary {
    grid-template-columns:
      1fr;
  }


  .footer-brand-lockup {
    gap: 11px;
  }

  .footer-brand-copy strong {
    font-size: 15px;
  }

}
/* =========================================================
   MÉTODODOS DE PAGO
========================================================= */

.payment-methods {
  margin-top: 20px;
}


.payment-method-title {
  margin-bottom: 12px;

  color: var(--navy);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: .12em;
}


.payment-methods .payment-next-btn {
  width: 100%;

  margin-bottom: 10px;
}


.payment-methods .btn.secondary {
  background: white;

  color: var(--navy);

  border:
    1px solid var(--navy);
}


.payment-methods .btn.secondary:hover {
  background:
    var(--blue-soft);
}


/* =========================================================
   TRANSFERENCIA BANCARIA
========================================================= */

.bank-transfer-box {
  margin-top: 20px;

  padding: 20px;

  border:
    1px solid var(--border);

  border-radius: 15px;

  background:
    #f8fbfe;

  text-align: left;
}


.bank-transfer-box .success-label {
  display: block;

  text-align: center;

  margin-bottom: 4px;
}


.bank-transfer-box h3 {
  text-align: center;

  color: var(--navy);

  font-size: 21px;

  margin-bottom: 17px;
}


.bank-details {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 10px;
}


.bank-details div {
  padding: 12px;

  border:
    1px solid #dce8f2;

  border-radius: 10px;

  background: white;
}


.bank-details span {
  display: block;

  color: var(--muted);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: .05em;

  text-transform: uppercase;

  margin-bottom: 3px;
}


.bank-details strong {
  display: block;

  color: var(--navy);

  font-size: 12px;

  line-height: 1.4;

  overflow-wrap: anywhere;
}


.transfer-warning {
  margin:
    15px 0;

  padding: 12px;

  border:
    1px solid #f2d7a5;

  border-radius: 10px;

  background:
    #fff9ed;

  color:
    #765210 !important;

  font-size: 11px !important;

  line-height: 1.5;

  text-align: center;
}


#transferMadeBtn {
  width: 100%;

  margin-bottom: 4px;
}


/* =========================================================
   ESTADO SELECCIONADO DE MÉTODO DE PAGO
========================================================= */

.payment-methods button.selected-payment {
  transform:
    translateY(-1px);

  box-shadow:
    0 7px 20px
    rgba(1,25,55,.16);
}


/* =========================================================
   RESPONSIVE PAGOS
========================================================= */

@media (max-width: 600px) {

  .bank-transfer-box {
    padding: 15px;
  }


  .bank-details {
    grid-template-columns:
      1fr;
  }


  .payment-methods .btn {
    width: 100%;

    min-height: 56px;

    padding:
      10px 14px;

    line-height: 1.3;
  }

}
/* =========================================================
   D&D CAPACITACIONES - INTEGRACIÓN PÚBLICA
========================================================= */

.topbar nav {
  gap: 30px;
}

.topbar nav .nav-dyd {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}

.topbar nav .nav-dyd:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.38);
}

.dyd-public-section {
  padding:
    78px
    max(5%, calc((100vw - 1300px) / 2))
    72px;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(18,101,174,.08),
      transparent 31%
    ),
    linear-gradient(
      180deg,
      #f8fbfe 0%,
      #ffffff 72%
    );
  border-top: 1px solid #edf3f8;
  border-bottom: 1px solid #e2ebf3;
}

.dyd-public-shell {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(520px, 1.22fr);
  gap: 68px;
  align-items: center;
}

.dyd-public-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
  align-content: center;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.96),
      rgba(237,245,252,.88)
    );
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dyd-public-visual::before,
.dyd-public-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(18,101,174,.09);
}

.dyd-public-visual::before {
  width: 360px;
  height: 360px;
}

.dyd-public-visual::after {
  width: 500px;
  height: 500px;
}

.dyd-public-logo-ring {
  width: 255px;
  height: 255px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 50%;
  background: white;
  border: 1px solid #cbddeb;
  box-shadow:
    0 24px 55px rgba(1,25,55,.13);
  position: relative;
  z-index: 2;
}

.dyd-public-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.dyd-public-visual-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  margin-top: 22px;
  position: relative;
  z-index: 2;
}

.dyd-public-visual-caption span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
}

.dyd-public-visual-caption strong {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: .28em;
}

.dyd-public-copy .eyebrow {
  margin-bottom: 11px;
}

.dyd-public-copy h2 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--navy);
  font-family:
    "Playfair Display",
    Georgia,
    serif;
  font-size: clamp(40px, 4.1vw, 57px);
  line-height: 1.03;
  letter-spacing: -.035em;
}

.dyd-public-copy h2 span {
  display: block;
  color: var(--blue);
}

.dyd-public-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.dyd-public-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0 28px;
}

.dyd-public-features article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 94px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255,255,255,.82);
}

.dyd-feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900;
}

.dyd-public-features strong,
.dyd-public-features span {
  display: block;
}

.dyd-public-features strong {
  color: var(--navy);
  font-size: 13px;
  margin-bottom: 2px;
}

.dyd-public-features span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

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

.dyd-primary-btn {
  box-shadow: 0 12px 28px rgba(18,101,174,.17);
}

.dyd-verify-btn {
  background: white;
}

.dyd-public-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 35px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  box-shadow: 0 12px 34px rgba(1,25,55,.05);
  overflow: hidden;
}

.dyd-public-strip > div {
  padding: 18px 20px;
  border-right: 1px solid var(--border);
}

.dyd-public-strip > div:last-child {
  border-right: 0;
}

.dyd-public-strip span,
.dyd-public-strip strong,
.dyd-public-strip small {
  display: block;
}

.dyd-public-strip span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}

.dyd-public-strip strong {
  margin: 3px 0 1px;
  color: var(--navy);
  font-size: 13px;
}

.dyd-public-strip small {
  color: var(--muted);
  font-size: 10px;
}

.footer-secondary-links {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin: 7px 0;
  color: rgba(255,255,255,.75);
  font-size: 12px;
}

.footer-secondary-links a:hover {
  color: white;
}


/* =========================================================
   D&D - RESPONSIVE
========================================================= */

@media (max-width: 1180px) {

  .topbar nav {
    gap: 20px;
  }

  .dyd-public-shell {
    grid-template-columns: .9fr 1.1fr;
    gap: 38px;
  }

  .dyd-public-features {
    grid-template-columns: 1fr;
  }

  .dyd-public-features article {
    min-height: 72px;
  }
}


@media (max-width: 900px) {

  .dyd-public-section {
    padding: 58px 5% 56px;
  }

  .dyd-public-shell {
    grid-template-columns: 1fr;
  }

  .dyd-public-visual {
    min-height: 360px;
  }

  .dyd-public-logo-ring {
    width: 210px;
    height: 210px;
  }

  .dyd-public-strip {
    grid-template-columns: 1fr 1fr;
  }

  .dyd-public-strip > div:nth-child(2) {
    border-right: 0;
  }

  .dyd-public-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }
}


@media (max-width: 600px) {

  .dyd-public-copy h2 {
    font-size: 39px;
  }

  .dyd-public-actions {
    flex-direction: column;
  }

  .dyd-public-actions .btn {
    width: 100%;
    text-align: center;
  }

  .dyd-public-strip {
    grid-template-columns: 1fr;
  }

  .dyd-public-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .dyd-public-strip > div:last-child {
    border-bottom: 0;
  }
}


/* =========================================================
   AJUSTE FINAL DE JERARQUÍA PÚBLICA
   ========================================================= */

/* El navbar mantiene una sola identidad principal.
   D&D se comporta como enlace normal del menú. */
.topbar nav a.nav-dyd,
.topbar nav a[href="#dyd"] {
  border: 0 !important;
  border-radius: 0 !important;
  padding: 8px 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Marca ID más sobria y menos competitiva visualmente */
.brand-lockup-mark {
  width: 52px !important;
  height: 52px !important;
  border-radius: 16px !important;
  border-width: 1px !important;
  background: rgba(255,255,255,.035) !important;
  box-shadow: none !important;
  font-size: 20px !important;
}

/* Entrada clara a una segunda área de servicios */
.dyd-section-intro {
  max-width: 1180px;
  margin: 0 auto 34px;
  text-align: center;
}
.dyd-section-intro h2 {
  margin: 8px 0 8px;
  color: #062750;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
}
.dyd-section-intro > p:last-child {
  margin: 0;
  color: #647b96;
  font-size: 18px;
}
@media (max-width: 1050px) {
  .topbar .login-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: auto;
    height: 44px;
    padding: 0 14px;
    margin-left: auto;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
    border-radius: 12px;
  }
}

@media (max-width: 600px) {
  .topbar {
    padding: 6px 12px;
    gap: 8px;
  }

  .dyd-brand-home img {
    width: 46px;
    height: 46px;
  }

  .dyd-brand-home-copy strong {
    font-size: 13px;
  }

  .dyd-brand-home-copy span {
    font-size: 7px;
  }

  .topbar .login-btn {
    height: 42px;
    padding: 0 10px;
    font-size: 11px;
  }

  .topbar .menu-btn {
    width: 48px;
    height: 48px;
  }
}