* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #f7faf8;
  color: #1b1f1d;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e7ece9;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}


.logo {
  width: 100%;
  max-width: 150px;
  height: auto;
}


.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu a {
  color: #26312c;
  font-weight: 600;
  transition: 0.3s;
}

.menu a:hover {
  color: #0d8a53;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-primary {
  background: #0d8a53;
  color: white;
  box-shadow: 0 10px 24px rgba(13, 138, 83, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #0b7748;
}

.btn-secondary {
  background: white;
  color: #15211c;
  border: 1px solid #dbe7e0;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: #0d8a53;
  color: #0d8a53;
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: #34423c;
  font-weight: 500;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.info-box {
  width: 100%;
  background: white;
  border: 1px solid #e3ece6;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.info-box h2 {
  margin-bottom: 16px;
  color: #0d8a53;
  font-size: 1.8rem;
}

.info-box p {
  margin-bottom: 10px;
  color: #44554d;
}

.seo-text {
  padding: 26px 0;
  background: #0f1512;
  color: #f0f5f2;
}

.seo-text p {
  text-align: center;
  font-size: 1rem;
}

.services,
.benefits,
.location,
.faq,
.contact {
  padding: 80px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 12px;
  color: #101513;
}

.section-heading p {
  color: #4b5c54;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: white;
  border: 1px solid #e4ece7;
  border-radius: 22px;
  padding: 28px;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #e8f7ef;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #13211a;
}

.service-card p {
  color: #50625a;
}

.benefits {
  background: #edf7f1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit-item {
  background: white;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid #dde9e2;
}

.benefit-item h3 {
  margin-bottom: 10px;
  color: #122019;
}

.benefit-item p {
  color: #4d5e57;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.location-text h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.location-text p {
  color: #4d5e57;
  margin-bottom: 18px;
}

.location-list {
  list-style: none;
  display: grid;
  gap: 10px;
  font-weight: 600;
  color: #203129;
}

.map-box {
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #dfe8e2;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.05);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  background: white;
  border: 1px solid #e2ebe5;
  border-radius: 18px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #15211c;
}

.faq-list p {
  margin-top: 12px;
  color: #4c5d55;
}

.contact-box {
  background: linear-gradient(135deg, #0d8a53, #0b6d42);
  border-radius: 30px;
  padding: 40px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.contact-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.contact-box p {
  max-width: 650px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact .btn-primary {
  background: white;
  color: #0d8a53;
}

.contact .btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  color: white;
}

.contact .btn-secondary:hover {
  border-color: white;
  color: white;
}

.footer {
  background: #101513;
  color: #dce7e0;
  padding: 28px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  background: #25d366;
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

@media (max-width: 950px) {
  .hero-grid,
  .location-grid,
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid #e7ece9;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 4%;
    display: none;
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 70px 0 50px;
  }

  .services,
  .benefits,
  .location,
  .faq,
  .contact {
    padding: 60px 0;
  }

  .info-box,
  .service-card,
  .benefit-item,
  .contact-box {
    padding: 22px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 13px 16px;
  }
}

.ofertas {
  padding: 80px 0;
  background: linear-gradient(180deg, #f3f8f5 0%, #ffffff 100%);
}

.ofertas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.oferta-card {
  background: #ffffff;
  border: 1px solid #e3ece6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oferta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.oferta-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #eaf4ee;
}

.oferta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.oferta-content {
  padding: 22px;
}

.oferta-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  background: #0d8a53;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.oferta-content h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #13211a;
}

.oferta-precio {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0d8a53;
}

.oferta-texto {
  margin-bottom: 18px;
  color: #50625a;
}

.oferta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  background: #25d366;
  color: #ffffff;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s ease;
}

.oferta-btn:hover {
  transform: translateY(-2px);
  background: #1fb95a;
}

@media (max-width: 950px) {
  .ofertas-grid {
    grid-template-columns: 1fr;
  }

  .oferta-img {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .ofertas {
    padding: 60px 0;
  }

  .oferta-content {
    padding: 18px;
  }

  .oferta-img {
    height: 200px;
  }
}

.hero {
  position: relative;
  min-height: 90vh;

  display: flex;
  align-items: center;

  background-image: url("img/hero-tecnico.webp");
  background-size: cover;
  background-position: center;

  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.btn-hero {
  background: #25d366;
  color: white;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: bold;
  display: inline-block;
}