*, *::before, *::after { 
  box-sizing: border-box; 
  font-family: 'Architects Daughter', cursive;
}

html, body { 
  height: 100%; 
}

body {
  margin: 0;  
  color: #1b1b1b;
  background: #fff;
  padding-top: var(--header-h);
}

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

:root{
  --header-h: 64px;
  --accent: #222;
  --accent-2: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 18px;
  --fade: 400ms ease;
}

.header {
  position: fixed;                 
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;                   
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 14px;
  backdrop-filter: saturate(180%) blur(10px);
  background: color-mix(in oklab, #000 20%, transparent);
  color: var(--accent-2);
}

.brand { 
  font-weight: 700; 
  letter-spacing: .5px; 
}

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

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 14px;
  opacity: .9;
}

.nav a.active { 
  background: rgba(255,255,255,.18);
  opacity: 1;
}

.nav-bus {
  display: flex;
  flex-direction: row;      
  justify-content: center;  
  align-items: center;      
  gap: 15px;                
}


.burger { 
  display: none; 
}

.section {
  position: relative;
  height: 100dvh;                  
  display: grid;
  place-items: center;
  /*isolation: isolate;*/
  overflow: clip;
}

.section-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
  padding: 0 20px;
}

.title {
  font-size: clamp(28px, 6vw, 64px);
  margin: 6px 0 10px;
  letter-spacing: .5px;
}

.subtitle {
  font-size: clamp(14px, 2.5vw, 20px);
  opacity: .95;
}

.date {
  font-size: clamp(14px, 2.5vw, 50px);
}

.bg {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
  transform: scale(1.03);
  opacity: 0; transition: opacity var(--fade), transform 900ms ease;
  filter: saturate(105%) contrast(102%) brightness(98%);
}

.section.is-visible .bg { 
  opacity: 1; 
  transform: scale(1); 
}

.overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,.15));
  opacity: .9;
}

.block {
  padding: 44px 18px;
  max-width: 980px; margin: 0 auto;
}

.card {
  background: #fff; color: #222; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(18px, 3.5vw, 28px);
}

.card h2 { margin: 0 0 10px; font-size: clamp(20px, 3.4vw, 28px); }

.muted { 
  color: #666;
  text-align: center;
}

footer {
  padding: 28px 18px 48px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.botonForm {
padding: 10px 18px;
border: none;
color: #ffffff;
border-radius: 999px;         
background: rgba(255, 255, 255, 0.18);
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: background 0.3s ease, transform 0.2s ease;
}

.botonForm:hover {
background: rgba(255, 255, 255, 0.3);
transform: scale(1.05);
}

.botonForm:active {
transform: scale(0.97);
}

.botonCerrar {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;     
  height: 40px;     
  border-radius: 50%; 
  padding: 0;      
  display: flex;
  align-items: center;
  justify-content: center; 
  font-size: 14px; 
}


.botonBus {
  padding: 10px 18px;
  border: none;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4e50, #f9d423); 
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.botonBus:hover {
  background: linear-gradient(135deg, #ff6b6b, #ffd34e);
  transform: scale(1.07);
  box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

.botonBus:active {
  transform: scale(0.95);
}

.ubiWindow {
  display: none;              
  position: relative;         
  z-index: 10;                
  max-width: 600px;
  margin: 10px auto;         
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 12px;
  color: rgb(255, 255, 255);
  text-align: center;
  max-height: 80vh;           
  overflow-y: auto;          
}

.ubiWindow img{
  max-width: 150px;
  max-height: 150px;
}

.ubiSlideImg {
  aspect-ratio: 4/3;  
  width: 100%;       
  height: auto;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  margin-top: 20px;
  border-radius: 10px;
}

.ubiSlideImg:hover {
  transform: scale(1.80); 
  z-index: 2;           
}

.inputForm {
  display: block;
  width: 80%;
  margin: 10px auto;
  padding: 10px 15px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.512);
  color: #fff;
  font-size: 18px;
  text-align: center;
  outline: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.inputForm::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.inputForm:focus {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.02);
}

/* ====== Apariencia estilo captura (testimonios) ====== */
.opiniones{
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

/* Cabecera: título turquesa + flechas a la derecha */
.op-header{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom: 18px;
}
.op-title{
  margin:0;
  font-weight:800;
  letter-spacing:.5px;
  text-transform:uppercase;
  font-size: clamp(22px, 3.6vw, 44px);
  color:#0d90a8; /* turquesa similar al de la captura */
}
.op-controls{ display:flex; gap:16px; }
.op-btn{
  width:44px; height:44px; border:none; cursor:pointer;
  background:#0d90a8; color:#fff; font-size:20px; line-height:1;
  border-radius:8px; display:grid; place-items:center;
  transition: filter .2s ease, transform .12s ease;
}
.op-btn:hover{ filter:brightness(0.95); transform:translateY(-1px); }

/* Fila de tarjetas */
.op-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.op-card {
  max-width: 350px;      /* antes probablemente era 350-400px */
  padding: 12px;         /* reduce el espacio interno */
  gap: 10px;             /* menos separación entre texto e imagen */
  background: rgba(0,0,0,0.45); /* más transparente */
  border-radius: 10px;
}

.op-card h2 {
  font-size: 18px;       /* antes era mayor */
  margin-bottom: 6px;
}

.op-card p {
  font-size: 14px;       /* texto más pequeño */
  line-height: 1.4;
}

/* Imagen más compacta */
.op-card img,
.ubiSlideImg {
  height: 110px;         /* antes ~150px o más */
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 8px;
}


/* Texto principal (cita) */
.op-quote{
  margin:0;
  color:#374151; /* gris oscuro legible */
  font-size: 18px;
  line-height: 1.7;
  quotes: "“" "”" "‘" "’";
}
.op-quote:before{ 
  content: open-quote; 
  color:#9ca3af; 
  font-size:28px; 
  margin-right:6px; }
.op-quote:after{ 
  content: close-quote; 
  color:#9ca3af; 
  font-size:28px; 
  margin-left:6px; }

/* === Flechas externas para los slides de ubicación === */

/* El contenedor principal no debe recortar nada */
#ubicacionSeccion {
  position: relative;
  overflow: visible;
}

#alojamientoSeccion {
  position: relative;
  overflow: visible;
}

/* Botones de navegación externos */
.navSlide {
  position: absolute; /* fijas en pantalla */
  top: 60%;        /* centradas verticalmente */
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  color: #fdfdfd;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
  z-index: 3000;
  transition: all .2s ease;
}

/* Hover y active */
.navSlide:hover {
  filter: brightness(1.2);
  transform: translateY(-50%) scale(1.1);
}
.navSlide:active {
  transform: translateY(-50%) scale(0.95);
}

/* Posición lateral */
.navPrev {
  left: calc(61% - 420px); /* desplaza respecto al centro del slide */
}
.navNext {
  right: calc(61% - 420px);
}


@media (max-width: 1024px){
  .op-row { 
    grid-template-columns: repeat(2, 1fr); 
  }
}


@media (max-width: 900px){

  body {
    font-size: 18px;     
  }

  .title {
    font-size: clamp(30px, 8vw, 70px);
  }

  .subtitle, .muted, p {
    font-size: 17px;
    line-height: 1.55;
  }

  
  .navSlide {
    position: absolute !important;
    bottom: 20px !important;   
    top: auto !important;
    transform: none !important;
    width: 44px;
    height: 44px;
    font-size: 24px;
    backdrop-filter: blur(4px);
    z-index: 9999;
  }

  .navPrev { left: 25px !important; }
  .navNext { right: 25px !important; }
  
   .nav-bus {
    flex-direction: column;      
    gap: 15px;                   
  }

  .nav-bus a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .botonBus {
    width: 100%;                
  }

}


@media (max-width: 840px){

  /* Mostrar hamburguesa */
  .burger { 
    display: inline-flex; 
    gap: 8px;
    align-items: center;
    cursor: pointer; 
  }

  /* Navegación móvil */
  .nav {
    position: fixed;
    inset: calc(var(--header-h) + 10px) 10px auto;
    background: #111;
    color: #fff;
    border-radius: 14px;
    padding: 10px;
    transform: scale(.98);
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    z-index: 1100;
  }

  .nav.open { 
    transform: scale(1); 
    opacity: 1; 
    pointer-events: auto; 
  }

  .nav a { 
    width: 100%; 
    padding: 12px; 
    border-radius: 10px; 
  }
}


@media (max-width: 640px){
  .op-row { 
    grid-template-columns: 1fr; 
  }
  .op-controls{ gap: 10px; }
  .op-btn{ width: 40px; height: 40px; }
}




