.header {
  background: linear-gradient(135deg, #fff3ce, #ffe4b2);
  padding: 40px 20px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.text-section {
  flex: 1;
  min-width: 320px;
  padding-right: 40px;
}

.text-section h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 20px;
}

.text-section h1 span {
  color: #f6a200;
}

.text-section p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.text-section .buttons {
  margin-top: 25px;
}

.btn {
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 4px;
  display: inline-block;
  margin-right: 10px;
}

.btn.green {
  background-color: #25d366;
  color: white;
}

.btn.outline {
  border: 2px solid #804000;
  color: #804000;
  background-color: transparent;
}

.image-section {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.image-section img {
  width: 100%;
  border-radius: 20px;
}

.info-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 40px);
}

.info-tag strong {
  font-size: 1.5rem;
  font-weight: 600;;
  color: #ffffff;
}

.info-tag .days {
  text-align: right;
  font-weight: bold;
  color: #ffffff;
}

.info-tag small {
  font-weight: normal;
  font-size: 0.85rem;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rounded-2xl {
    border-radius: 1rem;
}

.resumen-section {
  background: linear-gradient(to top, #ffeac8 0%, #fff8ed 30%, #fffdf8 100%);
  padding: 80px 20px 60px;
}

.resumen-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.resumen-header h2 {
  font-size: 2rem;
  color: #5a3200;
  margin-bottom: 10px;
}

.resumen-header p {
  font-size: 1.1rem;
  color: #9c6530;
  margin-bottom: 40px;
}

.resumen-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.resumen-box {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 30px 40px;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: left;
}

.resumen-box h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #b45700;
}

.resumen-box .icon {
  font-size: 1.5rem;
  margin-right: 10px;
}

.resumen-box ul {
  list-style: none;
  padding-left: 0;
}

.resumen-box ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.resumen-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.resumen-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.price-box {
  background: linear-gradient(to right, #0071eb, #1a2b49);
  color: white;
  border-radius: 16px;
  padding: 30px 20px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.price-box h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.price-box .price {
  font-size: 2rem;
  font-weight: bold;
}

.price-box p {
  margin: 10px 0 5px;
  font-size: 1rem;
}

.price-box small {
  font-size: 0.85rem;
}

.experiencias-section {
  background: linear-gradient(to top, #ffe8b5 0%, #fff3d1 100%);
  padding: 80px 20px;
  text-align: center;
}

.experiencias-container {
  max-width: 1200px;
  margin: auto;
}

.experiencias-container h2 {
  font-size: 2rem;
  color: #5a3200;
  margin-bottom: 10px;
}

.experiencias-container p {
  color: #9c6530;
  font-size: 1rem;
  margin-bottom: 50px;
}

.experiencias-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.experiencia-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.experiencia-card:hover {
  transform: translateY(-6px);
}

.card-image {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #ff7d1a;
  color: white;
  font-size: 20px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-content {
  padding: 20px;
  text-align: left;
}

.card-content h3 {
  color: #7d3600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.95rem;
  color: #444;
}



.cta-reserva {
  /*  background: linear-gradient(to right, #ff7d1a, #ffb74d); */
  background: linear-gradient(to bottom, #0d6efd, #0071eb);
  color: white;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cta-header h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.cta-header p {
  font-size: 1rem;
  color: #ffe5c3;
  /* margin-bottom: 40px; */
}

.cta-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

.cta-box {
  background: white;
  color: #4a2e00;
  border-radius: 18px;
  padding: 30px;
  width: 500px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  text-align: left;
}

.cta-box h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: #5a3200;
}

.cta-item {
  display: flex;
  align-items: center;
  background: #fff6e0;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 24px;
}

.cta-item .icon {
  font-size: 1.3rem;
  margin-right: 12px;
}

.cta-item .label {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.cta-item .value {
  margin: 2px 0 0;
  font-size: 0.95rem;
}

.btn-ws {
  display: block;
  background-color: #25d366;
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 35px;
  text-decoration: none;
  font-size: 1rem;
}

.nota {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 10px;
  color: #666;
}

.cta-benefits {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 300px;
}

.benefit {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  color: white;
}

.benefit h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: bold;
}

.benefit p {
  font-size: 0.95rem;
  color: #fff8f0;
}

.cta-item .info{
   width: 100% ;    
}
.justify-between {
    justify-content: space-between;
}

.text-amber-700 {
    --tw-text-opacity: 1;
    color: rgb(180 83 9 / var(--tw-text-opacity, 1));
}

.backdrop-blur-lg {
    --tw-backdrop-blur: blur(16px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.p-6 {
    padding: 1.5rem;
}
.bg-white\/10 {
    background-color: rgb(255 255 255 / 0.1);
}
.border-white\/20 {
    border-color: rgb(255 255 255 / 0.2);
    text-align: left;
}
.rounded-3xl {
    border-radius: 1.5rem;
}
.mb-4 {
    margin-bottom: 0.5rem !important;
}
.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.font-semibold {
    font-weight: 600;
}
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.mr-3 {
    margin-right: 0.75rem;
}
.h-6 {
    height: 1.5rem;
}
.w-6 {
    width: 1.5rem;
}
.text-amber-100 {
    --tw-text-opacity: 1;
    color: rgb(254 243 199 / var(--tw-text-opacity, 1));
}
.backdrop-blur-lg p{
    font-size: 1rem;
}

.no-border {
    border: none;
}

.form-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-backdrop {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.loader-content {
  position: relative;
  z-index: 10000;
}

.loader-icon {
  width: 80px;
  height: 80px;
  animation: rotate-pause 6s infinite;
}

/* Animación: 45° → pausa → 45° → pausa */
@keyframes rotate-pause {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden {
  display: none !important;
}

.reserva-pasos {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  
}

.pasos-linea {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding-top: 40px;
  padding-bottom: 20px;
}

.pasos-linea::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  border-radius: 10px;
   border: 2px solid white;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.4);
  z-index: 1;
  
}

.paso {
  position: absolute;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 2;
  text-align: center;
}

.paso:nth-child(1) { left: 0%; }
.paso:nth-child(2) { left: 50%; }
.paso:nth-child(3) { left: 100%; }

.etiqueta {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
}

.punto {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #00b3ff;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 10px rgba(0, 183, 255, 0.8),
              0 0 4px rgba(255, 255, 255, 0.6);
}


.tarifa-card{
    --primary:#0e4fa7;
    --accent:#f4b732;
    --ink:#0f172a;
    --muted:#64748b;
    --bg:#ffffff;
    background: var(--bg);
    border: 1px solid rgba(14,79,167,.12);
    border-radius: 20px;
    padding: 20px;
    max-width: 880px;
    margin: 24px auto;
    box-shadow: 0 10px 30px rgba(2,6,23,.06);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
  }
  .tarifa-inner{display:grid; gap:16px}
  .tarifa-header{display:flex; align-items:center; gap:12px}
  .tarifa-badge{
    width:18px; height:18px; border-radius:50%;
    background: conic-gradient(var(--accent), #ffd980 40%, #ffe8b3 60%, var(--accent));
    box-shadow: 0 0 0 6px rgba(244,183,50,.18);
  }
  .tarifa-header h2{
    font-size: clamp(1.1rem, 1.8vw + .6rem, 1.5rem);
    margin:0; font-weight:800; letter-spacing:.2px; color: var(--primary);
  }

  .tarifa-list{list-style:none; padding:0; margin:0; display:grid; gap:10px}
  .tarifa-list li{
    display:grid; grid-template-columns: 28px 1fr; align-items:start; gap:10px;
    padding:10px 12px; border-radius:12px; background: #f8fafc;
  }
  .tarifa-list li:nth-child(odd){background:#f4f7fb}
  .tarifa-list svg{
    width:22px; height:22px; fill: var(--primary);
    filter: drop-shadow(0 1px 0 rgba(14,79,167,.12));
    margin-top:1px;
  }
  .tarifa-list span{font-size:.98rem; line-height:1.35}
  .tarifa-note{
    background: linear-gradient(90deg, rgba(244,183,50,.18), rgba(244,183,50,.08));
    border: 1px dashed rgba(244,183,50,.6);
  }
  .tarifa-note svg{fill:#a26a00}
  .tarifa-note strong{color:#7a5000}

  .tarifa-footer{
    display:flex; justify-content:space-between; align-items:center;
    padding:12px 14px; border-radius:14px; background:#eef5ff; color:#0b3e86;
    border:1px solid rgba(14,79,167,.18);
    font-size:.95rem;
  }

  /* Responsivo */
  @media (min-width: 720px){
    .tarifa-list{grid-template-columns: 1fr 1fr; gap:12px}
    .tarifa-list li{grid-template-columns: 26px 1fr}
    .tarifa-footer{font-size:1rem}
  }

  /* Variante sobre fondo oscuro del sitio (opcional) */
  .dark .tarifa-card{
    --bg:#0b1220; --ink:#e5edf9; --muted:#b6c5dd; border-color:rgba(255,255,255,.08);
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
  }
  .dark .tarifa-list li{background: rgba(255,255,255,.06)}
  .dark .tarifa-list li:nth-child(odd){background: rgba(255,255,255,.08)}
  .dark .tarifa-footer{background: rgba(14,79,167,.15); color:#dbe9ff}

  .text-normal p, .text-normal ul{
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--bs-gray-700);
}

.faqs{
    --primary:#0e4fa7;
    --accent:#f4b732;
    --ink:#0f172a;
    --muted:#475569;
    --bg:#ffffff;
    max-width: 880px; margin: 32px auto; padding: 0 8px; color: var(--ink);
    font-family: system-ui, -apple-system, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  }
  .faqs h2{
    font-size: clamp(1.2rem, 1.6vw + .8rem, 1.6rem);
    font-weight: 800; color: var(--primary); margin: 0 0 12px 0;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .faqs h2::before{
    content:""; width: 12px; height: 12px; border-radius: 50%;
    background: conic-gradient(var(--accent), #ffd980 40%, #ffe8b3 60%, var(--accent));
    box-shadow: 0 0 0 6px rgba(244,183,50,.18);
  }

  .faq-item{
    background: #f8fafc; border: 1px solid rgba(14,79,167,.12);
    border-radius: 14px; margin: 10px 0; overflow: clip;
  }
  .faq-item summary{
    cursor: pointer; list-style: none;
    padding: 14px 16px; display: grid; grid-template-columns: 1fr 24px; align-items: center; gap: 12px;
    font-weight: 700; color: var(--ink);
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary svg{ width: 20px; height: 20px; fill: var(--primary); transition: transform .25s ease; }
  .faq-item[open] summary svg{ transform: rotate(180deg); }

  .faq-content{
    padding: 0 16px 16px 16px; color: var(--muted); line-height: 1.55;
    border-top: 1px dashed rgba(14,79,167,.18); background: #ffffff;
  }

  /* Hover/Focus */
  .faq-item summary:focus{ outline: 3px solid rgba(14,79,167,.35); outline-offset: 2px; border-radius: 10px; }
  .faq-item summary:hover{ background: #eef5ff; }

  /* Variante dark opcional */
  .dark .faqs{ color:#e6edf7 }
  .dark .faq-item{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12) }
  .dark .faq-content{ background: rgba(255,255,255,.03); color:#cbd5e1; border-top-color: rgba(255,255,255,.18) }
  .dark .faqs h2{ color:#dbe9ff }