
header {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
  
  .parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    perspective: 1px;
  }
  
  .parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
  }
  
  .layer1 {
    background-image: url('assets/cielo.webp');
    transform: translateZ(-1px) scale(2);
    max-width: 1900px;
  }
  
  .layer2 {
    background-image: url('assets/montanas.webp');
    transform: translateZ(-0.5px) scale(1.5);
    max-width: 1900px;
  }
  
  .layer3 {
    background-image: url('assets/invernadero.webp');
    transform: translateZ(0);
    max-width: 1900px;
  }
  
  .layer4{
    background-image: url('assets/letrasmateoehijo.webp');
    transform: translateZ(0);
    width: 70%; /* Ajusta al 90% del ancho de la pantalla */
    height: auto; /* Permite que la altura se ajuste automáticamente */
    background-size: contain; /* Asegura que la imagen de fondo no se recorte */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita repeticiones del fondo */
  }
  
  h1 {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
  }
  
.aniversario img{
  max-width: 80%;
}

.servicios {
  display: inline-flex; /* Alinea el texto y el ícono en una fila */
  align-items: center; /* Centra verticalmente el texto y el ícono */
  text-decoration: none;
  color: inherit; /* Mantiene el color del texto */
  font-size: 16px; /* Ajusta el tamaño del texto */
  font-weight: bold;
}


.icono {
  width: 16px; 
  height: 16px; 
  margin-left: 8px; 
}

.mapa{
  display: flex;
  padding: 0 20% 0 20%;
  align-items: center;
}
.mapa img{
  max-width: 600px;

}

.mapa div{
  text-align: left;
}
.mapa div h2{
  font-size: 2em;
  color: #31466D;
}

.mapa div p{
  margin-top: 10px;
  color: rgb(107 114 128);
}

.section-left {
  flex-direction: row; /* Imagen a la izquierda, texto a la derecha */
}

/* Secciones */
section {
  padding: 40px 0 40px 0;
  text-align: center;
}

section:nth-child(even) {
  background-color: #f4f4f4;
}

/*SERVICIOS*/

h3{
  color:#31466D;
  font-size: 3em;
}
/* Estilos generales para la sección de servicios */
.services {
  display: flex;
  justify-content: space-between;
  gap: 20px; /* Espacio entre los rectángulos */
  margin: 20px 10% 20px 10%;
}

.service {
  position: relative;
  width: 20%;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  
}

.service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(49, 70, 109, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  border-radius: 10px;
  opacity: 1;
}

.service:hover .overlay {
  background-color: rgba(49, 70, 109, 0.8);
}

h2 {
  margin: 0;
  font-size: 24px;
  z-index: 2;
}

.description {
  opacity: 0;
  margin-top: 10px;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.service:hover .description {
  opacity: 1;
}

.service:hover h2{
  border-bottom: 1px solid white;
  transition: opacity 0.3s ease;
}

@media (max-width: 980px) {
  .layer4{
    width: 900%; /* Ajusta al 90% del ancho de la pantalla */
    height: auto; /* Permite que la altura se ajuste automáticamente */
    background-size: contain; /* Asegura que la imagen de fondo no se recorte */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita repeticiones del fondo */
  }
}
/* Responsividad para pantallas más pequeñas */
@media (max-width: 768px) {
  .layer4{
    width: 100%; /* Ajusta al 90% del ancho de la pantalla */
    height: auto; /* Permite que la altura se ajuste automáticamente */
    background-size: contain; /* Asegura que la imagen de fondo no se recorte */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita repeticiones del fondo */
  }

  .mapa {
    flex-direction: column; /* Cambia a columna en pantallas pequeñas */
    align-items: flex-start; /* Alinear a la izquierda */
}

  .mapa img {
      width: 90%;
      margin-right: 0; /* Elimina el margen a la derecha */
      margin-bottom: 20px; /* Añade margen debajo de la imagen */
  }
  .services {
      flex-direction: column; /* Cambia a columna en pantallas pequeñas */
      gap: 20px;
      align-items: center; /* Mantén el espacio entre los elementos */
  }

  .service {
      width: 80%; /* Los servicios ocuparán el 100% del ancho disponible */
      margin-bottom: 20px; /* Añade un margen inferior para separarlos en columnas */
  }

  .title-service {
    font-size: 1.2rem; /* Reducir tamaño del título */
}

.description {
    font-size: 0.9rem; /* Reducir tamaño de la descripción */
}
.aniversario img{
  max-width: 100%;
}




}




