@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Josefin+Slab:wght@100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Josefin+Slab:wght@100&family=Poiret+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Cardo:ital,wght@0,400;0,700;1,400&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Josefin+Slab:wght@100&family=Poiret+One&display=swap");

:root {
  --blanco: #ffff;
  --cafeclaro: #dabd7b;
  --cafe-principal: #42302e;
  --primary-dark: #1a1a1a;
  --secondary-dark: #333333;
  --accent-gold: #c8a97e;
  --text-dark: #242424;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --color-text: #292828;
  --color-bg: #ddd;
  --color-link: #000;
  --color-link-hover: #000;
  --page-padding: 1rem;
  --angle: -15deg;
  --trans-content: -30vh;
  --font-titles: "Poiret One", serif;
  --font-subtitles: "Sweet Sans Pro";
  --font-paragraphs: "Cardo", serif;
}

@font-face {
  font-family: "Sweet Sans Pro";
  src: local("Sweet Sans Pro Medium"), local("Sweet-Sans-Pro-Medium"), url("View/Layout/fonts/SweetSansPro-Medium.woff2") format("woff2"),
    url("View/Layout/fonts/SweetSansPro-Medium.woff") format("woff"), url("View/Layout/fonts/SweetSansPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-titles);
}

.hero-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-banner video {
    width: 100%;
    height: auto;
    object-fit: cover; 
}
@media (max-width: 1024px) {
    .hero-banner video{
        height: 100%;
    }
    
}

.slider-container {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: all 1.2s cubic-bezier(0.7, 0, 0.3, 1);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 6.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.slide.active .slide-bg {
  transform: scale(1.1);
}

/* Agregar después de .slide-bg */
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.slide.active .slide-bg {
  transform: scale(1.1);
}

.slide-content {
  position: relative;
  height: 100%;
  padding: 0 10%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
}

.content-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding-top: 20vh;
}

.decorative-line {
  width: 2px;
  height: 180px;
  background: linear-gradient(to bottom, #c8a27c, transparent);
  margin-bottom: 2rem;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s ease-out;
}

.slide.active .decorative-line {
  transform: scaleY(1);
}

.subtitle {
  font-family: var(--font-subtitles);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg) translateY(30px);
  opacity: 0;
  color: #c8a27c;
  font-size: 1.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 300;
}

.slide.active .subtitle {
  animation: slideInUp 0.8s forwards 0.5s;
}

.content-main {
  padding-top: 20vh;
}

.title {
  font-size: 7rem;
  color: #fff;
  line-height: 1;
  margin: 0;
  font-weight: 300;
  font-family: var(--font-titles);
  letter-spacing: 8px;
  transform: translateX(-30px);
  opacity: 0;
}

.slide.active .title {
  animation: slideInRight 0.8s forwards;
}

.accent-box {
  position: relative;
  margin-top: 3rem;
  padding-left: 6rem;
}

.accent-line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 4rem;
  height: 2px;
  background: #c8a27c;
  transform: scaleX(0);
  transform-origin: left;
}

.slide.active .accent-line {
  animation: expandLine 0.8s forwards 0.8s;
}

.description {
  font-family: var(--font-subtitles);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  margin: 0;
  font-weight: 300;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(20px);
}

.slide.active .description {
  animation: fadeInUp 0.8s forwards 1s;
}

.progress-container {
  position: absolute;
  bottom: 20px;
  left: 10%;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  z-index: 3;
}

.progress-number,
.progress-total {
  font-size: 1.2rem;
  font-weight: 300;
  color: #c8a27c;
}

.progress-bar {
  width: 200px;
  height: 1px;
  background: rgba(200, 162, 124, 0.3);
}

.progress {
  height: 100%;
  background: #c8a27c;
  transition: width 0.1s linear;
}

/* Ajustar el timing de las animaciones de contenido */
.slide.active .title {
  animation: slideInRight 1.2s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

.slide.active .subtitle {
  animation: slideInUp 1.2s cubic-bezier(0.7, 0, 0.3, 1) 0.2s forwards;
}

.slide.active .description {
  animation: fadeInUp 1.2s cubic-bezier(0.7, 0, 0.3, 1) 0.4s forwards;
}

.slide.active .accent-line {
  animation: expandLine 1.2s cubic-bezier(0.7, 0, 0.3, 1) 0.3s forwards;
}

/* Efecto de brillo para el título principal */
.title {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.1);
  animation: titleGlow 4s ease-in-out infinite alternate;
}

/* Efecto de brillo dorado para el subtítulo */
.subtitle {
  color: #c8a27c;
  text-shadow: 0 0 10px rgba(200, 162, 124, 0.5), 0 0 20px rgba(200, 162, 124, 0.3), 0 0 30px rgba(200, 162, 124, 0.1);
  animation: subtitleGlow 4s ease-in-out infinite alternate;
}

/* Efecto sutil para la descripción */
.description {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2), 0 0 25px rgba(255, 255, 255, 0.1);
  animation: descriptionGlow 4s ease-in-out infinite alternate;
}

/* Seccion de bienvenida */

.welcome-section {
  padding: 120px 0;
  background-color: #fff;
  overflow: hidden;
}

.welcome-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Estilos del encabezado */
.welcome-header {
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.welcome-subtitle {
  font-family: var(--font-subtitles);
  font-size: 1.2rem;
  color: #937b4d;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 15px;
  width: auto;
}

.welcome-title {
  font-family: var(--font-titles);
  font-size: 2.8rem;
  color: #2c2c2c;
  line-height: 1.2;
  margin-bottom: 20px;
}

.decorative-separator {
  width: 80px;
  height: 3px;
  background-color: #937b4d;
  margin: 25px 0;
}

/* Estilos del contenido principal */
.welcome-text-container {
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.welcome-main-text p {
  font-family: var(--font-paragraphs);
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

/* Estadísticas destacadas */
.welcome-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.feature {
  text-align: center;
  padding: 20px;
  border-right: 1px solid #eee;
  transition: transform 0.3s ease;
}

.feature:last-child {
  border-right: none;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #937b4d;
  margin-bottom: 10px;
  width: auto;
  height: auto;
}

.feature-text {
  font-family: var(--font-subtitles);
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Texto adicional */
.welcome-additional p {
  font-family: var(--font-paragraphs);
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 40px;
}

/* Botones CTA */
.welcome-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

@media (max-width: 1024px) {
  .welcome-cta {
    justify-content: center;
  }
}

.cta-button {
  font-family: var(--font-subtitles);
  padding: 15px 35px;
  background-color: #937b4d;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #7a6640;
  transform: translateY(-2px);
}

.cta-separator {
  color: #999;
}

.cta-link {
  font-family: var(--font-subtitles);
  color: #937b4d;
  text-decoration: none;
  position: relative;
}

.cta-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #937b4d;
  transition: width 0.3s ease;
}

.cta-link:hover::after {
  width: 100%;
}

/* Grid de imágenes */
.welcome-image-grid {
  display: grid;
  grid-template-rows: auto auto;
  gap: 30px;
  opacity: 0;
  animation: fadeInRight 1s ease 0.9s forwards;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.main-image {
  height: 400px;
}

.secondary-image {
  height: 300px;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .welcome-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .welcome-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .welcome-section {
    padding: 80px 0;
  }

  .welcome-title {
    font-size: 2.2rem;
  }

  .welcome-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
  }

  .feature:last-child {
    border-bottom: none;
  }

  .header-content {
    width: 60%;
    text-align: center;
  }

  .elegant-subtitle {
    width: auto !important;
    height: auto !important;
  }

  .amenity-item {
    padding: 0px 55px !important;
  }

  span.text.animate-text {
    width: auto !important;
  }
}

/* Fin de la seccion de bienvenida */

/* Animación para el título */
@keyframes titleGlow {
  from {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.1);
  }

  to {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 25px rgba(255, 255, 255, 0.3), 0 0 35px rgba(255, 255, 255, 0.2);
  }
}

/* Animación para el subtítulo */
@keyframes subtitleGlow {
  from {
    text-shadow: 0 0 10px rgba(200, 162, 124, 0.5), 0 0 20px rgba(200, 162, 124, 0.3);
  }

  to {
    text-shadow: 0 0 15px rgba(200, 162, 124, 0.7), 0 0 25px rgba(200, 162, 124, 0.5), 0 0 35px rgba(200, 162, 124, 0.3);
  }
}

/* Animación para la descripción */
@keyframes descriptionGlow {
  from {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  }

  to {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
  }
}

/* Mejora del efecto de la línea decorativa */
.decorative-line {
  box-shadow: 0 0 10px rgba(200, 162, 124, 0.5), 0 0 20px rgba(200, 162, 124, 0.3);
  animation: lineGlow 4s ease-in-out infinite alternate;
}

@keyframes lineGlow {
  from {
    box-shadow: 0 0 10px rgba(200, 162, 124, 0.5), 0 0 20px rgba(200, 162, 124, 0.3);
  }

  to {
    box-shadow: 0 0 15px rgba(200, 162, 124, 0.7), 0 0 25px rgba(200, 162, 124, 0.5), 0 0 35px rgba(200, 162, 124, 0.3);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: rotate(180deg) translateY(30px);
    opacity: 0;
  }

  to {
    transform: rotate(180deg) translateY(0);
    opacity: 1;
  }
}

@keyframes expandLine {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 1200px) {
  .title {
    font-size: 5rem;
  }
}

@media (max-width: 768px) {
  .slide-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 5%;
  }

  .content-left {
    display: none;
  }

  .content-main {
    padding-top: 30vh;
  }

  .title {
    font-size: 3.5rem;
    letter-spacing: 4px;
  }

  .description {
    font-size: 1.2rem;
  }
}

/* Start Service Section */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0;
}

.service-card {
  height: 400px;
  /* Se mantiene la altura original */
  perspective: 1000px;
}

/* Estilos del contenedor de masajes */
.contenedor-masajes {
  height: 75%; /* Hace que ocupe toda la altura disponible del contenedor padre */
  overflow-y: auto; /* Agrega scroll vertical si el contenido excede la altura */
  padding: 10px;
  box-sizing: border-box; /* Para incluir padding dentro del tamaño total */
}

.back-content p {
  font-family: var(--font-paragraphs);
}

.back-content h2 {
  font-family: var(--font-titles);
}
/* Estilo de los mensajes */
.mensaje {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

/* Resaltar el precio */
.precio {
  font-weight: bold;
  color: #42302e; /* Color rojo para los precios */
}

/* Nota final */
.nota {
  font-size: 14px;
  color: #555;
  margin-top: 20px;
}

/* Estilos de tarjeta de decoraciones*/

.decoraciones-especiales {
  height: 75%;
  box-sizing: border-box;
  overflow-y: auto;
}

.decoraciones-especiales h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #333;
}

.decoracion {
  margin-bottom: 16px;
}

.decoracion h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: #42302e;
}

.decoracion p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

.decoracion .precio {
  font-weight: bold;
  color: #42302e;
  margin-top: 8px;
}

.experience-party {
  height: 75%;
  box-sizing: border-box;
}

.experience-party h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #333;
}

.experiencia {
  margin-bottom: 16px;
}

.experiencia h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: #42302e;
}

.experiencia p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

.experiencia .precio {
  font-weight: bold;
  color: #42302e;
  margin-top: 8px;
}

.linea-divisoria {
  width: 50%; /* Ancho fijo de la línea */
  height: 1px; /* Altura de la línea */
  background-color: #ddd; /* Color de la línea */
  margin: 16px auto; /* Centra la línea horizontalmente */
  box-sizing: border-box;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.card-front {
  background: linear-gradient(145deg, rgba(156, 131, 84, 0.1), rgba(156, 131, 84, 0.05));
  border: 1px solid rgba(156, 131, 84, 0.2);
}

.icon-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.icon-wrapper ion-icon {
  font-size: 5rem;
  color: #9c8354;
  transition: all 0.3s ease;
  animation: iconFloat 3s ease-in-out infinite;
}

.icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(156, 131, 84, 0.2), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(10px);
  animation: glowPulse 2s ease-in-out infinite;
}

.card-title {
  text-align: center;
}

.card-title h4 {
  font-family: var(--font-titles);
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.title-accent {
  font-family: var(--font-subtitles);
  display: block;
  font-size: 1rem;
  color: #9c8354;
  text-transform: uppercase;
  letter-spacing: 3px;
  width: auto;
}

.card-back {
  background: #9c8354;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.back-content {
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}

.back-content p {
  font-family: var(--font-paragraphs);
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-content .decoraciones-especiales {
  overflow: auto;
}

.see-experience {
  width: auto;
  height: auto;
  font-family: var(--font-subtitles);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 10px 0;
  position: relative;
}

.card-cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.card-cta:hover::after {
  width: 100%;
}

.card-cta ion-icon {
  transition: transform 0.3s ease;
}

.card-cta:hover ion-icon {
  transform: translateX(5px);
}

.back-decoration {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 70%);
  opacity: 0.5;
}

/* Animaciones */
@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Hover Effects */
.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.1), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover .card-front::before {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Otros estilos de la sección de servicios */
.services-section {
  background: linear-gradient(135deg, #0c0c0c, #1a1a1a);
  color: #fff;
  padding: 0;
  overflow: hidden;
}

/* Header Styles */
.services-header {
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.header-content {
  text-align: center;
  z-index: 2;
}

.elegant-subtitle {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: var(--font-subtitles);
  letter-spacing: 4px;
  color: #9c8354;
  margin-bottom: 1rem;
  display: block;
}

.elegant-title-services {
  font-family: var(--font-titles);
  font-size: 62px;
  font-weight: 300;
  line-height: 1.2;
}

.title-animation {
  height: 80px;
  overflow: hidden;
  display: inline-flex;
  vertical-align: middle;
}

.words-wrapper {
  display: flex;
  flex-direction: column;
  animation: cycleWords 7.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.words-wrapper span {
  display: block;
  height: 80px;
  line-height: 77.5px;
  color: #9c8354;
  text-shadow: 0 0 10px rgba(200, 150, 90, 1);
  padding: 0 10px;
  font-size: 58px;
  font-family: var(--font-titles);
}

@keyframes cycleWords {
  0%,
  27% {
    transform: translateY(0%);
  }

  33%,
  60% {
    transform: translateY(-100%);
  }

  66%,
  93% {
    transform: translateY(-200%);
  }

  100% {
    transform: translateY(-300%);
  }
}

/* Showcase Styles */
.services-showcase {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
}

.showcase-main {
  position: relative;
  height: 80vh;
  margin-bottom: 100px;
  border-radius: 30px;
  overflow: hidden;
}

.showcase-image {
  height: 100%;
  width: 100%;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease !important;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 30%, transparent);
}

.showcase-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 7%;
  z-index: 2;
}

.content-inner {
  width: 100%;
  height: auto;
  padding: 5%;
  position: relative;
}

/* Badge Destacado */
.luxury-badge {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

.badge-text {
  position: relative;
  display: inline-block;
  padding: 8px 25px;
  font-size: 0.9rem;
  font-family: var(--font-subtitles);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #9c8354;
  background: rgba(156, 131, 84, 0.1);
  border: 1px solid rgba(156, 131, 84, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  width: auto;
  height: auto;
}

.badge-shine {
  position: absolute;
  top: -50%;
  left: -146%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(156, 131, 84, 0.3), transparent);
  animation: badgeShine 3s infinite;
}

/* Título Principal */
.luxury-title {
  position: relative;
  margin-bottom: 2.5rem;
}

.title-line {
  width: 60px;
  height: 2px;
  background: #9c8354;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.title-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: lineShine 2s infinite;
}

.luxury-title h3 {
  font-size: 4.5rem;
  font-weight: 300;
  font-family: var(--font-titles);
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ffffff, #9c8354);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.3);
  transform: translateX(-20px);
  opacity: 0;
  animation: titleSlideIn 1s forwards;
}

.title-accent {
  display: block;
  font-size: 1.3rem;
  font-family: var(--font-subtitles);
  color: #9c8354;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-top: 0.5rem;
  transform: translateX(20px);
  opacity: 0;
  animation: accentSlideIn 1s 0.3s forwards;
}

/* Descripción */
.luxury-description {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
  border-left: 1px solid rgba(156, 131, 84, 0.3);
}

.luxury-description p {
  font-family: var(--font-paragraphs);
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: descriptionFadeIn 1s 0.6s forwards;
}

/* Botón CTA */
.luxury-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  background: rgba(156, 131, 84, 0.9);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.cta-text {
  font-family: var(--font-subtitles);
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
}

.cta-icon {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
}

.cta-icon svg {
  fill: #fff;
  transition: transform 0.3s ease;
}

.cta-circles {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.circle {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: scale(0);
}

.luxury-cta:hover {
  background: #9c8354;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(156, 131, 84, 0.4);
}

.luxury-cta:hover .cta-icon svg {
  transform: translateX(5px);
}

.luxury-cta:hover .circle {
  animation: circleScale 0.5s forwards;
}

.luxury-cta:hover .circle:nth-child(2) {
  animation-delay: 0.1s;
}

.luxury-cta:hover .circle:nth-child(3) {
  animation-delay: 0.2s;
}

/* Animaciones */
@keyframes badgeShine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

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

  50% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes titleSlideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes accentSlideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes descriptionFadeIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes circleScale {
  to {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .luxury-title h3 {
    font-size: 3rem;
  }

  .title-accent {
    font-size: 1rem;
    letter-spacing: 4px;
  }

  .luxury-description {
    padding-left: 1rem;
  }

  .luxury-cta {
    padding: 15px 30px;
  }

  .badge-shine {
    display: none;
  }

  .showcase-main {
    margin-bottom: -35px;
  }
}

/* Amenities Carousel */
.amenities-carousel {
  overflow: hidden;
  padding: 40px 0;
  margin-bottom: 30px;
}

.carousel-track {
  display: flex;
  animation: scroll 20s linear infinite;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  white-space: nowrap;
  color: #9c8354;
}

.amenity-item span {
  font-family: var(--font-subtitles);
}

.amenities-carousel {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
}

.amenity-item {
  flex: 0 0 auto;
  padding: 0 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.amenity-item ion-icon {
  margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.last {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 768px) {
  .elegant-title-services {
    font-size: 3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .showcase-main {
    height: 60vh;
  }
}

/* End Service Section */

/* Schedule Section */

.luxury-schedule {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: #fff;
}

.schedule-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.elegant-title {
  font-family: var(--font-titles);
  font-size: 2.8rem;
  font-weight: 300;
  color: #fff;
  margin: 0;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.line {
  width: 40px;
  height: 1px;
  background: #927c4c;
}

.dot {
  width: 6px;
  height: 6px;
  background: #927c4c;
  border-radius: 50%;
}

.schedule-timeline {
  position: relative;
  padding-left: 60px;
}

.schedule-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #927c4c, transparent);
}

.timeline-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #927c4c;
  border: 2px solid #1a1a1a;
}

.time-column {
  flex: 0 0 150px;
  margin-right: 40px;
}

.time-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.time-block span {
  font-family: var(--font-subtitles);
}

.time {
  color: #927c4c;
  font-size: 1.1rem;
  font-weight: 500;
  height: auto;
  width: auto;
}

.content-column {
  flex: 1;
}

.content-column li {
  font-family: var(--font-paragraphs);
}

.content-column h3 {
  font-family: var(--font-subtitles);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 15px;
}

.content-column p {
  font-family: var(--font-paragraphs);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.hidden {
  display: none;
}

#showMoreFacilities {
  font-family: var(--font-subtitles);
  padding: 10px 25px;
  background: transparent;
  color: #937b4d;
  border: 1px solid #937b4d;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
}

#showMoreFacilities:hover {
  background: #937b4d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(147, 123, 77, 0.2);
}

#showMoreFacilities::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(147, 123, 77, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

#showMoreFacilities:hover::before {
  width: 200px;
  height: 200px;
}

/* Versión responsive */
@media (max-width: 768px) {
  #showMoreFacilities {
    padding: 8px 20px;
    font-size: 0.8rem;
  }
}

/* Estilos para los items de la lista */
#itemList li {
  transition: opacity 0.8s ease-in-out;
  opacity: 1;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

#itemList li.hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

/* Estilo para el botón */
#showMoreFacilities {
  transition: transform 0.8s ease-in-out;
  margin-top: 15px;
}

/* Clase para cuando el botón está expandido */
#showMoreFacilities.expanded {
  transform: translateY(30px);
}

.note {
  color: #927c4c;
  font-family: var(--font-paragraphs);
  font-size: 0.9rem;
  font-style: italic;
  display: block;
  width: auto;
}

.schedule-footer {
  text-align: center;
  margin-top: 80px;
  padding: 40px 0;
  position: relative;
}

.footer-decoration {
  width: 100px;
  height: 1px;
  background: #927c4c;
  margin: 20px auto;
}

.schedule-footer p {
  color: #927c4c;
  font-size: 1.2rem;
  font-style: italic;
  margin: 0;
}

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

  .elegant-title {
    font-size: 2.2rem;
  }

  .schedule-timeline {
    padding-left: 30px;
  }

  .timeline-item::before {
    left: -30px;
  }

  .time-column {
    flex: 0 0 100px;
    margin-right: 20px;
  }

  .content-column h3 {
    font-size: 1.5rem;
  }

  .content-column p {
    font-size: 1rem;
  }
}

/* Efecto de brillo para el título principal */
.elegant-title {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #fff, #927c4c, #fff);
  background-size: 200% auto;
  font-weight: 500;
  font-size: 4rem;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

.elegant-title:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.timeline-item {
  transform: translateX(0);
  opacity: 1;
  transition: all 0.5s ease;
}

.timeline-item:hover {
  transform: translateX(10px);
}

.time-block {
  position: relative;
  overflow: hidden;
}

.time {
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.time-block:hover .time {
  transform: translateY(-3px);
  color: #fff;
}

.timeline-item::before {
  transition: all 0.3s ease;
}

.timeline-item:hover::before {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(146, 124, 76, 0.5);
}

.content-column h3 {
  position: relative;
  display: inline-block;
}

.content-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #927c4c;
  transition: width 0.3s ease;
}

.timeline-item:hover .content-column h3::after {
  width: 100%;
}

.note {
  position: relative;
  left: 0;
  transition: all 0.3s ease;
}

.timeline-item:hover .note {
  left: 5px;
  color: #fff;
}

/* Animación para la línea de tiempo */
.schedule-timeline::before {
  background: linear-gradient(to bottom, transparent 0%, #927c4c 15%, #927c4c 85%, transparent 100%);
  animation: timelineGlow 2s infinite;
}

@keyframes timelineGlow {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Animación para el título */
.title-decoration .line {
  position: relative;
  overflow: hidden;
}

.title-decoration .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: lineSweep 3s infinite;
}

@keyframes lineSweep {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

/* Animación para el punto decorativo */
.title-decoration .dot {
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.schedule-footer p {
  color: #927c4c;
  font-family: var(--font-subtitles);
  font-size: 1.2rem;
  font-style: italic;
  margin: 0;
  animation: fadeInOut 3s ease-in-out infinite;
  background: linear-gradient(90deg, #927c4c, #fff, #927c4c);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.schedule-footer p:hover {
  transform: scale(1.05);
  background-position: 100% center;
}

/* Footer Decoration */
.footer-decoration {
  width: 100px;
  height: 1px;
  background: #927c4c;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  transition: width 0.3s ease, background 0.3s ease;
}

.footer-decoration::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: shimmer 2s infinite;
}

.schedule-footer:hover .footer-decoration {
  width: 150px;
  background: #fff;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* End Schedule Section */

/* Testimonial Section */

.testimonials-luxury {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  overflow: hidden;
}

.testimonials-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(146, 117, 67, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(146, 117, 67, 0.03) 0%, transparent 50%);
  z-index: 1;
}

.testimonials-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 2;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.header-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.header-accent .line {
  width: 40px;
  height: 1px;
  background: #927543;
}

.header-accent .dot {
  width: 4px;
  height: 4px;
  background: #927543;
  transform: rotate(45deg);
}

.header-accent .text {
  color: #927543;
  font-family: var(--font-subtitles);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.testimonials-header h2 {
  font-family: var(--font-titles);
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 300;
}

.testimonials-header p {
  color: #666;
  font-family: var(--font-paragraphs);
  font-size: 1.6rem;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-wrapper {
  position: relative;
  padding: 40px 0;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
  animation: slideIn 0.5s ease forwards;
}

.testimonial-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  position: relative;
}

.quote-mark {
  position: absolute;
  top: -30px;
  left: 60px;
  width: 60px;
  height: 60px;
  background: #927543;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIcon 3s ease-in-out infinite;
}

.quote-mark svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.testimonial-text {
  font-family: var(--font-paragraphs);
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
  animation: fadeInUp 0.5s ease-out forwards;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-image {
  position: relative;
  width: 70px;
  height: 70px;
}

.author-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.author-image:hover img {
  transform: scale(1.1);
}

.author-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #927543;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  animation: badgePulse 2s ease-in-out infinite;
}

.author-info h4 {
  font-family: var(--font-titles);
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.author-info span {
  font-family: var(--font-paragraphs);
  font-size: 0.9rem;
  color: #927543;
  display: block;
  margin-bottom: 8px;
}

.rating {
  color: #ffd700;
  font-size: 1rem;
}

.testimonials-navigation {
  margin-top: 40px;
}

.nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-btn {
  background: none;
  border: 1px solid #927543;
  color: #927543;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: #927543;
  color: #ffffff;
  animation: pulseButton 0.3s ease-in-out;
}

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

.progress-bar {
  width: 200px;
  height: 2px;
  background: rgba(146, 117, 67, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  width: 20%;
  height: 100%;
  background: #927543;
  transition: width 0.3s ease;
}

.slide-counter {
  font-size: 1rem;
  color: #1a1a1a;
}

.slide-counter .separator {
  margin: 0 5px;
  color: #927543;
}

@media (max-width: 768px) {
  .testimonials-luxury {
    padding: 80px 0;
  }

  .testimonial-content {
    padding: 40px 20px;
  }

  .testimonials-header h2 {
    font-size: 2rem;
  }

  .nav-progress {
    display: none;
  }
}

/* Animaciones */

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-50px);
  }
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseButton {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(146, 117, 67, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(146, 117, 67, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animaciones para textos */
.animate-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.animate-title {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

.testimonial-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.testimonial-author {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

/* Animación para el título con efecto de revelación */
.header-accent .text {
  position: relative;
  overflow: hidden;
}

.header-accent .text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #927543;
  transform: translateX(-100%);
  animation: revealText 1s ease forwards;
}

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

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Animación para las estrellas de rating */
.rating {
  opacity: 0;
  animation: fadeInStars 0.5s ease forwards 0.8s;
}

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

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

/* Animación para el badge de verificación */
.author-badge {
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(146, 117, 67, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(146, 117, 67, 0);
  }
}

/* Estilos base del header */
.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

/* Animación del acento superior */
.header-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInDown 0.8s ease forwards;
}

.header-accent .line {
  width: 40px;
  height: 1px;
  background: #927543;
  transition: width 0.3s ease;
}

.header-accent:hover .line {
  width: 60px;
}

.header-accent .dot {
  width: 4px;
  height: 4px;
  background: #927543;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.header-accent:hover .dot {
  transform: rotate(225deg);
}

/* Animación del texto "Experiencias Compartidas" */
.header-accent .text {
  color: #927543;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  overflow: hidden;
  padding: 5px 0;
}

.header-accent .text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #927543;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.header-accent:hover .text::before {
  transform: translateX(0);
}

/* Animación del título principal */
.testimonials-header h2 {
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.3s;
  position: relative;
  display: inline-block;
}

.testimonials-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #927543, transparent);
  transition: width 0.5s ease;
}

.testimonials-header h2:hover::after {
  width: 100%;
}

/* Animación del párrafo */
.testimonials-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.6s;
  position: relative;
  padding: 10px;
}

.testimonials-header p::before,
.testimonials-header p::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #927543;
  transition: width 0.4s ease;
}

.testimonials-header p::before {
  top: 0;
  left: 0;
}

.testimonials-header p::after {
  bottom: 0;
  right: 0;
}

.testimonials-header p:hover::before,
.testimonials-header p:hover::after {
  width: 50px;
}

/* Estilos elegantes para scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(218, 189, 123, 0.1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 10px;
  border: 2px solid var(--bg-light);
  transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
  background: #b69660;
}

/* Para Firefox */
::-webkit-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) rgba(218, 189, 123, 0.1);
}

/* Keyframes para las animaciones */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efecto de revelación del texto */
.animate-text {
  position: relative;
  overflow: hidden;
}

.animate-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #927543, transparent);
  transform: translateX(-100%);
  animation: revealText 1.2s ease forwards;
}

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

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

/* End Testimonial Section */
/* Media queries para diseño responsive */

/* Tablets y dispositivos medianos */
@media (max-width: 1024px) {
  .hero-banner {
    height: 70vh;
  }

  .slide-content {
    grid-template-columns: 1fr;
    padding: 0 5%;
  }

  .content-left {
    display: none;
  }

  .content-main {
    padding-top: 20vh;
  }

  .title {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .description {
    font-size: 1rem;
  }

  .welcome-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .welcome-image-grid {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-main {
    height: auto;
    min-height: 400px;
  }

  .showcase-content {
    padding: 2rem;
  }

  .content-inner {
    padding: 1rem;
  }

  .luxury-title h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .luxury-description p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .elegant-title-services {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .title-animation {
    height: auto;
    display: block;
  }

  .words-wrapper {
    animation: none;
    display: block;
  }

  .words-wrapper span {
    display: inline;
    height: auto;
    line-height: 1.2;
    padding: 0;
  }

  .schedule-timeline {
    padding-left: 30px;
  }

  .timeline-item::before {
    left: -30px;
  }

  .time-column {
    flex: 0 0 80px;
    margin-right: 15px;
  }

  .content-column h3 {
    font-size: 1.3rem;
  }

  .testimonial-content {
    padding: 40px 20px;
  }
}

/* Dispositivos móviles */
@media (max-width: 480px) {
  .hero-banner {
    height: 60vh;
  }

  .title {
    font-size: 2.5rem;
  }

  .description {
    font-size: 0.9rem;
  }

  .welcome-features {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .showcase-main {
    min-height: 300px;
  }

  .luxury-title h3 {
    font-size: 1.75rem;
  }

  .title-accent {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .luxury-description p {
    font-size: 0.9rem;
  }

  .luxury-badge .badge-text {
    font-size: 0.8rem;
    padding: 6px 15px;
  }

  .elegant-title-services {
    font-size: 2rem;
  }

  .schedule-timeline {
    padding-left: 20px;
  }

  .timeline-item::before {
    left: -20px;
  }

  .time-column {
    flex: 0 0 60px;
    margin-right: 10px;
  }

  .content-column h3 {
    font-size: 1.1rem;
  }

  .testimonial-content {
    padding: 30px 15px;
  }

  .author-image {
    width: 50px;
    height: 50px;
  }

  .author-info h4 {
    font-size: 1rem;
  }
}

/* Ajustes adicionales para mejorar la experiencia en dispositivos móviles */
@media (max-width: 480px) {
  .words-wrapper span {
    font-size: 2.8rem;
  }

  .luxury-cta {
    padding: 15px 25px;
    font-size: 0.9rem;
  }

  .amenity-item {
    font-size: 0.8rem;
  }

  .elegant-title {
    font-size: 2rem;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
  }

  .progress-bar {
    width: 150px;
  }

  .elegant-title-services {
    font-size: 2rem;
  }

  .title-animation {
    height: 40px;
  }

  .words-wrapper span {
    height: 40px;
    line-height: 40px;
  }

  @keyframes cycleWords {
    0%,
    27% {
      transform: translateY(0%);
    }

    33%,
    60% {
      transform: translateY(-40px);
    }

    66%,
    93% {
      transform: translateY(-80px);
    }

    100% {
      transform: translateY(-120px);
    }
  }
}

@media (max-width: 1024px) {
  .content-inner {
    padding: 1rem;
  }

  .luxury-description p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .showcase-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
  }

  .content-inner {
    width: 100%;
    max-width: 600px;
    padding: 1.5rem;
  }

  .luxury-description {
    margin: 1.5rem 0;
    max-width: 100%;
  }

  .luxury-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .elegant-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #9c8354;
    margin-bottom: 1rem;
    display: block;
  }

  .elegant-title-services {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    color: #fff;
  }

  .title-animation {
    height: 83.3px;
    overflow: hidden;
    display: inline-flex;
    vertical-align: middle;
  }

  .words-wrapper {
    display: flex;
    flex-direction: column;
    animation: cycleWords 7.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  }

  .words-wrapper span {
    display: block;
    height: 83.3px;
    line-height: 83.3px;
    color: #9c8354;
    text-shadow: 0 0 10px rgba(200, 150, 90, 0.3);
    margin: 0;
    padding: 0;
    width: auto;
  }
}

@media (max-width: 480px) {
  .showcase-content {
    padding: 1.5rem;
  }

  .content-inner {
    padding: 0.75rem;
  }

  .luxury-description p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .elegant-title-services {
    font-size: 3rem;
  }

  .title-animation {
    height: 60px;
  }

  .words-wrapper span {
    height: 60px;
    line-height: 60px;
  }

  @keyframes cycleWords {
    0%,
    27% {
      transform: translateY(0%);
    }

    33%,
    60% {
      transform: translateY(-60px);
    }

    66%,
    93% {
      transform: translateY(-120px);
    }

    100% {
      transform: translateY(-180px);
    }
  }
}

/* Contenedor principal Mapa */
.container-map {
  position: relative;
  width: 80%; /* Ancho del contenedor */
  height: 500px; /* Altura del contenedor */
  margin: 0 auto; /* Centra el contenedor horizontalmente */
  padding-bottom: 500px;
  z-index: 1;
}

/* Cuadro izquierdo */
.left-box {
  background-color: #fff;
  padding: 20px;
  width: 30%; /* 45% del ancho para que haya espacio suficiente */
  height: auto; /* Altura fija */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  position: absolute;
  top: -14%; /* Posiciona el cuadro en la parte superior del contenedor */
  left: 2%; /* Lo alinea al borde izquierdo del contenedor */
  z-index: 2; /* Asegura que el cuadro izquierdo quede encima del derecho */
  padding: 20px;
}

@media (min-width: 1400px) {
  .left-box {
    width: 380px; /* 45% del ancho para que haya espacio suficiente */
  }

  .right-box {
    height: 400px;
  }
  .container-map {
    height: 50%;
  }
}

.left-box h2 {
  margin-bottom: 15px;
}

.left-box p {
  font-size: 1rem;
}

/* Cuadro derecho */
.right-box {
  background-color: #e0e0e0;
  width: 80%; /* 45% del ancho para que ambos cuadros tengan el mismo tamaño */
  height: 400px; /* Altura fija */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  position: absolute;
  top: 0; /* Posiciona el cuadro en la parte superior del contenedor */
  left: 35%; /* Mueve el cuadro a la mitad del contenedor */
  transform: translateX(-20%) translateY(20%); /* Mueve el cuadro hacia la izquierda, cubriendo un 10% */
}

.right-box h2 {
  margin-bottom: 15px;
}

.right-box p {
  font-size: 1rem;
}

iframe {
  width: 100%; /* El mapa ocupa todo el ancho del cuadro */
  height: 100%; /* El mapa ocupa toda la altura del cuadro */
  border-radius: 8px; /* Redondea las esquinas del mapa */
}

.container-map .direction-btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--secondary-font);
  background: transparent;
  color: var(--text-color-1);
  border: 1px solid;
  padding: 10px 30px 12px 30px;
  cursor: pointer;
  border-radius: 40px;
  transition: 0.4s;
  margin: 30px 0px 10px 0px;
}

@media (max-width: 1000px) {
  .container-map {
    display: flex;
    flex-direction: column-reverse;
    width: 100%; /* Ancho del contenedor */
    height: auto; /* Altura del contenedor */
    padding-bottom: 0px;
    transform: none;
    padding: 40px;
    align-items: center;
  }

  /* Cuadro izquierdo */
  .left-box {
    width: 90%; /* 45% del ancho para que haya espacio suficiente */
    height: auto;
    position: relative;
    z-index: 1; /* Asegura que el cuadro izquierdo quede encima del derecho */
    transform: none;
    left: 0;
    top: -70px;
    text-align: center;
    border-radius: 24px;
  }

  .right-box {
    width: 100%;
    transform: none; /* Mueve el cuadro hacia la izquierda, cubriendo un 10% */
    position: relative;
    left: 0;
    border-radius: 24px;
  }

  .left-box h2 {
    font-size: 20px !important;
  }

  .left-box p {
    font-size: 14px;
  }

  iframe {
    height: 100%;
    border-radius: 24px;
  }

  .container-map .direction-btn {
    font-size: 12px;
  }
}

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