@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --sol: #F5A623;
  --sol2: #FFD07A;
  --terra: #C8472A;
  --terra2: #E06040;
  --ocre: #E8925A;
  --noche: #1A0D05;
  --crema: #FFF8F0;
  --arena: #F5E6C8;
  --blanco: #FFFFFF;
  --gris: #6B5E54;
  --gris2: #9A9088;

  --font-primary: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

body.bg-piedra-light {
  background-color: var(--crema);
  color: var(--noche);
  font-family: var(--font-primary);
  line-height: 1.6;
}

.dnone {
  display: none !important;
}

/* ── NAV ── */
.res-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 248, 240, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(26, 13, 5, 0.05);
}

.res-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.res-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.res-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* ── STEPPER ── */
.res-stepper {
  display: flex;
  gap: 2rem;
}

.res-step {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gris2);
  transition: all 0.3s;
  text-decoration: none;
}

.res-step.done,
.res-step.active {
  color: var(--noche);
}

.res-exit {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--crema);
  border: 1px solid var(--arena);
  padding: 8px 15px;
  border-radius: 50px;
  color: var(--noche);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.res-exit:hover {
  background: var(--terra);
  color: white;
  border-color: var(--terra);
}

.res-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--arena);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.res-step.done .res-step-num,
.res-step.active .res-step-num {
  background: var(--sol);
  border-color: var(--sol);
  color: var(--noche);
}

.res-step-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.res-step-sublabel {
  display: block;
  font-size: 0.7rem;
  opacity: 0.7;
}

/* ── HERO ── */
.res-hero {
  position: relative;
  height: 35vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.res-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.res-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 13, 5, 0.4), rgba(26, 13, 5, 0.7));
  z-index: 1;
}

.res-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-light-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sol);
  margin-bottom: 1rem;
}

.hero-light-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-light-title span {
  font-style: italic;
  color: var(--sol);
}

/* ── MAIN CARD ── */
.res-main {
  padding: 4rem 1rem;
  background: var(--crema);
}

.res-content-wrap {
  max-width: 900px;
  margin: -100px auto 0;
  position: relative;
  z-index: 10;
  overflow: visible;
}

.res-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(26, 13, 5, 0.08);
  overflow: visible !important;
}

.res-card-body {
  padding: 3rem;
  overflow: visible;
}

/* ── FORMS & INPUTS ── */
.btn-light-primary {
  background: var(--terra);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-light-primary:hover {
  background: var(--terra2);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(200, 71, 42, 0.2);
}

.p1-header {
  text-align: center;
  margin-bottom: 3rem;
}

.p1-guests-label {
  margin-bottom: 1.5rem;
  text-align: left;
}

.p1-guests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.p1-guest-card {
  background: var(--blanco);
  border: 1px solid var(--arena);
  border-radius: 15px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(26, 13, 5, 0.02);
  position: relative;
  overflow: hidden;
}

.p1-guest-card:hover {
  border-color: var(--sol);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.1);
}

.p1-guest-icon {
  width: 45px;
  height: 45px;
  background: var(--crema);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  font-size: 1.4rem;
}

.p1-guest-body {
  flex: 1;
}

.p1-guest-label {
  display: block;
  font-weight: 700;
  color: var(--noche);
  font-size: 0.95rem;
}

.p1-guest-hint {
  font-size: 0.75rem;
  color: var(--gris2);
}

.p1-guest-select select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  appearance: none;
}

.p1-guest-val-display {
  font-weight: 800;
  color: var(--terra);
  font-size: 1.1rem;
}

/* ── DATES ── */
.p1-dates-wrap {
  margin-bottom: 3rem;
  text-align: left;
  position: relative;
}

.p1-date-input {
  background: var(--blanco);
  border: 1px solid var(--arena);
  border-radius: 15px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.p1-date-input:hover {
  border-color: var(--sol);
}

.p1-date-icon {
  width: 45px;
  height: 45px;
  background: var(--crema);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  font-size: 1.4rem;
}

.p1-date-body {
  flex: 1;
  position: static;
}

.p1-date-label {
  display: block;
  font-weight: 700;
  color: var(--noche);
  font-size: 0.8rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.inp-picker {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--noche);
  outline: none;
}

.inp-picker::placeholder {
  color: var(--gris2);
  opacity: 0.5;
}

/* ── TRUST & ACTION ── */
.p1-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--crema);
  border-radius: 15px;
  margin-bottom: 3rem;
}

.p1-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gris);
}

.p1-trust-item i {
  color: #2ecc71;
  font-size: 1rem;
}

.p1-trust-sep {
  width: 1px;
  height: 20px;
  background: var(--arena);
}

.p1-action {
  text-align: center;
}

.p1-action .btn-light-primary {
  width: 100%;
  justify-content: center;
  padding: 1.2rem;
  font-size: 1.1rem;
}

.btn-light-primary:disabled {
  background: var(--arena);
  color: var(--gris2);
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── FOOTER ── */
.res-footer {
  padding: 5rem 1rem;
  text-align: center;
  background: white;
  border-top: 1px solid rgba(26, 13, 5, 0.05);
}

.res-footer p {
  font-size: 0.9rem;
  color: var(--gris);
  margin-bottom: 1.5rem;
}

.res-footer p span {
  font-weight: 700;
  color: var(--noche);
}

.res-footer a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.res-footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
}

.res-footer-links a {
  font-size: 0.8rem !important;
}

.sentaury-credit--dark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px dashed var(--arena);
  padding-top: 3rem;
  margin-top: 1rem;
}

.sentaury-credit--dark p {
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 1rem;
}

.sentaury-divider {
  display: none;
  /* Quitamos el hr por defecto de powerBy */
}

.sentaury-credit {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  color: var(--gris) !important;
  transition: all 0.3s;
}

.sentaury-credit:hover {
  color: var(--terra) !important;
}

.sentaury-credit__icon {
  width: 24px;
  height: 24px;
  color: inherit;
}

.sentaury-credit__label {
  font-size: 0.8rem;
  font-weight: 500;
}

.sentaury-credit__brand {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.sentaury-credit__dot {
  width: 4px;
  height: 4px;
  background: var(--arena);
  border-radius: 50%;
}

/* Ajuste de ancho para el paso 2 para mayor comodidad */
.res-content-wrap:has(#cont_disponibilidad) {
  max-width: 1050px;
}

.res-content-wrap:has(#cont_disponibilidad) .res-card-body {
  padding: 1.5rem;
}

/* Ajuste de ancho para el paso 3 y 4 para mayor comodidad */
.res-content-wrap:has(.p3-checkout-grid),
.res-content-wrap:has(.p4-checkout-grid) {
  max-width: 1150px;
}

.res-content-wrap:has(.p3-checkout-grid) .res-card-body,
.res-content-wrap:has(.p4-checkout-grid) .res-card-body {
  padding: 2rem;
}

/* ── PASO 2: HABITACIONES ── */
.p2-header-light {
  text-align: center;
  margin-bottom: 2rem;
}

.p2-room-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.p2-room-card-light {
  display: grid;
  grid-template-columns: 320px 1fr 240px;
  background: var(--blanco);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 13, 5, 0.08);
  border: 1px solid var(--arena);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  height: 320px;
  /* Fixed height to prevent stretching */
}

.p2-room-card-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(26, 13, 5, 0.12);
}

/* Galería */
.p2-rc-gallery {
  position: relative;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  background: var(--crema);
}

.p2-rc-gallery-inner {
  height: 100%;
  width: 100%;
  position: relative;
}

.p2-rc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.p2-rc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
  z-index: 10;
}

.p2-rc-gallery:hover .p2-rc-nav {
  opacity: 1;
}

.p2-rc-nav.left {
  left: 15px;
}

.p2-rc-nav.right {
  right: 15px;
}

.p2-rc-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--terra);
  color: var(--blanco);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 5;
}

.p2-rc-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  pointer-events: none;
}

.p2-rc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
}

.p2-rc-dot.active {
  background: white;
  transform: scale(1.4);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Contenido */
.p2-rc-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--crema);
}

.p2-rc-tag {
  color: var(--terra);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.p2-rc-title {
  font-size: 1.4rem;
  color: var(--noche);
  margin: 0 0 0.8rem 0;
  line-height: 1.2;
}

.p2-rc-guests {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gris);
  font-size: 0.8rem;
  font-weight: 600;
}

.p2-rc-guests i {
  font-size: 1.1rem;
  color: var(--terra);
}

.p2-rc-desc {
  font-size: 0.8rem;
  color: var(--gris);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
}

.p2-rc-amenities {
  border-top: 1px solid var(--crema);
  padding-top: 1.2rem;
}

.p2-rc-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 1.2rem;
}

.p2-rc-icons i {
  width: 36px;
  height: 36px;
  background: var(--crema);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  font-size: 1.1rem;
  transition: 0.3s;
}

.p2-rc-icons i:hover {
  background: var(--sol);
  color: var(--noche);
}

.p2-rc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
}

.p2-rc-list li {
  font-size: 0.75rem;
  color: var(--gris);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.p2-rc-list li i {
  color: #2ecc71;
  font-size: 0.85rem;
}

.p2-rc-more {
  cursor: pointer;
  color: var(--terra);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}

.p2-rc-more:hover {
  color: var(--sol);
}

/* Precio y Acción */
.p2-rc-pricing {
  padding: 1.5rem;
  background: var(--crema_bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.p2-rc-price-label {
  display: block;
  font-size: 0.7rem;
  color: var(--gris2);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.p2-rc-price-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--noche);
  margin-bottom: 1.2rem;
}

.p2-rc-total-box {
  background: var(--blanco);
  border-radius: 15px;
  padding: 0.8rem;
  border: 1px dashed var(--arena);
  margin-bottom: 1.2rem;
}

.p2-rc-total-box span {
  display: block;
  font-size: 0.65rem;
  color: var(--gris);
  font-weight: 600;
  margin-bottom: 3px;
}

.p2-rc-total-box strong {
  font-size: 1.2rem;
  color: var(--terra);
  display: block;
}

.p2-rc-pricing .p2-rc-btn {
  width: 100%;
  padding: 0.7rem 0.5rem;
  font-size: 0.8rem;
  min-height: auto;
  height: auto;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.p2-rc-pricing .p2-rc-btn:hover {
  text-decoration: none;
}

.p2-empty-state {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--blanco);
  border-radius: 24px;
  border: 2px dashed var(--arena);
}

.p2-empty-state i {
  font-size: 4rem;
  color: var(--sol);
  margin-bottom: 1.5rem;
  display: block;
}

.p2-empty-state h3 {
  font-size: 1.8rem;
  color: var(--noche);
  margin-bottom: 1rem;
}

.p2-empty-state p {
  color: var(--gris);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1000px) {
  .p2-room-card-light {
    grid-template-columns: 300px 1fr;
  }

  .p2-rc-pricing {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 1.2rem 1.5rem;
  }

  .p2-rc-price-value {
    margin-bottom: 0;
  }

  .p2-rc-total-box {
    margin-bottom: 0;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .p2-room-card-light {
    grid-template-columns: 1fr;
    height: auto;
  }

  .p2-rc-gallery {
    height: 250px;
    min-height: 200px;
  }

  .p2-rc-content {
    border-right: none;
    border-bottom: 1px solid var(--crema);
  }

  .p2-rc-pricing {
    grid-column: auto;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* ── PASO 3: DATOS Y RESUMEN ── */
.p3-header-light {
  text-align: center;
  margin-bottom: 3rem;
}

.p3-checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Columna Formulario */
.p3-ck-form {
  background: var(--blanco);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--crema);
}

.p3-ck-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--crema);
}

.p3-ck-section-head h3 {
  font-size: 1.4rem;
  color: var(--noche);
  margin: 0;
  font-family: var(--font-serif);
}

.p3-ck-guest-search {
  margin-bottom: 2.5rem;
  background: var(--crema_bg);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid var(--arena);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-light-secondary {
  background: var(--blanco);
  color: var(--terra);
  border: 1px solid var(--terra);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.btn-light-secondary:hover {
  background: var(--terra);
  color: var(--blanco);
  transform: translateY(-2px);
}

.p3-res-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.p3-field-full {
  grid-column: span 2;
}

.p3-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p3-field label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gris2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.p3-field .inp-picker {
  background: var(--blanco);
  border: 1.5px solid var(--arena);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.p3-field .inp-picker:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(200, 71, 42, 0.08);
  background: white;
}

.p3-ck-billing-toggle {
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: var(--crema_bg);
  border-radius: 15px;
  border: 1px solid var(--arena);
}

.p3-ck-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.p3-ck-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  font-weight: 700;
  color: var(--noche);
  font-size: 0.9rem;
}

.p3-ck-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.p3-slider {
  width: 46px;
  height: 24px;
  background-color: var(--arena);
  transition: .4s;
  border-radius: 34px;
  position: relative;
}

.p3-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.p3-slider {
  background-color: var(--terra);
}

input:checked+.p3-slider:before {
  transform: translateX(22px);
}

.p3-ck-consents {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.p3-ck-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--gris);
  line-height: 1.4;
}

.p3-ck-checkbox input {
  display: none;
}

.p3-box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--arena);
  border-radius: 6px;
  position: relative;
  transition: 0.3s;
  flex-shrink: 0;
  background: white;
}

.p3-ck-checkbox input:checked+.p3-box {
  background: var(--terra);
  border-color: var(--terra);
}

.p3-ck-checkbox input:checked+.p3-box:after {
  content: '\e801';
  font-family: 'fontello';
  position: absolute;
  color: white;
  font-size: 11px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p3-ck-action .btn-light-primary {
  width: 100%;
  justify-content: center;
  text-decoration: none;
  padding: 1.2rem;
  font-size: 1rem;
}

/* Columna Resumen */
.p3-cks-card {
  background: var(--blanco);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--crema);
  position: sticky;
  top: 120px;
  box-shadow: 0 10px 30px rgba(26, 13, 5, 0.05);
}

.p3-cks-card h3 {
  font-size: 1.2rem;
  color: var(--noche);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--crema);
  padding-bottom: 1.2rem;
  font-family: var(--font-serif);
}

.p3-cks-room {
  display: flex;
  gap: 15px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--crema);
}

.p3-cks-room-img {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
}

.p3-cks-room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p3-cks-tag {
  font-size: 0.65rem;
  color: var(--terra);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
  letter-spacing: 0.05em;
}

.p3-cks-room-info h4 {
  font-size: 1.1rem;
  color: var(--noche);
  margin: 0 0 10px 0;
}

.p3-cks-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gris);
}

.p3-cks-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p3-cks-meta i {
  color: var(--terra);
  font-size: 1rem;
}

.p3-cks-totals {
  margin-bottom: 1.5rem;
}

.p3-cks-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--gris);
}

.p3-cks-row.total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--arena);
  color: var(--noche);
  font-weight: 800;
  font-size: 1.25rem;
}

.p3-cks-row.total strong {
  color: var(--terra);
}

.p3-cks-requests {
  border-top: 1px solid var(--crema);
  padding-top: 1.5rem;
}

.p3-cks-requests label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gris2);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.p3-cks-requests textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid var(--arena);
  border-radius: 12px;
  padding: 1rem;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  outline: none;
  transition: 0.3s;
}

.p3-cks-requests textarea:focus {
  border-color: var(--terra);
}

@media (max-width: 1000px) {
  .p3-checkout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .p3-cks-card {
    position: static;
    order: -1;
  }
}

@media (max-width: 600px) {
  .p3-res-form-grid {
    grid-template-columns: 1fr;
  }

  .p3-field-full {
    grid-column: auto;
  }
}

/* ── DATEPICKER (HOTEL-DATEPICKER ADAPTED) ── */
.datepicker {
  background-color: var(--blanco);
  border: 1px solid var(--arena);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(26, 13, 5, 0.12);
  color: var(--noche);
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 14px;
  z-index: 10001 !important;
  overflow: hidden;
  transition: all 0.3s ease;
  left: 50% !important;
  transform: translateX(-50%) !important;
  top: auto !important;
  margin-top: 10px;
}

.datepicker--closed {
  display: none;
}

.datepicker--open {
  display: block;
}

.datepicker__inner {
  padding: 2rem;
}

.datepicker__month {
  border-collapse: collapse;
  width: 100%;
}

.datepicker__month-caption {
  height: 4em;
  vertical-align: middle;
  border-bottom: 1px solid var(--crema);
}

.datepicker__month-name {
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.datepicker__week-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gris2);
  letter-spacing: 0.05em;
  padding: 10px 0;
}

.datepicker__month-day {
  padding: 12px 10px;
  border-radius: 10px;
  transition: all 0.2s ease;
  color: var(--gris);
  cursor: default;
}

.datepicker__month-day--valid {
  cursor: pointer;
  color: var(--noche);
}

.datepicker__month-day--invalid {
  color: var(--arena);
  opacity: 0.5;
}

.datepicker__month-day--disabled {
  color: var(--arena);
  cursor: not-allowed;
  position: relative;
}

.datepicker__month-day--selected {
  background-color: var(--sol) !important;
  color: var(--noche) !important;
  font-weight: 700;
}

.datepicker__month-day--hovering {
  background-color: var(--crema);
  color: var(--terra);
}

.datepicker__month-day--today {
  color: var(--terra);
  font-weight: 800;
  position: relative;
}

.datepicker__month-day--today::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--terra);
}

.datepicker__month-day--first-day-selected,
.datepicker__month-day--last-day-selected {
  background-color: var(--terra) !important;
  color: var(--blanco) !important;
}

.datepicker__month-button {
  cursor: pointer;
  background: var(--crema);
  border: 1px solid var(--arena);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.datepicker__month-button:hover {
  background: var(--sol);
  border-color: var(--sol);
  color: var(--noche);
}

.datepicker__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--crema);
}

.datepicker__info-text {
  font-size: 0.8rem;
}

.datepicker__info--selected-label {
  color: var(--gris2);
  font-weight: 600;
}

.datepicker__info-text--selected-days {
  color: var(--terra);
  font-weight: 700;
}

.datepicker__close-button {
  background: var(--terra);
  color: var(--blanco);
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.datepicker__close-button:hover {
  background: var(--terra2);
  transform: translateY(-2px);
}

.datepicker__tooltip {
  background: var(--noche);
  color: var(--blanco);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 10000;
}

.cl_stone {
  color: var(--gris);
}

@media (min-width: 768px) {
  .datepicker {
    width: 640px;
    position: absolute !important;
    bottom: calc(100% - 6px) !important;
    top: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .datepicker__months {
    display: flex;
    gap: 2rem;
    position: relative;
  }

  .datepicker__months::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: var(--crema);
    transform: translateX(-50%);
  }

  .datepicker__month--month2 {
    display: table;
  }
}

@media (max-width: 767px) {
  .datepicker {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 95vw !important;
    max-width: 340px !important;
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 0 100vh rgba(26, 13, 5, 0.4), 0 20px 50px rgba(0, 0, 0, 0.3);
  }

  .datepicker__month--month2 {
    display: none;
  }

  .datepicker__inner {
    padding: 1.2rem 0.8rem;
  }

  .datepicker__month-day {
    padding: 10px 5px;
    font-size: 12px;
  }

  .datepicker__topbar {
    margin-bottom: 1rem;
  }
}

/* ── RESPONSIVE ── */
/* ── PASO 4: PAGO ── */
.p4-header-light {
  text-align: center;
  margin-bottom: 3rem;
}

.p4-checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.p4-ck-form {
  background: var(--blanco);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--crema);
}

.p4-ck-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--crema);
}

.p4-ck-section-head h3 {
  font-size: 1.4rem;
  color: var(--noche);
  margin: 0;
  font-family: var(--font-serif);
}

.p4-payment-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gris2);
  font-size: 1.5rem;
}

.p4-logos-sep {
  width: 1px;
  height: 24px;
  background: var(--crema);
  margin: 0 5px;
}

.p4-payment-logos img {
  height: 20px;
  filter: grayscale(1);
  opacity: 0.7;
}

/* Mini visual de tarjeta */
.p4-card-visual {
  background: linear-gradient(135deg, #004481 0%, #043263 100%);
  border-radius: 18px;
  padding: 1.5rem;
  color: white;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 68, 129, 0.25);
}

.p4-card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.p4-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.p4-card-chip {
  width: 45px;
  height: 32px;
  background: linear-gradient(135deg, #d4af37 0%, #f5e6c8 100%);
  border-radius: 6px;
  position: relative;
}

.p4-card-chip-inner {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.p4-card-brand {
  font-size: 2rem;
  opacity: 0.9;
}

.p4-card-number-hint {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  position: relative;
  z-index: 2;
}

.p4-card-bottom {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.p4-card-meta-label {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 4px;
}

.p4-card-meta-val {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Form Group */
.p4-field-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.p4-field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gris2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.p4-field-label i {
  color: var(--terra);
}

.p4-stripe-wrapper {
  background: var(--blanco);
  border: 1.5px solid var(--arena);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.p4-stripe-wrapper.StripeElement--focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(200, 71, 42, 0.08);
}

.p4-inline-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
  padding: 1rem;
  background: var(--crema);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gris);
}

.p4-sec-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.p4-sec-item i {
  color: #2ecc71;
  font-size: 1rem;
}

.p4-sec-sep {
  opacity: 0.3;
}

.p4-security-badge {
  display: flex;
  gap: 15px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--arena);
}

.p4-security-badge i {
  font-size: 1.8rem;
  color: var(--terra);
  opacity: 0.8;
}

.p4-security-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--noche);
  margin-bottom: 5px;
}

.p4-security-badge p {
  font-size: 0.8rem;
  color: var(--gris);
  line-height: 1.5;
  margin: 0;
}

/* Columna Resumen */
.p4-cks-card {
  background: var(--blanco);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--crema);
  position: sticky;
  top: 120px;
  box-shadow: 0 10px 30px rgba(26, 13, 5, 0.05);
}

.p4-cks-card h3 {
  font-size: 1.2rem;
  color: var(--noche);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--crema);
  padding-bottom: 1.2rem;
  font-family: var(--font-serif);
}

.p4-cks-room {
  display: flex;
  gap: 15px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--crema);
}

.p4-cks-room-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.p4-cks-room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p4-cks-tag {
  font-size: 0.6rem;
  color: var(--terra);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
  letter-spacing: 0.05em;
}

.p4-cks-room-info h4 {
  font-size: 1rem;
  color: var(--noche);
  margin: 0 0 8px 0;
}

.p4-cks-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--gris);
}

.p4-cks-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p4-cks-meta i {
  color: var(--terra);
  font-size: 0.9rem;
}

.p4-cks-totals {
  margin-bottom: 0;
}

.p4-cks-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--gris);
}

.p4-cks-row.total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed var(--arena);
  color: var(--noche);
  font-weight: 800;
  font-size: 1.2rem;
}

.p4-cks-row.total strong {
  color: var(--terra);
}

.p4-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: p4spin 0.8s linear infinite;
  margin-right: 10px;
}

@keyframes p4spin {
  to {
    transform: rotate(360deg);
  }
}

#card-error {
  color: var(--terra);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 15px;
  text-align: center;
}

@media (max-width: 1000px) {
  .p4-checkout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .p4-cks-card {
    position: static;
    order: -1;
  }
}

.hidden {
  display: none !important;
}

.p4-payment-success {
  background: rgba(46, 204, 113, 0.1);
  color: #27ae60;
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  animation: p4SuccessPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.p4-payment-success i {
  font-size: 2.5rem;
  background: #2ecc71;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.p4-payment-success span {
  font-weight: 700;
  font-size: 1.1rem;
}

@keyframes p4SuccessPop {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ── PASO 5: VOUCHER ── */
.p5-voucher-cont {
  margin-top: 2rem;
}

.p5-voucher-card {
  background: var(--blanco);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 13, 5, 0.1);
  border: 1px solid var(--crema);
}

.p5-v-head {
  padding: 2.5rem;
  background: var(--crema);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--arena);
  text-align: left;
}

.p5-v-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.p5-v-brand img {
  max-height: 80px;
  filter: none !important;
}

.p5-v-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 5px 0;
  color: var(--noche);
  line-height: 1.2;
}

.p5-v-brand p {
  font-size: 0.8rem;
  color: var(--gris);
  margin: 0;
}

.p5-v-id {
  text-align: right;
  background: var(--blanco);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--arena);
}

.p5-v-id-lbl {
  display: block;
  font-size: 0.65rem;
  color: var(--gris2);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.p5-v-id-val {
  display: block;
  font-size: 1.2rem;
  color: var(--terra);
  font-weight: 800;
}

.p5-v-banner {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.p5-v-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p5-v-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 13, 5, 0.8), transparent);
}

.p5-v-banner-info {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
  z-index: 2;
  color: white;
  text-align: left;
}

.p5-v-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sol);
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.p5-v-banner-info h4 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 0;
}

.p5-v-content {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem 3rem;
  text-align: left;
}

.p5-v-section {
  margin-bottom: 0;
}

.p5-v-section h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gris2);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--crema);
  padding-bottom: 8px;
}

.p5-v-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.p5-data-item span {
  display: block;
  font-size: 0.7rem;
  color: var(--gris);
  margin-bottom: 4px;
}

.p5-data-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--noche);
  font-weight: 700;
}

.p5-v-dates {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p5-date-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.p5-date-icon {
  width: 42px;
  height: 42px;
  background: var(--crema);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  font-size: 1.3rem;
}

.p5-date-box span {
  display: block;
  font-size: 0.75rem;
  color: var(--gris);
  margin-bottom: 2px;
}

.p5-date-box strong {
  display: block;
  font-size: 1rem;
  color: var(--noche);
  font-weight: 700;
}

.p5-nights-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--crema);
  padding: 10px 18px;
  border-radius: 50px;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--terra);
}

.p5-v-total {
  grid-column: span 2;
  background: var(--crema);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 1rem;
  border: 1px solid var(--arena);
}

.p5-total-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.p5-total-wrap h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--noche);
  margin: 0;
  line-height: 1;
}

.p5-total-wrap h2 span {
  font-size: 1rem;
  color: var(--gris);
  font-weight: 400;
  margin-left: 8px;
}

.p5-verified {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.2);
  white-space: nowrap;
}

.p5-v-footer {
  padding: 3rem 2.5rem;
  background: var(--crema);
  border-top: 1px solid var(--arena);
  text-align: center;
}

.p5-v-footer span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gris2);
  font-weight: 700;
}

.p5-v-footer h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--noche);
  margin: 15px 0;
  letter-spacing: 0.1em;
}

.p5-v-footer p {
  font-size: 0.9rem;
  color: var(--gris);
  margin: 0;
}

.p5-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 4rem 0;
  flex-wrap: wrap;
}

.p5-actions .btn-light-primary,
.p5-actions .btn-light-secondary {
  min-width: 220px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.btn-light-primary {
  background: var(--terra);
  color: white;
  border: 1px solid var(--terra);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.btn-light-primary:hover {
  background: var(--noche);
  border-color: var(--noche);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.p5-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.p5-info-card {
  background: var(--blanco);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--arena);
  box-shadow: 0 10px 30px rgba(26, 13, 5, 0.05);
  text-align: left;
}

.p5-info-card h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--noche);
  margin: 10px 0 20px 0;
}

.p5-contact-list,
.p5-policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.p5-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gris);
}

.p5-contact-list i {
  color: var(--terra);
  font-size: 1.2rem;
}

.p5-policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gris);
  font-weight: 500;
  line-height: 1.5;
}

.p5-policy-list li::before {
  content: '✦';
  color: var(--sol);
  font-weight: 900;
}

@media (max-width: 900px) {
  .p5-v-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .p5-v-total {
    grid-column: span 1;
  }

  .p5-total-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .p5-v-head {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .p5-v-brand {
    flex-direction: column;
    text-align: center;
  }

  .p5-v-id {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .p5-v-banner {
    height: 180px;
  }

  .p5-v-banner-info {
    left: 1.5rem;
    bottom: 1.5rem;
  }

  .p5-v-banner-info h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .p4-card-visual {
    padding: 1rem;
  }

  .p4-card-number-hint {
    font-size: 1rem;
  }

  .p4-inline-security {
    flex-direction: column;
    gap: 8px;
  }

  .p4-sec-sep {
    display: none;
  }
}

@media (max-width: 768px) {
  .res-stepper {
    display: none;
  }

  .res-card-body {
    padding: 2rem 1.5rem;
  }

  .hero-light-title {
    font-size: 1.8rem;
  }

  .p1-guests-grid {
    grid-template-columns: 1fr;
  }

  .p1-trust {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .p1-trust-sep {
    display: none;
  }
}