@font-face {
  font-family: "Gracheva"; /* Nombre de la fuente Gracheva */
  src: url("fonts/Gracheva/Gracheva.otf") format("opentype"); /* OTF */
}

@font-face {
  font-family: "Astrella"; /* Nombre de la fuente Astrella */
  src: url("fonts/Astrella/Astrella.woff2") format("woff2"),
    /* Prioridad a WOFF2 */ url("fonts/Astrella/Astrella.woff") format("woff"),
    /* WOFF */ url("fonts/Astrella/Astrella.ttf") format("truetype"),
    /* TTF */ url("fonts/Astrella/Astrella.otf") format("opentype"); /* OTF */
  font-weight: normal; /* Normal */
  font-style: normal; /* Normal */
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* Estilos globales */
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #f2edeb;
  color: #333;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("images/asmeyes.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  z-index: -1;
  animation: eyeMovement 10s ease-in-out infinite;
}

@keyframes eyeMovement {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(5px, -5px);
  }
  50% {
    transform: translate(-5px, 5px);
  }
  75% {
    transform: translate(5px, 5px);
  }
}

section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 269px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  margin-bottom: 30px;
  transition: box-shadow 0.3s ease-in-out;
}

section:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* Encabezado */
header {
  background: linear-gradient(135deg, #d6bea5 0%, #bca88f 100%);
  color: white;
  text-align: center;
  padding: 50px 20px;
  position: relative;
  margin-bottom: 30px;
}

.imagen-angel img {
  user-select: none;
}

img {
  user-select: none;
}

li {
  list-style-type: none;
}

/* Navegación fija en la parte superior */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 30px;
  background-color: rgb(218 199 179); /* Fondo semitransparente */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  right: -50px;
  margin: 0 auto;
  user-select: none;
}

/* Fondo dinámico al hacer scroll */
.scrolled {
  background-color: rgba(188, 168, 143, 0.95);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

#servicios ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

#servicios ul li {
  font-size: 1.1em;
  padding: 10px 0;
  color: #5c504b;
  list-style: circle;
  border-left: 2px solid #bda18c;
  padding-left: 15px;
  line-height: 1.6;
}

/* Lista de elementos en la barra de navegación */
nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Elementos individuales */
nav ul li {
  margin: 0 15px;
}

nav ul li a {
  font-size: 1.1em;
  font-family: sans-serif;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

/* Efecto de hover en enlaces */
nav ul li a:hover {
  color: #f2e2d0;
  background-color: rgba(148, 116, 90, 0.5);
  transform: translateY(-2px);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Fondo de gradiente animado en la parte inferior del nav */
nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #d6bea5, #bca88f, #d6bea5);
  background-size: 200% 100%;
  animation: gradientMove 6s infinite;
}

/* Animación de movimiento del gradiente */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero {
  display: flex; /* Hacer que el contenedor sea flexible */
  align-items: center; /* Centrar verticalmente */
  justify-content: space-evenly;
  padding: 20px; /* Espaciado interno */
  gap: 15px;
}

.hero h1,
.hero h2 {
  margin: 0;
  font-family: "Gracheva", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  color: inherit;
}

.hero h1 {
  font-size: 4em;
}

.hero h2 {
  font-size: 3.5em;
}

.hero p {
  font-size: 1.8em;
  margin: 0;
}

.hero-secondary {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 20px; /* Espaciado interno */
  margin-top: 9px;
}

.hero-secondary h1 {
  font-size: 4em;
  margin: 0;
  font-family: "Gracheva", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-secondary p {
  font-size: 1.8em;
  margin: 0;
}

.logo {
  user-select: none !important;
  width: 100%;
  max-width: 690px;
  min-width: 450px;
  object-fit: cover;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  animation: eyeMovement 10s ease-in-out infinite; /* Añadir la animación */
}

@keyframes eyeMovement {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(5px, -5px);
  }
  50% {
    transform: translate(-5px, 5px);
  }
  75% {
    transform: translate(5px, 5px);
  }
}

.text-container {
  display: flex; /* Hacer que el contenedor del texto sea flexible */
  flex-direction: column; /* Alinear el título y el texto en columna */
}

/* .cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #c9b89a;
  color: white;
  text-decoration: none;
  font-size: 1.8em;
  font-family: "Gracheva", serif;
  margin-top: 20px;
  border-radius: 50px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.1) translateY(-3px); 
  background-color: #a98d73;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.cta-btn:active {
  transform: scale(0.95); 
  box-shadow: inset 0 6px 10px rgba(0, 0, 0, 0.2);
  background-color: #8b735d;
} */

/* Títulos de las secciones */
h2 {
  font-size: 2.5em;
  color: #b4a79e;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #b4a79e;
  margin: 20px auto;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero h2::after {
  background-color: #b48c713d;
}

/* Sección de Servicios */
#servicios {
  padding: 60px 269px;
  background-color: #e6dcd3;
  text-align: center;
}

#servicios h3 {
  font-size: 1.8em;
  color: #5c504b;
}

.servicio {
  margin-bottom: 30px;
}

.servicio p {
  color: #5c504b;
  font-size: 1.2em;
  margin-top: 10px;
}

/* Sección Sobre Mí */
#sobre-mi {
  padding: 60px 269px;
  background-color: #d9cab3;
  text-align: center;
}

#sobre-mi p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.3em;
  color: #5c504b;
  margin-bottom: 20px; /* Espaciado entre los párrafos */
  line-height: 1.6; /* Altura de línea para mejorar la legibilidad */
}

/* Sección de Preguntas Frecuentes */
#preguntas-frecuentes {
  padding: 60px 269px;
  background-color: #f2edeb;
  text-align: center;
}

#preguntas-frecuentes .faq-item {
  margin-bottom: 30px;
}

#preguntas-frecuentes h3 {
  font-size: 1.8em;
  color: #5c504b;
  margin-bottom: 10px;
}

#preguntas-frecuentes p {
  font-size: 1.2em;
  color: #5c504b;
}

/* Sección de Reseñas */
#reseñas {
  padding: 60px 269px;
  background-color: #f4e6de;
  text-align: center;
}

.reseña-item {
  margin-bottom: 30px;
}

.reseña-item p {
  font-size: 1.2em;
  color: #5c504b;
  margin-bottom: 10px;
}

.reseña-item h4 {
  font-size: 1.1em;
  color: #b4a79e;
  font-weight: bold;
}

/* Sección de Novedades */
#novedades {
  padding: 60px 269px;
  background-color: #e6dcd3;
  text-align: center;
}

.novedad-item {
  margin-bottom: 30px;
}

.novedad-item h3 {
  font-size: 1.8em;
  color: #5c504b;
  margin-bottom: 10px;
}

.novedad-item p {
  font-size: 1.2em;
  color: #5c504b;
}

/* Estilos del botón "Conocer más" */
.btn-conocer-mas {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 30px;
  font-size: 1.1em;
  color: #fff;
  background-color: #b4a79e;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 8px 15px #8c8078e3;
  text-shadow: 2px 2px 5px #685c4d59;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.btn-conocer-mas:hover {
  background-color: #a69180;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.05) translateY(-5px); /* Efecto de zoom y leve movimiento hacia arriba */
}

.btn-conocer-mas:active {
  background-color: #8c7564;
  box-shadow: inset 0 6px 10px rgba(0, 0, 0, 0.2);
  transform: scale(0.95); /* Disminuir tamaño para simular un "clic" */
}

#google_translate_element {
  position: absolute;
  top: 60px; /* Posiciona en la parte superior */
  right: 79px; /* Posiciona en la parte derecha */
  padding: 2px;
  font-size: 1.2em;
  border-radius: 8px;
  background-color: #e6dcd3; /* Color de fondo siguiendo la guía de diseño */
  color: #5c504b; /* Color de texto */
  border: 2px solid #b4a79e; /* Borde con el color principal de la guía */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: "Astrella", sans-serif; /* Fuente secundaria según la guía */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1100; /* Asegura que esté sobre otros elementos */
}

#google_translate_element:hover {
  background-color: #d9cab3; /* Color de fondo más oscuro al pasar el cursor */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#google_translate_element select {
  background-color: #f2edeb; /* Color de fondo de las opciones */
  color: #5c504b; /* Color de texto de las opciones */
  font-family: "Astrella", sans-serif;
}

.goog-te-gadget {
  margin: 0; /* Elimina márgenes */
  padding: 0; /* Ajusta el relleno para minimizar el espacio */
  line-height: 1 !important; /* Reduce la altura de la línea para ajustarse al contenido */
  font-family: "Gracheva"!important;
  
}

.notranslate {
  unicode-bidi: isolate;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd {
  display: none !important;
}

@media (max-width: 785px) {
  .hero {
    flex-direction: column;
  }

  .logo {
    width: 100%;
  }
}

.imagen-angel img {
  user-select: none !important;
  width: 250px;
  height: auto;
  animation: angel-float 6s ease-in-out infinite;
  margin: 20px auto;
}

.legal-content {
  padding: 20px;
}

@keyframes angel-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

#countdown-container {
  margin-top: 20px;
}

#countdown {
  font-size: 2em;
  color: #fff;
}

/* Animaciones de Ángeles y Mariposas */
.butterfly {
  position: absolute;
  width: 80px;
  height: 80px;
  animation: fly 10s ease-in-out infinite;
}

@keyframes fly {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(100px, -200px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Sección de Contador */
#apertura-agenda {
  padding-top: 5px;
  background: linear-gradient(135deg, #bca88f, #d9cab3);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px; /* Añadir espacio abajo */
}

#apertura-agenda h2 {
  font-size: 2.5em;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

#apertura-agenda h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #fff;
  margin: 20px auto;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

#countdown {
  font-size: 2.5em;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}

#next-opening {
  font-size: 1.3em;
  color: #fdfcfb;
  margin-bottom: 20px;
  font-style: italic;
}

/* Enlace a Instagram */
#countdown-container a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2em;
  color: #fff;
  background-color: #b4a79e;
  border-radius: 25px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  margin-top: 15px;
}

#countdown-container a:hover {
  background-color: #a69180;
  transform: scale(1.05) translateY(-3px); /* Efecto de zoom y leve movimiento hacia arriba */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

#countdown-container a:active {
  background-color: #8c7564;
  transform: scale(0.95); /* Disminuir tamaño para simular un "clic" */
  box-shadow: inset 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Estilos de la sección de Newsletter (Suscríbete) */
#newsletter {
  padding: 70px 40px;
  background-color: #e6dcd3;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: 700px;
}

#newsletter h2 {
  font-size: 2.5em;
  color: #b4a79e;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: bold;
  position: relative;
}

#newsletter p {
  font-size: 1.2em;
  color: #5c504b;
  margin-bottom: 40px;
}

/* Label del Email */
#newsletter-form label {
  font-size: 1.1em;
  color: #bda18c;
  display: block;
  margin-bottom: 10px;
  text-align: center;
  font-style: italic;
}

/* Input de Email */
#newsletter input {
  padding: 15px;
  font-size: 1.1em;
  margin-bottom: 20px;
  border: 2px solid #b4a79e;
  border-radius: 10px;
  width: 80%;
  max-width: 450px;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#newsletter input:focus {
  border-color: #a69180;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

/* Botón de Subscribirse */
#newsletter button {
  margin-top: 0px;
  margin-bottom: 3px;
  padding: 15px 40px;
  font-family: sans-serif;
  font-size: 1.1em;
  color: #ffffff;
  background-color: #b4a79e;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

#newsletter button:hover {
  background-color: #a69180;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transform: scale(1.05) translateY(-5px); /* Efecto de zoom y leve movimiento hacia arriba */
}

#newsletter button:active {
  background-color: #8c7564;
  box-shadow: inset 0 6px 10px rgba(0, 0, 0, 0.2);
  transform: scale(0.95); /* Disminuir tamaño para simular un "clic" */
}

/* Estilo para el contenedor del widget de Google Translate */
#google_translate_element {
  text-align: center;
  margin: 20px auto;
  background-color: #e6dcd3;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilo para el iframe generado automáticamente por Google Translate */
iframe.skiptranslate {
  border: none;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

/* Otros estilos del widget */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

/* Google Translate Specific Styles */
.VIpgJd-ZVi9od-ORHb-OEVmcd {
  visibility: hidden !important;
}

/* Custom styling for widget button */
#goog-gt-tt,
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon {
  display: none !important;
}

.skiptranslate.goog-te-gadget {
  visibility: hidden; /* Oculta todo el contenido inicialmente */
  font-size: 0;
}

.skiptranslate.goog-te-gadget * {
  visibility: visible; /* Hace visibles los elementos hijos nuevamente */
  color: #8d7766;
  vertical-align: middle;
}

.skiptranslate.goog-te-gadget::before {
  visibility: hidden; /* Oculta el texto específico */
}

body .goog-te-gadget-simple {
  background-color: #ffffff;
  border: 1px solid #b4a79e;
  padding: 5px;
  border-radius: 5px;
  color: #4b3832;
}

body .goog-te-gadget-simple a {
  color: #4b3832;
  text-decoration: none;
}
body .goog-te-gadget-simple a:hover {
  color: #bda18c;
}

/* Additional style adjustments for iframe translations */
iframe.skiptranslate {
  border: none;
  height: 40px;
  width: 100%;
  background-color: transparent;
}

/* Footer */
footer {
  background-color: #bca88f;
  padding: 20px;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 0.9em;
}

.social a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

/* Sección de Redes Sociales */
ul.social {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 40px 0;
  gap: 6px;
}

ul.social a {
  text-decoration: none;
  font-size: 1.2em;
  color: #fff;
  background-color: #b4a79e;
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

ul.social a i {
  font-size: 1.5em;
  margin-right: 10px;
}

ul.social a:hover {
  background-color: #a69180;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Colores específicos para cada red social */
ul.social a:nth-child(1) {
  background-color: #e1306c; /* Instagram Color */
}

ul.social a:nth-child(1):hover {
  background-color: #c13584; /* Instagram Hover Color */
}

ul.social a:nth-child(2) {
  background-color: #010101; /* TikTok Color */
}

ul.social a:nth-child(2):hover {
  background-color: #111; /* TikTok Hover Color */
}

ul.social a:nth-child(3) {
  background-color: #ff0000; /* YouTube Color */
}

ul.social a:nth-child(3):hover {
  background-color: #cc0000; /* YouTube Hover Color */
}
ul.social a:nth-child(4) {
  background-color: #000; /* YouTube Hover Color */
}

.social-icon {
  user-select: none;
}

.social-x {
  text-decoration: none;
  font-size: 1.2em;
  color: #fff;
  background-color: #000000; /* Negro para representar la marca X */
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

.social-x img {
  width: 36px;
  height: 33px;
  margin-right: 10px; /* Espacio entre el ícono y el texto */
}

.social-x:hover {
  background-color: #444444; /* Cambia a un tono gris claro para el hover */
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Estilo para el menú hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-right: 20px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px;
  transition: all 0.3s ease;
}

/* Animación de abrir/cerrar menú */
.hamburger.open div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open div:nth-child(2) {
  opacity: 0;
}

.hamburger.open div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Ajustes responsivos para el header en pantallas grandes */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 5em;
  }

  .hero h2 {
    font-size: 4.5em;
  }

  .cta-btn {
    font-size: 2em;
  }
}

@media (max-width: 1283px) {
  .hamburger {
    display: flex; /* Mostrar el ícono del menú hamburguesa */
  }

  .hero h1 {
    font-size: 3.69em;
  }

  .hero h2 {
    font-size: 3.19em;
  }

  nav {
    flex-direction: column;
    align-items: start;
    padding: 20 20px;
  }

  nav ul {
    display: none; /* Ocultar la lista por defecto */
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(188, 168, 143, 0.95);
    padding: 20px;
    z-index: 999;
    border-radius: 8px;
  }

  nav ul.open {
    display: flex; /* Mostrar el menú cuando está abierto */
  }

  nav ul li {
    margin: 15px 0;
  }

  #google_translate_element {
    position: absolute;
    top: -18px; /* Posiciona en la parte superior */
    right: 79px; /* Posiciona en la parte derecha */
    padding: 5px;
    font-size: 1.2em;
    border-radius: 8px;
    background-color: #e6dcd3; /* Color de fondo siguiendo la guía de diseño */
    color: #5c504b; /* Color de texto */
    border: 2px solid #b4a79e; /* Borde con el color principal de la guía */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: "Astrella", sans-serif; /* Fuente secundaria según la guía */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1100; /* Asegura que esté sobre otros elementos */
  }

  #google_translate_element:hover {
    background-color: #d9cab3; /* Color de fondo más oscuro al pasar el cursor */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  #google_translate_element select {
    background-color: #f2edeb; /* Color de fondo de las opciones */
    color: #5c504b; /* Color de texto de las opciones */
    font-family: "Astrella", sans-serif;
  }
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #d9cab3;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background-color: #998876;
  border-radius: 5px;
}

/* Main Content */
.legal-content {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
  color: #b4a79e;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: #bda18c;
  margin-top: 20px;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 15px;
}

footer .legal-links {
  margin-top: 20px;
}

footer .legal-links a {
  display: inline-block;
  color: #e6dcd3; /* Color secundario de la guía */
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
  font-family: "Gracheva", serif; /* Tipografía secundaria */
  font-size: 1rem;
}

footer .legal-links a:hover {
  color: #fff; /* Cambia a blanco para resaltar cuando el usuario pase el cursor */
}

@media (max-width: 989px) {
  .hamburger {
    display: flex; /* Mostrar el ícono del menú hamburguesa */
  }

  .hero h1 {
    font-size: 2.74em;
  }

  .hero h2 {
    font-size: 2.49em;
  }
}

@media (max-width: 818px) {
  .hamburger {
    display: flex; /* Mostrar el ícono del menú hamburguesa */
  }

  .hero h1 {
    font-size: 2.49em;
  }

  .hero h2 {
    font-size: 2.29em;
  }
}

@media (max-width: 785px) {
  .hero h1 {
    font-size: 5em;
  }

  .hero h2 {
    font-size: 4em;
  }
}

/* Ajuste para dispositivos móviles */
@media (max-width: 768px) {
  .hero-secondary {
    margin-top: 33px;
  }
  section {
    padding: 20px 10px !important;
  }

  h2 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.5em;
  }

  p,
  ul li {
    font-size: 1em;
  }

  ul.social {
    flex-direction: column;
    align-items: center;
  }

  ul.social a {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  #newsletter input {
    width: 100%;
    padding: 15px 0px;
  }

  #newsletter button {
    width: 100%;
    padding: 15px;
  }

  #apertura-agenda,
  #newsletter {
    padding: 40px 20px;
  }

  #countdown {
    font-size: 2em;
  }

  #newsletter h2 {
    font-size: 1.8em;
  }

  #newsletter p {
    font-size: 1.1em;
  }

  #preguntas-frecuentes p,
  #reseñas p {
    font-size: 1em;
  }

  .btn-conocer-mas {
    width: 100%;
    max-width: 250px;
  }

  .hero {
    padding: 20px;
  }

  .hero h1 {
    font-size: 4em; /* Reducir tamaño del título */
  }

  .hero h2 {
    font-size: 3em;
  }

  .logo {
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px; /* Añadir espaciado para mantener separación */
  }

  .text-container {
    max-width: 100%; /* Asegurar que ocupe el 100% del ancho disponible */
    text-align: center;
  }

  header {
    padding-top: 20px; /* Ajustar el padding para pantallas pequeñas */
    padding-bottom: 0px;
  }

  footer {
    padding: 10px;
  }

  footer p {
    font-size: 0.8em;
  }
}

@media (max-width: 578px) {
  .hero h1 {
    font-size: 3em;
  }

  .hero h2 {
    font-size: 2.5em;
  }
}

@media (max-width: 382px) {
  .hero h1 {
    font-size: 2.36em;
  }

  .hero h2 {
    font-size: 2em;
  }
}

.subrayado-marron {
  text-decoration: underline;
  text-decoration-color: #b4a79e; /* Color marrón de la guía de diseño */
  text-decoration-thickness: 2px;
  font-weight: bold; /* Para dar mayor énfasis */
}

button {
  position: relative;
  margin-top: 50px;
  padding: 12px 25px;
  background: #c9b89a;
  font-size: 1.8em;
  font-family: "Gracheva", serif;
  font-weight: 500;
  color: white;
  border: 3px solid #c9b89a;
  border-radius: 50px;
  box-shadow: 0 8px 15px #85715ab3;
  text-shadow: 2px 2px 5px #685c4d59;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.star-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0 #ffefef);
  z-index: -5;
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
  opacity: 0; /* Iniciar invisibles */
}

.star-2 {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
  opacity: 0;
}

.star-3 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
  opacity: 0;
}

.star-4 {
  position: absolute;
  top: 20%;
  left: 40%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
  opacity: 0;
}

.star-5 {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
  opacity: 0;
}

.star-6 {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s ease;
  opacity: 0;
}

button:hover .star-1,
button:hover .star-2,
button:hover .star-3,
button:hover .star-4,
button:hover .star-5,
button:hover .star-6 {
  opacity: 1; /* Al hacer hover, aparecerán con una transición suave */
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover {
  background: transparent;
  color: white;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 0 25px #c9b89a;
}

button:active {
  transform: scale(0.95);
}

button:hover .star-1 {
  position: absolute;
  top: -80%;
  left: -30%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-2 {
  position: absolute;
  top: -25%;
  left: 10%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-3 {
  position: absolute;
  top: 55%;
  left: 25%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-4 {
  position: absolute;
  top: 30%;
  left: 80%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-5 {
  position: absolute;
  top: 25%;
  left: 115%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-6 {
  position: absolute;
  top: 5%;
  left: 60%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.fil0 {
  fill: #fffdef;
}

/* Contenedor principal de la sección de Novedades */
.novedades-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  background: var(--secondary-color);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.novedades-section p {
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.6;
  color: #bda18c; /* Color 3 de la paleta */
  background-color: #e6dcd3; /* Color 2 de la paleta */
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.novedades-section h2 {
  font-family: "Gracheva", sans-serif;
  color: #b4a79e;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.novedades-section h3 {
  font-family: "Gracheva", sans-serif;
  color: #b4a79e;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.novedades-header {
  text-align: center;
  margin-bottom: 40px;
}

.novedades-header h2 {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.novedades-header p {
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.8;
}

/* Contenedor de fases lunares */
.fases-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.fase-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.fase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.fase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.fase-title {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.fase-content {
  font-size: 1rem;
  color: var(--text-color);
}

.fase-content p {
  margin-bottom: 10px;
}

/* Estilo para los tips */
.fase-content .tip {
  font-family: "Astrella", sans-serif;
  font-size: 1rem;
  color: #333;
  background-color: #e6dcd3;
  padding: 8px 12px;
  border-left: 5px solid #bda18c;
  margin-top: 12px;
  margin-bottom: 12px;
  line-height: 1.5;
  border-radius: 6px;
  display: block;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.fase-content .tip::before {
  content: "Tip:";
  font-family: sans-serif;
  font-weight: bold;
  color: #615852;
  margin-right: 6px;
  display: inline-block;
}

/* Botón CTA */
.cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  font-family: "Gracheva", sans-serif;
  background-color: #b4a79e;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
}

.cta-button:hover {
  background: var(--accent-color);
}

/* Novedades especiales */
.seccion-novedades {
  max-width: 1200px;
  margin: 80px auto;
  padding: 20px;
  background-color: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.seccion-novedades h2 {
  text-align: center;
  font-family: var(--font-secondary);
  color: #b4a79e;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.novedad-item {
  margin-bottom: 40px;
}

.novedad-item h3 {
  font-family: "Gracheva", sans-serif;
  color: #b4a79e;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.novedad-item p {
  font-family: sans-serif;
  font-size: 1rem;
  color: #bda18c;
  background-color: #e6dcd3;
  padding: 10px;
  border-radius: 5px;
}

.novedad-item .cta-button {
  margin-top: 15px;
}

/* Imágenes de las fases */
.fase-image {
  display: block;
  margin-bottom: 20px;
}

/* Tooltips para las fases */
.tooltip {
  font-family: sans-serif;
  font-size: 0.9rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 12px;
  border-radius: 5px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  max-width: 200px;
  animation: fadeIn 0.5s ease;
}

/* Detalles adicionales desplegables */
.detalles-adicionales {
  background-color: #e6dcd3;
  color: #333;
  margin-top: 15px;
  padding: 15px;
  border-radius: 5px;
  transform-origin: top;
}

.detalles-adicionales p {
  font-family: sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
}

.cerrar-detalles {
  font-family: sans-serif;
  font-size: 0.9rem;
  background: #b4a79e;
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Animaciones */
@keyframes highlightFade {
  0% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes expandIn {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes collapseOut {
  0% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .novedades-header h2 {
    font-size: 2.2rem;
  }

  .fase-card {
    padding: 20px;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .tooltip {
    font-size: 0.8rem;
    max-width: 150px;
  }
}

/* Contenedor principal de videos */
.video-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; /* Espacio entre los videos */
  padding: 20px; /* Espacio interno del contenedor */
  max-width: 1200px; /* Máximo ancho del contenedor para mantener la legibilidad */
  margin: 0 auto; /* Centrar el contenedor en la página */
}

/* Estilos para cada iframe de video */
.video-container iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* Mantiene la relación de aspecto 16:9 */
  border: none; /* Elimina el borde por defecto */
  border-radius: 8px; /* Bordes redondeados para una apariencia moderna */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra sutil para destacar los videos */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transiciones suaves para efectos interactivos */
}

/* Efecto al pasar el cursor sobre el video */
.video-container iframe:hover {
  transform: scale(1.05); /* Ligeramente agranda el video */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Sombra más intensa al interactuar */
}

/* Estilo para las imágenes de las fases */
.fase-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px; /* Espacio entre la imagen y el contenido */
}