body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  color: #333;
  line-height: 1.6;
}
.nav {
  display: flex;
  align-items: center;
  background-color: #2d2d2d;
}
.nav .logo {
  width: 75px;
  margin-bottom: 0;
}
.nav h2 {
  margin: 0;
  color: #babcbd;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  text-align: center;
  padding: 6rem 3rem;
}

.hero {
  position: relative;
  z-index: 0;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/img/banner.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.5; /* ajustá la opacidad acá */
  z-index: -1;
}


.hero h1, .hero p {
  color: white;
}

.logo {
  height: 80px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media(max-width: 1000px) {
  .hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
}
@media(max-width: 600px) {
  .hero h1 {
    font-size: 1.75rem;
  }
}

@media(max-width: 425px) {
  .hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta {
  background: #e6823f;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  width: 250px;
}

.btnConsultar {
  text-align: center;
  width: 100px;
}

.cta:hover {
  background: #C46F35;
}

.cta a {
  color: white;
  text-decoration: none;
}

.cta.green {
  background: #22c55e;
  width: 250px;
}

.cta.green:hover {
  background: #16a34a;
}
.cta.green a {
  color: white;
  text-decoration: none;
}
.container-service {
  padding: 4rem 0;
}
@media(max-width: 1024px) {
  .container-service {
  padding: 0;
}
}
.service {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.service.reverse {
  flex-direction: row-reverse;
}

.service-img {
  width: 25%;
  max-width: 300px;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
@media(max-width: 1000px) {
  .service-img {
    width: 40%;
  }
}
@media(max-width: 600px) {
  .service-img {
    width: 50%;
  }
}

@media(max-width: 425px) {
  .service-img {
    width: 60%;
  }
}

.text h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

ul {
  padding-left: 1.5rem;
}

ul li {
  margin-bottom: 0.5rem;
}

.contacto {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f3f4f6;
  padding: 3rem 1rem;
}

.contacto h2 {
  margin-top: 0;
}

footer {
  background: #fff;
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  padding: 1rem;
}

.whatsapp-button {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: #22c55e;
  padding: 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-button:hover {
  background: #16a34a;
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .service {
    flex-direction: column;
  }
  .service.reverse {
    flex-direction: column;
  }
}

.title-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .title-mobile {
    display: block;
    margin-bottom: 0;
  }
  .title-desktop {
    display: none;
  }
}


.logo_wspp_flotante {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 40px;
    right: 30px;
    background-color: #0df053;
    border-radius: 100%;
    width: 55px;
    height: 55px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.5s;
  }
  .logo_wspp_flotante a {
    height: 35px;
  }
  .logo_wspp_flotante:hover {
    background-color: #f1f1f1;
  }
  .icono_flotante {
    width: 35px;
    height: 35px;
  }

  @media (max-width: 600px) {
    .icono_flotante {
      width: 30px;
      height: 30px;
    }
    .logo_wspp_flotante a {
        height: 30px;
      }
  }