@font-face {
  font-family: "Atilla";
  src: url("/fonts/Atilla Normal.ttf");
}

:root {
  --color-primary: #4caf50;
  --color-secondary: #45a049;
  --color-text: #333;
  --color-background: #e9e9e9;
  --color-card: #fff;
  --color-border: #ddd;
}

/* Hacemos que el contenedor principal ocupe toda la pantalla */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Atilla", sans-serif;
  background-color: var(--color-background);
  color: var(--color-text);
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
  /* Hace que este contenedor ocupe todo el espacio disponible */
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;
}

/* Estilos del logo */
.logo-container {
  text-align: center;
  margin: 20px 0;
}

.logo-container img {
  width: 300px;
  transition: filter 0.3s ease;
}

.logo-container img:hover {
  filter: grayscale(100%);
}

h1,
h2 {
  text-align: center;
  color: var(--color-primary);
}

h4 {
  color: var(--color-primary);
  font-size: 1.4rem;
}

/* Estilos para el botón "Leer más" */
#leerMasBtn {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  font-family: "Atilla", sans-serif;
  font-size: 1em;
}

#leerMasBtn:hover {
  background-color: var(--color-secondary);
}

/* Estilos para la modal */
.modal {
  display: none; /* Oculta la modal por defecto */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semi-transparente */
}

.modal-contenido {
  background-color: var(--color-card);
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  position: relative;
}

.modal-contenido p {
  margin-top: 50px;
  text-align: justify; /* Justifica el texto */
  line-height: 1.6; /* Mejora la legibilidad con un interlineado adecuado */
}

.cerrar {
  color: var(--color-text);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.cerrar:hover {
  color: var(--color-primary);
}
.intro {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1.1em;
}

/* Sección de Paquetes */
.paquetes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.paquete {
  position: relative; /* Necesario para posicionar la imagen de manera absoluta dentro del paqeute */
  background: var(--color-card);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 400px;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.paquete:hover {
  transform: scale(1.05);
}

.paquete h3 {
  font-size: 1.8rem;
  color: var(--color-primary);
}

.paquete p {
  font-size: 0.99em;
}
.gagos-image {
  filter: grayscale(100%); /* Convierte la imagen a escala de grises */
  vertical-align: middle;
  width: 55px;
  height: auto;
}
.gagos-image2 {
  /* Convierte la imagen a tonos de lila y la desatura al 100% */
  filter: saturate(50%);

  vertical-align: middle;
  width: 55px;
  height: auto;
}
.gagos-image3 {
  vertical-align: middle;
  width: 55px;
  height: auto;
}

.lista-caracteristicas {
  text-align: left;
  list-style-type: none;
  padding: 0;
}

.lista-caracteristicas li {
  margin-bottom: 10px;
}

.tabla-precios {
  width: 100%;
  border-collapse: collapse;
  margin-top: auto; /* Esto alinea la tabla al fondo del div */
}

.tabla-precios th,
.tabla-precios td {
  border: 1px solid var(--color-border);
  padding: 8px;
  text-align: center;
}

.tabla-precios th {
  background-color: var(--color-primary);
  color: white;
}

.tabla-precios tbody tr:nth-child(odd) {
  background-color: var(--color-background);
}
.lista-caracteristicas i {
  color: #25d366; /* Color verde */
  margin-right: 10px; /* Espacio entre el ícono y el texto */
  font-size: 1.2em; /* Tamaño del ícono */
  transition: transform 0.3s ease; /* Animación al hacer hover */
}

.lista-caracteristicas i:hover {
  transform: scale(1.2); /* Aumenta el tamaño de la palomita al hacer hover */
}
/* Estilos para el botón de WhatsApp con resplandor */
.btn-whatsapp {
  display: inline-block;
  background-color: #25d366; /* Color de WhatsApp */
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  margin-top: 20px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.5); /* Resplandor inicial */
  animation: resplandor 1s infinite alternate; /* Animación de resplandor */
}

.btn-whatsapp:hover {
  background-color: #128c7e; /* Color de WhatsApp más oscuro */
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.8); /* Resplandor más intenso al hacer hover */
}

.btn-whatsapp i {
  margin-left: 10px; /* Espacio entre el texto y el ícono */
  font-size: 1.2em; /* Tamaño del ícono */
  vertical-align: middle; /* Alinea el ícono verticalmente con el texto */
}

/* Animación de resplandor */
@keyframes resplandor {
  0% {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5); /* Resplandor suave */
  }
  100% {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.9); /* Resplandor más intenso */
  }
}
footer {
  background-color: var(--color-primary);
  color: white;
  text-align: center;

  margin-top: auto;
  /* Empuja el footer hacia abajo cuando el contenido es corto */
  width: 100%;
}

footer a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

/* Estilos para el modal flotante */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-content {
  position: relative;
  width: 520px; /* Ajuste para formato vertical */
  height: 770px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-content iframe {
  width: 100%;
  height: 100%;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 10%;
  cursor: pointer;
  font-size: 22px;
}

.video-button {
  display: flex;
  align-items: center;
  gap: 8px; /* Espacio entre el icono y el texto */
  background-color: #ff0000; /* Rojo YouTube */
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-button:hover {
  background-color: #cc0000; /* Rojo más oscuro en hover */
}

.video-button i {
  font-size: 20px; /* Tamaño del icono */
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8em;
  }

  h2,
  h3 {
    font-size: 1.3em;
  }

  .intro p {
    font-size: 0.9em;
  }

  .paquete h3 {
    font-size: 1.8em;
  }

  .lista-caracteristicas li {
    font-size: 0.9em;
  }
  .paquete p {
    font-size: 1em;
  }

  .logo-container img {
    width: 200px;
  }
  .paquete:hover {
    transform: scale(1);
  }
  .modal-contenido {
    width: 85%;
    margin: 15% auto;
  }
}
