body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: #397f65;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 60px;
}

nav a {
  font-weight: bold;
  margin-left: 1.5rem;
}

.hero {
  position: relative;
  text-align: center;
  color: white;
}

.hero-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.boton-principal {
  background-color: #397f65;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.boton-principal:hover {
  background-color: #2e6c56;
}

.servicios {
  padding: 4rem 2rem;
  text-align: center;
}

.grid-servicios {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.servicio {
  max-width: 250px;
}

.servicio img {
  height: 80px;
  margin-bottom: 1rem;
}

.tres-pasos {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.pasos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.paso {
  max-width: 250px;
}

.paso img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #397f65;
}
.footer {
  background-color: #f3f3f3;
  padding: 1.5rem 0;
  text-align: center;
  margin-top: 4rem;
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.footer-container img {
  width: 30px;
  height: 30px;
  transition: transform 0.2s;
}

.footer-container img:hover {
  transform: scale(1.1);
}
.cotizacion {
  text-align: center;
  margin: 40px 0 20px 0;
}

.btn-wsp {
  background-color: #6DB57B; /* Verde suave como en la landing */
  color: white;
  padding: 12px 28px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-wsp:hover {
  background-color: #589a66;
}
.footer {
  background-color: #f5f5f5;
  padding: 40px 20px 20px 20px;
  text-align: center;
}

.footer-contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.logo-footer img {
  width: 120px;
  height: auto;
}

.contacto-footer p {
  margin: 5px 0;
  font-size: 14px;
  color: #333;
}

.redes-footer a img {
  width: 30px;
  margin: 0 10px;
  transition: transform 0.3s;
}

.redes-footer a img:hover {
  transform: scale(1.1);
}

.copyright {
  margin-top: 20px;
  font-size: 12px;
  color: #777;
}

/* Responsive para pantallas grandes */
@media (min-width: 768px) {
  .footer-contenido {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .logo-footer,
  .contacto-footer,
  .redes-footer {
    width: 30%;
  }

  .footer {
    text-align: left;
  }
}
