








/* --- Variables de Color y Estilos Base --- */
:root {
  --primary-color: #b58b5f;
  --primary-color-dark: #9e764f;
  --background-color: #f9f9f9;
  --container-bg: #ffffff;
  --text-color: #333;
  --border-color: #e0e0e0;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --border-radius: 8px;
}

body {
  background-color: var(--background-color);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}


/* Reset básico */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-y: scroll;         /* evita saltos de layout */
  overflow-x: hidden;         /* evita scroll horizontal */
  scrollbar-width: none;      /* Firefox */
}

body::-webkit-scrollbar {
  display: none;              /* Chrome, Safari, Opera */
}

/* Utilidades de layout */
.caracol-wrap {
  padding: 5rem 2rem 7rem;
  max-width: 1200px;
  margin: 0 auto;
  color: white;
  font-family: 'Cormorant Garamond', serif;
}

.caracol-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

/* Botones de reserva */
.caracol-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 2.5rem;
}

.caracol-reserva-btn {
  display: inline-block;
  padding: 14px 22px;
  background-color: #e63946;
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  outline: none;
}
.caracol-reserva-btn-booking {
  display: inline-block;
  padding: 14px 22px;
  background-color: #0077b6;
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  outline: none;
}
.caracol-reserva-btn:hover {
  background-color: #d62839;
  transform: translateY(-1px);
}

.caracol-reserva-btn:active {
  transform: translateY(0);
}

.caracol-reserva-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.35);
}

/* Secciones alternadas */
.caracol-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
  gap: 2rem;
}

.row-normal { flex-direction: row; }
.row-reverse { flex-direction: row-reverse; }

/* Imagen + texto */
.caracol-section img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
  cursor: zoom-in; /* indica que se abre lightbox */
}

.caracol-section p {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Epílogo */
.caracol-epilogue {
  margin-top: 4rem;
  text-align: center;
  font-size: 1.4rem;
  max-width: 900px;
  margin-inline: auto;
  line-height: 1.6;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 900px) {
  .caracol-title { font-size: 2.4rem; }
  .caracol-section { gap: 1.5rem; }
}

@media (max-width: 768px) {
  .caracol-section {
    flex-direction: column !important;
    text-align: center;
  }

  .caracol-section img { max-width: 100%; }

  .caracol-actions {
    gap: 10px;
    margin-bottom: 2rem;
  }

  .caracol-reserva-btn {
    width: 100%;
    max-width: 360px;
  }
}
.enredadera-container {
  position: fixed;
  top: 30%;
  bottom: 0;
  width: 350px; /* aumentamos tamaño */
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.enredadera-container.left {
  left: 0;
}

.enredadera-container.right {
  right: 0;
}

.enredadera {
  width: 100%;
  opacity: 0.25;
  transform-origin: bottom center;
  animation: crecer 5s ease-in-out forwards,
    balancear 4s ease-in-out infinite alternate;
}

/* Animación de crecimiento inicial */
@keyframes crecer {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

/* Animación de oscilación suave */
@keyframes balancear {
  0% {
    transform: scaleY(1) rotateZ(0deg);
  }
  50% {
    transform: scaleY(1) rotateZ(1.5deg);
  }
  100% {
    transform: scaleY(1) rotateZ(-1.5deg);
  }
}
@media (max-width: 768px) {
  .enredadera-container {
    display: none !important;
  }
}
:root {
  --color-principal: #a87f54; /* Naranja suave */
  --color-principal-hover: #996f47;
  --color-secundario: #bdab6f; /* Amarillo suave */
  --color-input-bg: #2a2a2a;
  --color-texto: #fff;
}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  list-style: none;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background-color: #1e1e1e;
  color: var(--color-texto);
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.3s ease-in-out;
  overflow: visible;
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-align: center;
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-content label {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
  padding: 0.5rem;
  border-radius: 6px;
  border: none;
  margin-top: 0.3rem;
  background-color: var(--color-input-bg);
  color: var(--color-texto);
  width: 100%;
}

.modal-content input:focus,
.modal-content textarea:focus,
.modal-content select:focus {
  outline: 2px solid var(--color-principal);
}

/* Flecha personalizada para select */
.modal-content select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath fill='%23ffffff' d='M0 0l5 7 5-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 0.65rem;
  padding-right: 2rem;
  cursor: pointer;
  z-index: 1001;
}

/* Para asegurar que el desplegable no se oculta */
.modal-content select option {
  background-color: var(--color-input-bg);
  color: var(--color-texto);
}

/* Botones */
.modal-content .buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.modal-content button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.modal-content button[type="submit"] {
  background-color: var(--color-principal);
  color: white;
}

.modal-content button[type="submit"]:hover {
  background-color: var(--color-principal-hover);
}

.modal-content button[type="button"] {
  background-color: #555;
  color: white;
}

.modal-content button[type="button"]:hover {
  background-color: #444;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .modal-content .buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .modal-content button {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
}
.experiencias-carousel-container {
  display: flex;
  flex-direction: row;
  margin-top: 2vh;
  margin-left: 30vw;
  max-width: 660px;
  height: 60vh;
  padding: 2rem 1rem;
  background: #574a365b;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.experiencia-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  border-radius: 1rem;
}

.experiencia-img {
  width: 60%;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease;
}

.experiencia-img:hover {
  transform: scale(1.02);
}

.experiencia-texto {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: #4e3f2d;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  max-width: 80%;
}

/* Responsivo */
@media (max-width: 900px) {
  .experiencias-carousel-container {
    margin-left: 5vw;
    max-width: 95vw;
    height: 50vh;
    height: auto;
    flex-direction: column;
    padding: 1.5rem 0.5rem;
  }
  .experiencia-img {
    width: 100%;
    max-height: 300px;
  }
  .experiencia-texto {
    font-size: 0.95rem;
    max-width: 95%;
  }
}

@media (max-width: 600px) {
  .experiencias-carousel-container {
    margin-left: 0;
    margin-top: 4vh;
    padding: 1rem 0.2rem;
    border-radius: 0.5rem;
    max-width: 100vw;
    height: 70vh;
  }
  .experiencia-img {
    height: 100vh;
  }
  .experiencia-texto {
    font-size: 0.85rem;
    padding: 0.5rem 0.6rem;
    border-radius: 1rem;
  }
  .experiencia-item  img{
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;    
  }
  img{
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
  }
}
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  list-style: none;
}
/* LoginModal.css */

.login-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.login-modal {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 300px;
  max-width: 90%;
  text-align: center;
  animation: fadeIn 0.3s ease-out;
}

.login-modal h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #333;
}

.login-modal input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.login-modal input:focus {
  border-color: #5c9ded;
  outline: none;
}

.login-modal .error {
  color: red;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.login-modal .buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.login-modal button {
  flex: 1;
  padding: 0.7rem;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.login-modal button:first-of-type {
  background: #5c9ded;
  color: white;
}

.login-modal button:first-of-type:hover {
  background: #468de5;
}

.login-modal button:last-of-type {
  background: #ddd;
}

.login-modal button:last-of-type:hover {
  background: #ccc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  list-style: none;
}

.quetzal-wrap {
  width: 100%;
  padding: 4rem 1rem;
}

.quetzal-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: #222;
}

.quetzal-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-in-out;
}

.quetzal-section.row-reverse {
  flex-direction: row-reverse;
}

.quetzal-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.quetzal-img {
  width: 45%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.quetzal-img:hover {
  transform: scale(1.03);
}

.quetzal-text {
  width: 50%;
  font-size: 1.3rem;
  line-height: 1.9;
  color: #333;
}
