* {
  box-sizing: border-box;
}

:root {
  --bg: #e9eae8;
  --surface: #dedfdd;
  --text: #1d211f;
  --muted: #6f7470;
  --green: #5f765f;
  --blue: #4f7081;
  --white: #ffffff;
  --border: rgba(29, 33, 31, 0.13);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 4.5vw;
  background: rgba(233, 234, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.brand, .footer-brand {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  line-height: 1;
}

.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: .10em;
  font-weight: 700;
}

.brand-sub {
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: .26em;
  font-weight: 600;
}

.main-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
}

.main-nav a {
  color: #424744;
}

.main-nav a:hover {
  color: #000;
}

.nav-cta {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid var(--text);
  border-radius: 999px;
  font-size: 13px;
  transition: .25s;
}

.nav-cta:hover {
  background: var(--text);
  color: var(--bg);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  padding: 5.2vw 4.5vw 4.5vw;
  gap: 6vw;
  align-items: center;
}

.eyebrow, .kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
}

.line {
  height: 2px;
  display: inline-block;
}

.line-green {
  width: 27px;
  background: var(--green);
}

.line-blue {
  width: 18px;
  background: var(--blue);
}

.hero h1 {
  margin: 28px 0 24px;
  max-width: 780px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(54px, 6.3vw, 104px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 600;
}

.hero h1 span {
  color: #5f6561;
}

.hero-copy > p {
  max-width: 620px;
  font-size: clamp(17px, 1.45vw, 21px);
  color: #5a605c;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s, opacity .2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--text);
  color: var(--bg);
}

.button-light {
  background: var(--bg);
  color: var(--text);
}

.text-link {
  font-size: 14px;
  border-bottom: 1px solid var(--text);
  padding-bottom: 3px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  gap: 22px;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-trust strong {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.hero-trust span {
  font-size: 11px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.hero-image {
  width: 100%;
  min-height: 650px;
  height: 74vh;
  max-height: 820px;
  object-fit: cover;
  object-position: 66% center;
  display: block;
  border-radius: 4px;
}

.visual-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  background: rgba(244,243,238,.92);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.section {
  padding: 8vw 4.5vw;
}

.section-heading {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 25px;
  margin-bottom: 60px;
}

.section-index {
  font-size: 12px;
  color: var(--muted);
  padding-top: 7px;
}

.kicker {
  margin: 0 0 13px;
  color: var(--muted);
}

.section-heading h2,
.about h2,
.contact h2 {
  margin: 0;
  max-width: 900px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 4.1vw, 64px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 600;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}

.service-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px 0;
  border-right: 1px solid var(--border);
}

.service-card + .service-card {
  padding-left: 24px;
}

.service-card:last-child {
  border-right: 0;
}

.service-number {
  font-size: 11px;
  color: var(--muted);
}

.service-card h3 {
  margin: 90px 0 15px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
}

.statement {
  position: relative;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--text);
  color: var(--bg);
}

.statement-lines {
  display: flex;
  gap: 7px;
  margin-bottom: 42px;
}

.statement p {
  margin: 0 0 20px;
  color: #afb4b0;
  font-size: 15px;
}

.statement h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(64px, 8vw, 132px);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 600;
}

.statement h2 span {
  color: #aeb8ae;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.method-step {
  min-height: 310px;
  padding: 28px 40px 30px 0;
  border-right: 1px solid var(--border);
}

.method-step + .method-step {
  padding-left: 40px;
}

.method-step:last-child {
  border-right: 0;
}

.method-step span {
  font-size: 11px;
  color: var(--muted);
}

.method-step h3 {
  margin: 70px 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
}

.method-step p {
  max-width: 390px;
  color: var(--muted);
  font-size: 14px;
}

.about {
  padding-top: 2vw;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 7vw;
  background: #e8e7e0;
  padding: 6vw;
}

.about-copy > p:not(.kicker) {
  max-width: 760px;
  color: #5c625e;
  font-size: 16px;
}

.about-values {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-values div {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.about-values span {
  font-size: 11px;
  color: var(--muted);
}

.about-values strong {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.clients {
  overflow: hidden;
}

.client-marquee {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 4vw, 58px);
  letter-spacing: -.04em;
}

.client-marquee i {
  color: #9fa49f;
  font-style: normal;
}

.contact {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  background: var(--blue);
  color: var(--white);
}

.contact .kicker {
  color: rgba(255,255,255,.65);
}

.contact p:last-child {
  max-width: 600px;
  color: rgba(255,255,255,.8);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 60px 4.5vw 35px;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 11px;
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: var(--bg);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 55px;
  }

  .visual-placeholder {
    min-height: 520px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:nth-child(2) {
    border-right: 0;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-step {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .method-step + .method-step {
    padding-left: 0;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 17px 20px;
  }

  .brand-name {
    font-size: 19px;
  }

  .nav-cta {
    padding: 9px 13px;
  }

  .hero, .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    gap: 52px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .visual-placeholder {
    min-height: 430px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card + .service-card {
    min-height: 300px;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .service-card h3 {
    margin-top: 55px;
  }

  .statement {
    min-height: 70vh;
  }

  .statement h2 {
    font-size: 59px;
  }

  .about-panel {
    padding: 40px 25px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-copy {
    align-items: flex-start;
  }
}


.equipment {
  background: #ecebe5;
}

.equipment-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 7vw;
  align-items: start;
}

.equipment-lead {
  max-width: 760px;
  margin: 0 0 38px;
  color: #555c57;
  font-size: 18px;
}

.equipment-list {
  border-top: 1px solid var(--border);
}

.equipment-list > div {
  display: grid;
  grid-template-columns: 50px 260px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.equipment-list span {
  font-size: 11px;
  color: var(--muted);
}

.equipment-list strong {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}

.equipment-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.equipment-feature {
  background: var(--text);
  color: var(--bg);
  padding: 48px;
  min-height: 100%;
}

.equipment-badge {
  display: inline-block;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .14em;
}

.equipment-feature h3 {
  margin: 70px 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.03;
  letter-spacing: -.04em;
}

.equipment-feature > p {
  color: #b6bbb7;
  font-size: 14px;
}

.equipment-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 48px;
  background: rgba(255,255,255,.15);
}

.equipment-mini-grid span {
  padding: 16px;
  background: var(--text);
  font-size: 11px;
  color: #d8dbd8;
}

@media (max-width: 980px) {
  .equipment-layout { grid-template-columns: 1fr; }
  .equipment-list > div { grid-template-columns: 45px 1fr; }
  .equipment-list p { grid-column: 2; }
  .hero-image { min-height: 520px; height: 62vh; }
}

@media (max-width: 620px) {
  .equipment-feature { padding: 32px 24px; }
  .equipment-list > div { grid-template-columns: 34px 1fr; }
  .equipment-mini-grid { grid-template-columns: 1fr; }
  .hero-image { min-height: 430px; height: 55vh; }
}


/* V3 — fondo gris claro + hero limpio + equipamiento minimalista */
.hero-photo {
  position: relative;
  min-height: 650px;
  height: 72vh;
  max-height: 780px;
  overflow: hidden;
  border-radius: 5px;
  background: #d7d9d7;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 22%;
  display: block;
  transform: scale(1.01);
}
.equipment {
  background: #e1e2e0;
}
.section-intro {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.equipment-grid article {
  min-height: 280px;
  padding: 26px 28px 28px 0;
  border-right: 1px solid var(--border);
}
.equipment-grid article + article {
  padding-left: 28px;
}
.equipment-grid article:last-child {
  border-right: 0;
}
.equipment-grid span {
  font-size: 11px;
  color: var(--muted);
}
.equipment-grid h3 {
  margin: 72px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  letter-spacing: -.02em;
}
.equipment-grid p {
  margin: 0;
  max-width: 320px;
  color: var(--muted);
  font-size: 13px;
}
.equipment-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 28px;
}
.equipment-note strong {
  margin-left: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 600;
}
@media (max-width: 980px) {
  .hero-photo { min-height: 520px; height: 60vh; }
  .equipment-grid { grid-template-columns: 1fr 1fr; }
  .equipment-grid article:nth-child(2) { border-right: 0; }
}
@media (max-width: 620px) {
  .hero-photo { min-height: 430px; height: 54vh; }
  .equipment-grid { grid-template-columns: 1fr; }
  .equipment-grid article,
  .equipment-grid article + article {
    min-height: 230px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .equipment-grid h3 { margin-top: 48px; }
}


/* V4 additions */
.hero-photo img { object-position: center center; }
.problem-icon {
  width: 42px; height: 42px; margin-bottom: 28px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--border); border-radius:50%;
  font-size:18px; font-family:"Manrope",sans-serif; color:var(--green);
}
.seo-links {
  display:grid; grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--border); margin-top:36px;
}
.seo-links a {
  min-height:170px; padding:24px 22px 22px 0;
  border-right:1px solid var(--border);
  display:flex; flex-direction:column; justify-content:space-between;
}
.seo-links a + a { padding-left:22px; }
.seo-links a:nth-child(3n) { border-right:0; }
.seo-links strong { font-family:"Manrope",sans-serif; font-size:20px; }
.seo-links span { color:var(--muted); font-size:12px; }
.area-strip {
  padding:28px 4.5vw; border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  display:flex; gap:16px; flex-wrap:wrap; align-items:center;
}
.area-strip strong { font-size:11px; letter-spacing:.16em; margin-right:10px; }
.area-strip span { font-family:"Manrope",sans-serif; font-size:18px; }
.page-hero { padding:7vw 4.5vw 5vw; max-width:1150px; }
.page-hero .eyebrow { margin-bottom:28px; }
.page-hero h1 {
  margin:0; font-family:"Manrope",sans-serif; font-size:clamp(52px,7vw,104px);
  line-height:.95; letter-spacing:-.055em; font-weight:600;
}
.page-hero > p { max-width:760px; margin-top:30px; font-size:19px; color:var(--muted); }
.content-wrap { max-width:1100px; margin:auto; padding:3vw 4.5vw 8vw; }
.content-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:7vw; padding:55px 0; border-top:1px solid var(--border); }
.content-grid h2 { margin:0; font-family:"Manrope",sans-serif; font-size:clamp(30px,3.5vw,48px); line-height:1.05; }
.content-grid p, .content-grid li { color:var(--muted); }
.content-grid ul { padding-left:18px; }
.faq { border-top:1px solid var(--border); }
.faq details { padding:22px 0; border-bottom:1px solid var(--border); }
.faq summary { cursor:pointer; font-family:"Manrope",sans-serif; font-size:18px; font-weight:600; }
.faq p { max-width:780px; color:var(--muted); }
.local-cta {
  margin-top:60px; padding:48px; background:var(--text); color:var(--bg);
  display:flex; justify-content:space-between; align-items:center; gap:30px;
}
.local-cta h2 { margin:0; font-family:"Manrope",sans-serif; font-size:clamp(30px,4vw,52px); }
.local-cta p { color:#b8bdb9; }
.local-cta .button { background:var(--bg); color:var(--text); white-space:nowrap; }
@media(max-width:800px){
 .seo-links{grid-template-columns:1fr}
 .seo-links a,.seo-links a+a{padding:22px 0;border-right:0;border-bottom:1px solid var(--border)}
 .content-grid{grid-template-columns:1fr;gap:24px}
 .local-cta{flex-direction:column;align-items:flex-start;padding:34px 25px}
}


/* V5 — iconografía + CTAs más evidentes */
.problem-icon,
.method-icon,
.value-icon,
.statement-icon {
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--green);
}
.problem-icon svg,
.method-icon svg,
.value-icon svg,
.statement-icon svg {
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.problem-icon {
  width:46px;
  height:46px;
  margin:26px 0 0;
  border:1px solid var(--border);
  border-radius:50%;
  padding:11px;
}
.service-card h3 {
  margin-top:34px;
}
.service-cta {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  width:100%;
  margin-top:auto;
  padding:14px 16px;
  border:1px solid rgba(29,33,31,.22);
  border-radius:999px;
  font-size:13px !important;
  font-weight:600 !important;
  transition:.22s ease;
}
.service-cta span {
  font-size:16px;
}
.service-cta:hover {
  background:var(--text);
  color:var(--bg);
  border-color:var(--text);
  transform:translateY(-1px);
}
.method-icon {
  width:44px;
  height:44px;
  margin-top:24px;
  padding:8px;
  border:1px solid var(--border);
  border-radius:50%;
}
.method-step h3 {
  margin-top:28px;
}
.about-values div {
  grid-template-columns:38px 42px 1fr;
  gap:10px;
}
.value-icon {
  width:34px;
  height:34px;
  padding:7px;
  border:1px solid var(--border);
  border-radius:50%;
}
.statement-icon {
  width:52px;
  height:52px;
  padding:11px;
  border:1px solid rgba(244,243,238,.2);
  border-radius:50%;
  color:#c6cec8;
  margin-bottom:24px;
}
@media(max-width:620px){
  .service-cta{margin-top:28px}
  .about-values div{grid-template-columns:30px 36px 1fr}
  .value-icon{width:30px;height:30px;padding:6px}
}


/* V6 — iconos más grandes y sin numeración redundante */
.method-icon {
  width: 66px;
  height: 66px;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid rgba(29,33,31,.18);
  border-radius: 50%;
}
.method-icon svg {
  stroke-width: 1.55;
}
.method-step h3 {
  margin-top: 28px;
}

.about-values div {
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 24px 0;
}
.value-icon {
  width: 56px;
  height: 56px;
  padding: 12px;
  border: 1px solid rgba(29,33,31,.18);
  border-radius: 50%;
}
.value-icon svg {
  stroke-width: 1.55;
}
.about-values strong {
  font-size: 21px;
}

.problem-icon {
  width: 58px;
  height: 58px;
  padding: 13px;
}
.problem-icon svg {
  stroke-width: 1.55;
}

.statement-icon {
  width: 68px;
  height: 68px;
  padding: 15px;
}

@media (max-width: 620px) {
  .method-icon {
    width: 56px;
    height: 56px;
    padding: 12px;
  }

  .value-icon {
    width: 48px;
    height: 48px;
    padding: 10px;
  }

  .about-values div {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .problem-icon {
    width: 52px;
    height: 52px;
  }
}


/* V6.1 — iconos agregados solo a los encabezados de sección */
.section-index-with-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.section-heading-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--green);
}
.section-heading-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 620px) {
  .section-index-with-icon {
    flex-direction: row;
    align-items: center;
  }
  .section-heading-icon {
    width: 46px;
    height: 46px;
    padding: 10px;
  }
}


/* V6.2 — iconos más grandes dentro de la WEB REAL */
.section-heading-icon {
  width: 78px !important;
  height: 78px !important;
  padding: 16px !important;
  border-width: 1.5px !important;
}

.problem-icon {
  width: 82px !important;
  height: 82px !important;
  padding: 16px !important;
  margin-top: 24px !important;
}

.problem-icon svg {
  width: 100% !important;
  height: 100% !important;
  stroke-width: 1.8 !important;
}

.method-icon {
  width: 88px !important;
  height: 88px !important;
  padding: 18px !important;
  margin: 18px auto 0 !important;
}

.method-icon svg {
  width: 100% !important;
  height: 100% !important;
  stroke-width: 1.8 !important;
}

.method-step {
  text-align: center !important;
}

.method-step h3 {
  margin-top: 24px !important;
}

.method-step p {
  margin-left: auto !important;
  margin-right: auto !important;
}

.value-icon {
  width: 70px !important;
  height: 70px !important;
  padding: 14px !important;
}

.value-icon svg {
  width: 100% !important;
  height: 100% !important;
  stroke-width: 1.8 !important;
}

.about-values div {
  grid-template-columns: 78px 1fr !important;
  gap: 18px !important;
  align-items: center !important;
}

@media (max-width: 620px) {
  .section-heading-icon {
    width: 58px !important;
    height: 58px !important;
    padding: 12px !important;
  }

  .problem-icon {
    width: 66px !important;
    height: 66px !important;
    padding: 13px !important;
  }

  .method-icon {
    width: 72px !important;
    height: 72px !important;
    padding: 14px !important;
  }

  .value-icon {
    width: 58px !important;
    height: 58px !important;
    padding: 12px !important;
  }

  .about-values div {
    grid-template-columns: 64px 1fr !important;
    gap: 14px !important;
  }
}


/* V6.3 — ajustes pedidos */
.section-index-with-icon {
  gap: 0 !important;
}

/* Servicios: sin numeración 01-04 y con iconos centrados */
.service-card {
  text-align: center !important;
}
.problem-icon {
  margin-left: auto !important;
  margin-right: auto !important;
}
.service-card p {
  margin-left: auto !important;
  margin-right: auto !important;
}
.service-cta {
  text-align: left !important;
}

/* Método: pasos 1,2,3 visibles y centrados */
.step-badge {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.method-icon {
  margin-left: auto !important;
  margin-right: auto !important;
}


/* V6.4 — iconografía tomada directamente de la Guía SANEAR verde */
.section-heading-icon,
.problem-icon,
.method-icon,
.value-icon {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

.section-heading-icon img,
.problem-icon img,
.method-icon img,
.value-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Tamaños similares a la guía */
.section-heading-icon {
  width: 94px !important;
  height: 94px !important;
}

.problem-icon {
  width: 104px !important;
  height: 104px !important;
}

.method-icon {
  width: 108px !important;
  height: 108px !important;
}

.value-icon {
  width: 78px !important;
  height: 78px !important;
}

.about-values div {
  grid-template-columns: 88px 1fr !important;
}

/* Trabajamos con: mismos iconos de la guía, sin cambiar el contenido */
.client-marquee {
  display: grid !important;
  grid-template-columns: repeat(7, minmax(100px, 1fr)) !important;
  gap: 18px !important;
  align-items: start !important;
}

.client-marquee > i {
  display: none !important;
}

.client-marquee > span {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  font-size: 12px !important;
  letter-spacing: .04em !important;
  text-align: center !important;
}

.client-marquee > span img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
}

.client-marquee > span b {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 600;
}

@media (max-width: 980px) {
  .client-marquee {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (max-width: 620px) {
  .section-heading-icon {
    width: 70px !important;
    height: 70px !important;
  }

  .problem-icon {
    width: 82px !important;
    height: 82px !important;
  }

  .method-icon {
    width: 88px !important;
    height: 88px !important;
  }

  .value-icon {
    width: 64px !important;
    height: 64px !important;
  }

  .about-values div {
    grid-template-columns: 72px 1fr !important;
  }

  .client-marquee {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .client-marquee > span img {
    width: 68px;
    height: 68px;
  }
}


/* V6.5 — iconos sin fondo + numeración visual de la referencia */
.section-heading-icon img,
.problem-icon img,
.method-icon img,
.value-icon img,
.client-marquee img {
  background: transparent !important;
}

.service-visual-row,
.method-visual-row {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}

.service-big-number,
.method-big-number {
  font-family:"Manrope",sans-serif;
  font-weight:600;
  line-height:1;
  letter-spacing:-.07em;
  color:rgba(29,33,31,.10);
}

.service-big-number { font-size:54px; }
.method-big-number { font-size:58px; }

.service-visual-row .problem-icon {
  width:88px !important;
  height:88px !important;
  margin:0 !important;
}

.method-visual-row .method-icon {
  width:94px !important;
  height:94px !important;
  margin:0 !important;
}

.service-card h3 { margin-top:14px !important; }
.method-step h3 { margin-top:18px !important; }

@media(max-width:620px){
  .service-big-number{font-size:44px}
  .method-big-number{font-size:46px}
  .service-visual-row .problem-icon{width:76px !important;height:76px !important}
  .method-visual-row .method-icon{width:80px !important;height:80px !important}
}


/* V6.6 — corrección exacta solicitada */
/* Servicios: SIN números */
.service-visual-row {
  justify-content: center !important;
  gap: 0 !important;
}

/* Método: 01 / 02 / 03 grandes, tenues y al lado del icono */
.method-visual-row {
  justify-content: center !important;
  align-items: center !important;
  gap: 14px !important;
}
.method-big-number {
  font-size: 54px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: -.07em !important;
  color: rgba(29,33,31,.10) !important;
}
.method-visual-row .method-icon {
  width: 88px !important;
  height: 88px !important;
  margin: 0 !important;
}

@media(max-width:620px){
  .method-big-number{font-size:44px !important}
  .method-visual-row .method-icon{width:76px !important;height:76px !important}
}


/* V6.21 — HERO DEFINITIVO SOBRE BASE V6.6 */

/* Branding */
.brand-sub,
.footer-brand .brand-sub {
  color: var(--green) !important;
}

/* WhatsApp */
.nav-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
}

.wa-nav-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  flex: 0 0 auto;
}

.wa-nav-icon svg,
.wa-float-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp {
  background: #25D366 !important;
  color: #fff !important;
  width: 60px !important;
  height: 60px !important;
  border: 0 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.16) !important;
}

.wa-float-icon {
  width: 30px;
  height: 30px;
  display: flex;
}

/* DESKTOP */
@media (min-width: 981px) {

  /* Header directamente sobre el cielo */
  .site-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 60 !important;
    padding: 24px 4.5vw 20px !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: 0 !important;
  }

  .main-nav {
    gap: 40px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
  }

  /* WhatsApp superior transparente */
  .nav-cta {
    padding: 11px 21px !important;
    border-radius: 999px !important;
    background: transparent !important;
    border: 2.4px solid #4f8a47 !important;
    color: #3f7c3a !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    backdrop-filter: none !important;
  }

  .nav-cta:hover {
    background: rgba(255,255,255,.12) !important;
    border-color: #32702f !important;
    color: #32702f !important;
  }

  /* La imagen nueva YA trae el fundido correcto.
     No agregamos blur, máscaras ni degradados artificiales. */
  .hero {
    position: relative !important;
    display: block !important;
    min-height: 820px !important;
    max-height: none !important;
    padding: 138px 4.5vw 88px !important;
    overflow: hidden !important;
    isolation: isolate;
    background-image: url("hero-sanear-definitivo-web.jpg") !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  /* Apagamos cualquier pseudo-overlay previo de la V6.6 */
  .hero::before,
  .hero::after {
    display: none !important;
  }

  .hero-copy {
    position: relative !important;
    z-index: 3 !important;
    width: min(39vw, 610px) !important;
    max-width: 610px !important;
  }

  .hero h1 {
    font-size: clamp(60px, 5.4vw, 92px) !important;
    line-height: .93 !important;
  }

  .hero-copy > p {
    max-width: 545px !important;
  }

  /* Stats completos dentro del hero */
  .hero-trust {
    position: relative !important;
    z-index: 3 !important;
    max-width: 590px !important;
    margin-top: 58px !important;
    padding-bottom: 12px !important;
  }

  /* La columna visual antigua ya no se usa en desktop */
  .hero-visual {
    display: none !important;
  }
}

/* TABLET / MOBILE: conservamos el comportamiento estable de V6.6 */
@media (max-width: 980px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    background: rgba(233,234,232,.92) !important;
    backdrop-filter: blur(14px) !important;
    border-bottom: 1px solid var(--border) !important;
  }

  .nav-cta {
    background: transparent !important;
    border: 2.2px solid #4f8a47 !important;
    color: #3f7c3a !important;
    font-weight: 700 !important;
  }

  .hero::before,
  .hero::after {
    display: none !important;
  }
}

/* =========================================================
   V6.22 — RESPONSIVE FINAL
   Desktop >= 981px intentionally unchanged.
   Only notebook/tablet/mobile behavior is refined here.
   ========================================================= */

/* Compact notebooks: preserve the approved desktop composition,
   but avoid an unnecessarily tall first screen. */
@media (min-width: 981px) and (max-width: 1440px),
       (min-width: 981px) and (max-height: 820px) {
  .hero {
    min-height: 100vh !important;
    padding-top: 118px !important;
    padding-bottom: 54px !important;
    background-position: center center !important;
  }
  .hero h1 {
    font-size: clamp(56px, 5.05vw, 78px) !important;
  }
  .hero-trust {
    margin-top: 42px !important;
  }
}

/* Tablet: keep the reliable stacked layout and use the SAME
   approved panoramic artwork instead of the old crop. */
@media (max-width: 980px) {
  .hero {
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding-top: 56px !important;
    gap: 44px !important;
    background: var(--bg) !important;
    overflow: visible !important;
  }
  .hero-copy {
    width: 100% !important;
    max-width: 760px !important;
  }
  .hero-visual {
    display: block !important;
    width: 100% !important;
  }
  .hero-photo {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border-radius: 4px !important;
    background: transparent !important;
  }
  .hero-photo img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
  }
  .visual-tag {
    display: none !important;
  }
}

/* Phones: prioritize readability and prevent any crop/cut-off. */
@media (max-width: 620px) {
  .site-header {
    padding: 15px 18px !important;
  }
  .brand-sub {
    font-size: 6px !important;
  }
  .nav-cta {
    padding: 8px 11px !important;
    font-size: 12px !important;
    gap: 6px !important;
  }
  .wa-nav-icon {
    width: 17px !important;
    height: 17px !important;
  }
  .hero {
    padding: 42px 18px 58px !important;
    gap: 34px !important;
  }
  .hero h1 {
    margin: 20px 0 18px !important;
    font-size: clamp(44px, 13vw, 58px) !important;
    line-height: .96 !important;
  }
  .hero-copy > p {
    font-size: 16px !important;
    line-height: 1.55 !important;
  }
  .hero-actions {
    margin-top: 28px !important;
    gap: 18px !important;
  }
  .hero-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin-top: 38px !important;
    padding-top: 17px !important;
  }
  .hero-trust strong {
    font-size: 18px !important;
  }
  .hero-trust span {
    font-size: 9px !important;
    line-height: 1.3 !important;
  }
  .hero-photo {
    margin-left: -18px !important;
    margin-right: -18px !important;
    width: calc(100% + 36px) !important;
    border-radius: 0 !important;
  }
  .floating-whatsapp {
    right: 16px !important;
    bottom: 16px !important;
    width: 54px !important;
    height: 54px !important;
  }
}

/* Very narrow phones: stats stack only when truly necessary. */
@media (max-width: 390px) {
  .hero-trust {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}


/* V6.24 — encuadre del hero desplazado para mostrar técnico + Faro Recalada
   No modifica la imagen, tamaño, altura, textos ni responsive móvil. */
@media (min-width: 981px) {
  .hero {
    background-position: 84% center !important;
  }
}
