/* =========================================================
   VARIABLES — Editar estas líneas por cliente
   ========================================================= */
:root {
  --accent:       #B5846A;   /* terracota rosado */
  --accent-light: #EBE0D8;   /* polvo */
  --accent-dark:  #8A6652;   /* tierra profunda */

  --bg:    #F8F4F0;
  --white: #FFFFFF;
  --text:  #1C1612;
  --muted: #9A8880;

  --font-heading: 'Playfair Display', serif;
  --font-accent:  'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

@media (max-width: 768px) {
  body { cursor: auto; }
}

/* =========================================================
   GRAIN OVERLAY
   ========================================================= */
.grain {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* =========================================================
   CURSOR
   ========================================================= */
.cursor {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 30px;
  height: 30px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 768px) {
  .cursor, .cursor-follower { display: none; }
}

/* =========================================================
   UTILIDADES
   ========================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.0;
}

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
}

/* =========================================================
   BOTONES
   ========================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--text);
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-bottom: 1px solid var(--text);
  transition: color 0.35s, border-color 0.35s, gap 0.35s;
}

.btn-primary:hover {
  color: var(--accent);
  border-color: var(--accent);
  gap: 20px;
}

.hero .btn-primary {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.hero .btn-primary:hover {
  color: var(--accent-light);
  border-color: var(--accent-light);
  gap: 20px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 17px 40px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* =========================================================
   NAVEGACIÓN
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 28px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(248, 244, 240, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .nav-container { padding: 0 24px; }
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--white);
  transition: color 0.4s;
}

.nav.scrolled .nav-logo { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav-links a {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
}

.nav.scrolled .nav-links a { color: var(--text); }

.nav-links a:hover,
.nav.scrolled .nav-links a:hover { color: var(--accent); }

.nav-links .nav-cta {
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 22px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.nav.scrolled .nav-links .nav-cta {
  color: var(--accent) !important;
  border-color: var(--accent);
}

.nav-links .nav-cta:hover,
.nav.scrolled .nav-links .nav-cta:hover {
  background: var(--accent);
  color: var(--white) !important;
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: background 0.3s;
}

.nav.scrolled .nav-toggle span { background: var(--text); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg);
  padding: 24px 48px;
  gap: 24px;
  border-top: 1px solid var(--accent-light);
}

.nav-mobile a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
}

.nav-mobile a:hover { color: var(--accent); }
.nav-mobile.open { display: flex; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { padding: 24px; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  height: 100svh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--text);
}

.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 64px;
  z-index: 2;
  color: var(--white);
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.hero-right-fade {
  position: absolute;
  inset: 0 auto 0 0;
  width: 35%;
  background: linear-gradient(to right, var(--text), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 5.5vw, 6.5rem);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--white);
}

.hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 52px;
  letter-spacing: 0.02em;
}

.hero-scroll {
  position: absolute;
  bottom: 80px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-scroll-line {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollAnim 2.4s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%   { top: -100%; }
  100% { top: 100%; }
}

.hero-scroll span {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    position: relative;
  }

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

  .hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28,22,18,0.65);
    z-index: 1;
  }

  .hero-right-fade { display: none; }

  .hero-left {
    position: relative;
    z-index: 2;
    padding: 100px 32px 80px;
    min-height: 100svh;
  }

  .hero-scroll {
    right: 32px;
    bottom: 64px;
  }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  overflow: hidden;
  background: var(--text);
  padding: 16px 0;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.marquee-inner {
  display: inline-flex;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-inner:hover {
  animation-play-state: paused;
}

.marquee-inner span {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(235,224,216,0.45);
  padding-right: 64px;
}

.marquee-inner em {
  color: var(--accent);
  font-style: normal;
  margin: 0 6px;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   SERVICIOS
   ========================================================= */
.servicios {
  padding: 128px 0;
  background: var(--bg);
}

.servicios-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
}

.servicio-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 44px 0;
  border-bottom: 1px solid var(--accent-light);
  transition: padding-left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.servicio-item:nth-child(-n+2) {
  border-top: 1px solid var(--accent-light);
}

.servicio-item:hover {
  padding-left: 20px;
}

@media (max-width: 900px) {
  .servicios-list {
    grid-template-columns: 1fr;
  }
  .servicio-item:nth-child(2) {
    border-top: none;
  }
}

@media (max-width: 768px) {
  .servicio-item {
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding: 32px 0;
  }
  .servicio-arrow { display: none; }
  .servicio-item:hover { padding-left: 0; }
}

.servicio-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.05em;
  align-self: start;
  padding-top: 6px;
}

.servicio-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s;
  letter-spacing: -0.01em;
}

.servicio-item:hover .servicio-body h3 { color: var(--accent); }

.servicio-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

.servicio-arrow {
  font-size: 1rem;
  color: var(--accent-light);
  transition: color 0.35s, transform 0.35s;
  padding-right: 8px;
}

.servicio-item:hover .servicio-arrow {
  color: var(--accent);
  transform: translateX(8px);
}

/* =========================================================
   NOSOTRAS
   ========================================================= */
.nosotras {
  padding: 128px 0;
  background: var(--white);
}

.nosotras-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

@media (max-width: 900px) {
  .nosotras-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
}

.nosotras-img {
  position: relative;
  height: 640px;
}

.nosotras-img img {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.nosotras-img-deco {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 130px;
  height: 130px;
  border: 1px solid var(--accent-light);
  z-index: 0;
  pointer-events: none;
}

.nosotras-img-deco::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 48px;
  height: 48px;
  background: var(--accent-light);
}

@media (max-width: 900px) {
  .nosotras-img { height: 380px; }
  .nosotras-img-deco { display: none; }
}

.nosotras-content { padding: 16px 0; }

.nosotras-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-dark);
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--accent-light);
  line-height: 1.55;
}

.nosotras-text {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.88;
  margin-bottom: 8px;
}

.nosotras-stats {
  display: flex;
  gap: 56px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--accent-light);
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* =========================================================
   GALERÍA
   ========================================================= */
.galeria {
  padding: 128px 0 96px;
  background: var(--bg);
}

.galeria-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 48px 36px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--accent-light);
}

.galeria-track::-webkit-scrollbar { height: 2px; }
.galeria-track::-webkit-scrollbar-track { background: var(--accent-light); }
.galeria-track::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }
.galeria-track:active { cursor: grabbing; }

@media (max-width: 768px) {
  .galeria-track { padding: 0 24px 32px; }
}

.galeria-item {
  flex: 0 0 300px;
  height: 420px;
  overflow: hidden;
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .galeria-item { flex: 0 0 240px; height: 320px; }
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.65s ease;
  pointer-events: none;
  filter: saturate(0.82);
}

.galeria-item:hover img {
  transform: scale(1.06);
  filter: saturate(1);
}

/* =========================================================
   RESEÑAS
   ========================================================= */
.resenas {
  padding: 128px 0;
  background: var(--white);
}

.resenas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

@media (max-width: 900px) {
  .resenas-grid { grid-template-columns: 1fr; max-width: 480px; }
}

.resena-card {
  position: relative;
}

.resena-card::before {
  content: '\201C';
  font-family: var(--font-accent);
  font-size: 5.5rem;
  line-height: 0.8;
  color: var(--accent-light);
  display: block;
  margin-bottom: 16px;
}

.stars {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.resena-card p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.08rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.72;
  margin-bottom: 24px;
}

.resena-nombre {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =========================================================
   CONTACTO
   ========================================================= */
.contacto {
  padding: 128px 0;
  background: var(--bg);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}

@media (max-width: 768px) {
  .contacto-grid { grid-template-columns: 1fr; gap: 48px; }
}

.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-item p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.75;
}

.contacto-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.cta-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.mapa {
  height: 300px;
  overflow: hidden;
}

.mapa iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(0.88) sepia(8%);
  display: block;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--text);
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.14em;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* =========================================================
   WHATSAPP FLOTANTE
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 24px rgba(37,211,102,0.34);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37,211,102,0.48);
}

@media (max-width: 768px) {
  .whatsapp-float { bottom: 24px; right: 24px; width: 52px; height: 52px; }
}

/* =========================================================
   FORMULARIO DE RESERVAS
   ========================================================= */
.reserva-form-wrap { position: relative; }

.reserva-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 28px; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.optional {
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--accent-light);
  text-transform: none;
  letter-spacing: 0;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--accent-light);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text);
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A8880' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-group textarea {
  resize: none;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(154, 136, 128, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--accent);
}

.form-group input.error { border-bottom-color: #EF4444; }

.field-error {
  font-size: 0.75rem;
  color: #EF4444;
  margin-top: -4px;
}

.form-hint {
  font-size: 0.72rem;
  color: var(--muted);
}

.form-error-global {
  font-size: 0.83rem;
  color: #EF4444;
}

/* File upload */
.file-label-wrap {
  display: block;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.file-label-wrap:hover { border-bottom-color: var(--accent); }

.file-label {
  font-size: 0.97rem;
  color: rgba(154, 136, 128, 0.7);
  transition: color 0.3s;
}

.file-label.has-file { color: var(--accent); }

.file-hint {
  font-size: 0.8em;
  color: var(--muted);
}

.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

/* Submit */
.btn-submit {
  align-self: flex-start;
  margin-top: 12px;
  cursor: pointer;
}

.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-loading {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 0;
}

/* Estado éxito */
.reserva-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 48px 0;
}

.success-check {
  width: 56px;
  height: 56px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
}

.reserva-success h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.reserva-success p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
