:root{
  --green:#10963c;
  --green-dark:#08782e;
  --text:#101828;
  --muted:#5f6b7a;
  --line:#e4e7ec;
  --soft:#f7faf8;
  --shadow:0 18px 50px rgba(16,24,40,.12);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:'Segoe UI',Arial,sans-serif;
  color:var(--text);
  background:#fff;
}

a{
  text-decoration:none;
  color:inherit;
}

.site-header{
  height:102px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:0 7%;
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 1px 0 rgba(16,24,40,.08);
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
  flex-shrink:0;
}

.brand img{
  width:86px;
  height:auto;
  display:block;
}

.brand strong{
  display:block;
  font-size:28px;
  line-height:1;
  font-weight:800;
}

.brand small{
  display:block;
  margin-top:8px;
  color:#4b5563;
  font-size:14px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:42px;
  font-size:17px;
  font-weight:800;
}

.main-nav a{
  position:relative;
  padding:38px 0;
}

.main-nav a.active,
.main-nav a:hover{
  color:var(--green);
}

.main-nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:22px;
  height:3px;
  background:var(--green);
  border-radius:3px;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.btn-claim,
.btn-login{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 22px;
  border-radius:9px;
  font-size:16px;
  font-weight:900;
  text-decoration:none;
  transition:.2s ease;
  white-space:nowrap;
}

.btn-claim{
  background:#2563eb;
  border:1.5px solid #2563eb;
  color:#fff !important;
}

.btn-claim:hover{
  background:#1d4ed8;
  border-color:#1d4ed8;
}

.btn-login{
  background:#fff;
  color:#10963c !important;
  border:1.5px solid #10963c;
}

.btn-login:hover{
  background:#10963c;
  color:#fff !important;
}

.hero{
    position:relative;
    width:100%;
    overflow:hidden;
}

.hero-img{
    width:100%;
    display:block;
    height:auto;
    margin-top:-140px;
}

.hero-spacer{height:100%}

.hero .hero-links{
  position:absolute;
  left:87px;
  top:525px;
  display:flex;
  gap:88px;
  z-index:10;
}

.hero .hero-links .hero-hotspot{
  display:block;
  height:72px;
  border-radius:8px;
}
/* BOTONES HERO */

.hero{
    position:relative;
}

.hero-buttons{
    position:absolute;
    left:7%;
    bottom:12%;
    display:flex;
    gap:18px;
}

.hero-btn{
    padding:16px 28px;
    border-radius:10px;
    font-size:17px;
    font-weight:800;
    text-decoration:none;
    transition:.2s ease;
}

.hero-btn-primary{
    background:#10963c;
    color:#fff;
    border:2px solid #10963c;
}

.hero-btn-primary:hover{
    background:#08782e;
    border-color:#08782e;
}

.hero-btn-secondary{
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(4px);
    color:#fff;
    border:2px solid #fff;
}

.hero-btn-secondary:hover{
    background:rgba(255,255,255,.25);
}

@media(max-width:760px){

    .hero-buttons{
        position:static;
        display:flex;
        flex-direction:column;
        gap:12px;
        padding:20px;
        background:#fff;
    }

    .hero-btn{
        text-align:center;
    }

    .hero-btn-secondary{
        background:#10963c;
        border-color:#10963c;
        color:#fff;
    }
}

.hero .hero-links .hero-hotspot.contacto{width:260px}
.hero .hero-links .hero-hotspot.servicios{width:330px}

.stats{
  width:min(1200px,79%);
  margin:-15px auto 0;
  background:#fff;
  border-radius:13px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  position:relative;
  z-index:3;
  overflow:hidden;
}

.stats article{
  text-align:center;
  padding:30px 20px;
  position:relative;
}

.stats article:not(:last-child)::after{
  content:"";
  position:absolute;
  top:28px;
  right:0;
  width:1px;
  height:72px;
  background:#d9dee7;
}

.stat-icon{
  display:block;
  color:var(--green);
  font-size:34px;
  line-height:1;
  margin-bottom:14px;
}

.stats article:nth-child(1) .stat-icon{color:#f59e0b}
.stats article:nth-child(2) .stat-icon{color:#2563eb}
.stats article:nth-child(3) .stat-icon{color:#ef4444}
.stats article:nth-child(4) .stat-icon{color:#8b5cf6}

.stats strong{
  display:block;
  font-size:22px;
  font-weight:900;
}

.stats small{
  display:block;
  margin-top:10px;
  font-size:15px;
  color:#111827;
}

.section{padding:72px 7%}

.section-kicker{
  text-transform:uppercase;
  color:var(--green);
  font-weight:900;
  letter-spacing:.03em;
  margin:0 0 10px;
  text-align:center;
}

.section h1,
.section h2{
  margin:0;
  text-align:center;
  font-size:31px;
  line-height:1.15;
}

.services{padding-top:58px}

.cards{
  margin:30px auto 0;
  max-width:1200px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.service-card{
  background:#fff;
  border:1px solid #edf0f3;
  border-radius:13px;
  padding:30px;
  display:grid;
  grid-template-columns:76px 1fr;
  gap:20px;
  align-items:flex-start;
  box-shadow:0 8px 24px rgba(16,24,40,.08);
  transition:.2s ease;
}

.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 40px rgba(16,24,40,.13);
}

.service-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#eaf6ee;
  display:grid;
  place-items:center;
}

.service-icon svg{
  width:34px;
  height:34px;
  fill:var(--green);
}

.service-card:nth-child(1) .service-icon{background:#eaf6ee}
.service-card:nth-child(1) .service-icon svg{fill:#10963c}

.service-card:nth-child(2) .service-icon{background:#eef4ff}
.service-card:nth-child(2) .service-icon svg{fill:#2563eb}

.service-card:nth-child(3) .service-icon{background:#fff7ed}
.service-card:nth-child(3) .service-icon svg{fill:#f97316}

.service-card h2{
  text-align:left;
  font-size:20px;
  margin:0 0 12px;
}

.service-card p{
  margin:0;
  color:#4b5563;
  line-height:1.6;
  font-size:15px;
}

.more{
  display:inline-block;
  margin-top:22px;
  color:var(--green);
  font-weight:800;
}

.why{
  background:var(--soft);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.why .section-kicker,
.why h2{text-align:left}

.section-text p:last-child{
  color:#4b5563;
  font-size:17px;
  line-height:1.8;
}

.why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.why-grid div{
  background:#fff;
  border-radius:12px;
  padding:22px;
  border:1px solid #e7eceb;
}

.why-grid strong{
  display:block;
  font-size:17px;
}

.why-grid span{
  display:block;
  color:#667085;
  margin-top:9px;
  line-height:1.5;
}

.process h2{text-align:center}

.steps{
  max-width:1120px;
  margin:32px auto 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.steps article{
  border:1px solid #e9edf2;
  border-radius:14px;
  padding:28px;
  background:#fff;
}

.steps span{
  color:var(--green);
  font-weight:900;
  font-size:14px;
}

.steps h3{
  margin:12px 0 10px;
  font-size:20px;
}

.steps p{
  margin:0;
  color:#5f6b7a;
  line-height:1.6;
}

.contact{
  background:#f8fafc;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px;
  align-items:start;
}

.contact .section-kicker,
.contact h2{text-align:left}

.contact-info,
.contact-form{
  background:#fff;
  border-radius:16px;
  padding:34px;
  border:1px solid #e8edf3;
  box-shadow:0 10px 28px rgba(16,24,40,.06);
}

.contact-info p{
  color:#5f6b7a;
  line-height:1.7;
}

.contact-info ul{
  list-style:none;
  padding:0;
  margin:22px 0 0;
}

.contact-info li{
  padding:8px 0;
  color:#344054;
}

.contact-form label{
  display:block;
  margin:0 0 7px;
  font-weight:800;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid #d6dce5;
  border-radius:9px;
  padding:14px 15px;
  margin-bottom:16px;
  font:inherit;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--green);
  box-shadow:0 0 0 4px rgba(16,150,60,.12);
}

.contact-form button{
  border:0;
  background:var(--green);
  color:#fff;
  border-radius:9px;
  padding:15px 24px;
  font-weight:900;
  cursor:pointer;
}

.contact-form button:hover{
  background:var(--green-dark);
}

.whatsapp{
  position:fixed;
  right:42px;
  bottom:34px;
  width:68px;
  height:68px;
  border-radius:50%;
  background:#22c55e;
  display:grid;
  place-items:center;
  box-shadow:0 14px 32px rgba(34,197,94,.38);
  z-index:60;
}

.whatsapp svg{
  width:42px;
  height:42px;
  fill:#fff;
}

.whatsapp:hover{transform:scale(1.04)}

@media(max-width:1200px){
  .site-header{
    padding:0 4%;
    gap:18px;
  }

  .main-nav{
    gap:24px;
    font-size:15px;
  }

  .btn-claim,
  .btn-login{
    padding:12px 15px;
    font-size:14px;
  }
}
@media(max-width:1400px){
  .hero{
    background-position:center center;
  }
}

@media(max-width:1100px){
  .hero{
    height:430px;
    background-position:58% center;
  }
}

@media(max-width:760px){
  .hero{
    height:260px;
    background-position:62% center;
  }
}

@media(max-width:1100px){
  .site-header{
    height:auto;
    min-height:86px;
    flex-wrap:wrap;
    padding:14px 4%;
  }

  .brand img{width:72px}
  .brand strong{font-size:23px}

  .main-nav{
    order:3;
    width:100%;
    justify-content:center;
  }

  .header-actions{
    margin-left:auto;
  }

  .hero{height:430px}
  .hero .hero-links{display:none}

  .stats{
    width:90%;
    grid-template-columns:repeat(2,1fr);
  }

  .stats article:nth-child(2)::after{display:none}

  .cards,
  .steps{grid-template-columns:1fr}

  .why,
  .contact{grid-template-columns:1fr}
}

@media(max-width:760px){
  .site-header{
    position:relative;
    display:block;
    padding:16px 20px;
    height:auto;
    min-height:auto;
  }

  .brand{
    justify-content:center;
    gap:12px;
  }

  .brand img{
    width:64px;
    max-width:64px;
  }

  .brand strong{font-size:24px}

  .brand small{
    font-size:13px;
    margin-top:5px;
  }

  .main-nav{
    margin-top:14px;
    width:100%;
    display:flex;
    justify-content:center;
    gap:18px;
    font-size:14px;
    flex-wrap:wrap;
  }

  .main-nav a{padding:8px 0}
  .main-nav a.active::after{display:none}

  .header-actions{
    width:100%;
    justify-content:center;
    margin-top:14px;
    display:flex;
    gap:10px;
  }

  .btn-claim,
  .btn-login{
    padding:12px 14px;
    font-size:14px;
  }

  .hero{
    height:250px;
    background-size:cover;
    background-position:center top;
  }

  .hero .hero-links{display:none!important}

  .stats{
    margin:0;
    width:100%;
    border-radius:0;
    grid-template-columns:1fr 1fr;
    box-shadow:none;
  }

  .stats article{padding:22px 10px}
  .stats article::after{display:none!important}
  .stats strong{font-size:19px}
  .stats small{font-size:13px}

  .section{padding:48px 20px}

  .section h1,
  .section h2{font-size:26px}

  .cards{gap:14px}

  .service-card{
    grid-template-columns:1fr;
    padding:24px;
  }

  .why-grid{grid-template-columns:1fr}

  .contact-info,
  .contact-form{padding:24px}

  .whatsapp{
    right:22px;
    bottom:22px;
    width:58px;
    height:58px;
  }

  .whatsapp svg{
    width:36px;
    height:36px;
  }
}
.service-details{
    max-width:1200px;
    margin:auto;
}

.detail-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:32px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(16,24,40,.06);
}

.detail-card h2{
    text-align:left;
    margin-bottom:14px;
    font-size:26px;
}

.detail-card p{
    color:#4b5563;
    line-height:1.8;
    font-size:16px;
}
.service-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(16,24,40,.55);
  z-index:9999;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.service-modal.show{
  display:flex;
}

.service-modal-content{
  background:#fff;
  max-width:620px;
  width:100%;
  border-radius:20px;
  padding:36px;
  position:relative;
  box-shadow:0 24px 70px rgba(16,24,40,.25);
}

.service-modal-content h2{
  text-align:left;
  margin:0 0 14px;
  font-size:28px;
}

.service-modal-content p{
  color:#4b5563;
  line-height:1.8;
  font-size:16px;
  margin:0;
}

.service-modal-close{
  position:absolute;
  right:18px;
  top:14px;
  border:0;
  background:#f3f4f6;
  width:36px;
  height:36px;
  border-radius:50%;
  font-size:24px;
  cursor:pointer;
}