body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  border-bottom: 1px solid #000;
}

.logo img {
  height: 40px;
}

.nav-links a {
  margin: 0 1rem;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.social-icons a {
  margin-left: 1rem;
  color: #000;
  font-size: 1.1rem;
}

.swiper {
  width: 100%;
  height: 90vh;
  position: relative;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-verde {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 100, 50, 0.4); /* verde con poca opacidad */
  z-index: 1;
}

.overlay-text {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: white;
  padding: 1rem;
}


.overlay-text h2 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
}

.overlay-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.btn-slider {
  display: inline-block;
  margin-top: 1rem;
  background-color: white;
  color: #004032;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-slider:hover {
  background-color: #b2d8c4;
}

.presentacion {
  background-color: white;
  padding: 5rem 2rem;
  text-align: center;
  color: #004032;
  max-width: 1000px;
  margin: 0 auto;
}

.presentacion-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #004032;
}

.decoracion-linea {
  width: 60px;
  height: 4px;
  background-color: #004032;
  margin: 1rem auto;
}

.presentacion-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #222;
}

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.seccion-dos-columnas {
  display: flex;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  align-items: center;
  background-color: #004032;
}

.columna-texto {
  flex: 1;
  min-width: 280px;
  padding-left: 5rem;
}

.columna-texto h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.columna-texto p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffffff;
}

.columna-imagenes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 280px;
  align-items: center;
}

.fila-arriba {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.fila-arriba img {
  width: 25%;
  border-radius: 8px;
  object-fit: cover;
  justify-content: center;
}
.fila-abajo {
  display: flex;
  justify-content: center;
  width: 100%;
}

.fila-abajo img {
  width: 53%;
  border-radius: 8px;
  object-fit: cover;
  justify-content: center;
}

.botones-whatsapp {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-wsp {
  background-color: #25d366;
  color: white;
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-wsp:hover {
  background-color: #1ebe57;
}

.seccion-altares {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
}

.columna-imagen {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.columna-imagen img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
}

.columna-contenido {
  flex: 1;
  min-width: 300px;
}

.columna-contenido h2 {
  font-size: 2rem;
  color: #004032;
  margin-bottom: 1rem;
}

.columna-contenido p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #222;
  margin-bottom: 1.5rem;
}

.columna-contenido .btn-wsp {
  background-color: #25d366;
  color: white;
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.columna-contenido .btn-wsp:hover {
  background-color: #1ebe57;
}

/* Responsivo */
@media (max-width: 768px) {
  .seccion-altares {
    flex-direction: column;
  }

  .columna-imagen,
  .columna-contenido {
    text-align: center;
  }
}

.servicios-slider {
  margin-top: 4rem;
  position: relative;
}

.serviciosSwiper {
  width: 100%;
  height: 85vh;
}

.servicio-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servicio-slide .overlay-verde {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 64, 50, 0.5);
  z-index: 1;
}

.servicio-contenido {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  max-width: 700px;
  color: white;
  padding: 2rem;
}


.servicio-contenido h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.servicio-contenido p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.servicio-contenido .btn-slider {
  background-color: white;
  color: #004032;
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.servicio-contenido .btn-slider:hover {
  background-color: #b2d8c4;
}

.seccion-contacto {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f4f4f4;
}

.columna-contacto-info {
  flex: 1;
  min-width: 280px;
  color: #004032;
}

.columna-contacto-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.columna-contacto-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.columna-contacto-formulario {
  flex: 1;
  min-width: 280px;
}

.columna-contacto-formulario form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.columna-contacto-formulario input,
.columna-contacto-formulario button {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.columna-contacto-formulario button {
  background-color: #004032;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.columna-contacto-formulario button:hover {
  background-color: #007455;
}

.footer {
  background-color: #007455;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  margin-top: 4rem;
  font-size: 0.9rem;
}

.formulario-logo {
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.formulario-logo img {
  max-width: 180px;
  height: auto;
}


/* Responsivo */
@media (max-width: 768px) {
  .seccion-dos-columnas {
    flex-direction: column;
  }
  .seccion-altares {
    flex-direction: column;
  }

  .columna-imagen,
  .columna-contenido {
    text-align: center;
  }
}

