:root{
  --bg:#0b0f0c;
  --surface:#0f1511;
  --card:#101915;
  --muted:#e9f0ea;
  --text:#0f1511;
  --text2:#2b3330;
  --white:#ffffff;
  --soft:#f4f7f5;

  --green:#1f7a3a;
  --green2:#2aa24f;
  --yellow:#f5c400; /* guiño John Deere */
  --border:rgba(15,21,17,.12);

  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --shadow2: 0 18px 55px rgba(0,0,0,.14);

  --radius: 18px;
  --radius2: 26px;

  --container: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--soft);
  color: var(--text);
}

img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Topbar */
.topbar{
  background: #0b120e;
  color: rgba(255,255,255,.86);
  font-size: 13px;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0;
  gap: 12px;
}
.topbar__left{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
}
.sep{ opacity:.6; }
.pill{
  display:inline-flex;
  align-items:center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(42,162,79,.15);
  border: 1px solid rgba(42,162,79,.25);
  color: rgba(255,255,255,.9);
  font-weight: 600;
}
.pill--soft{
  background: rgba(31,122,58,.10);
  border: 1px solid rgba(31,122,58,.18);
  color: #0f1511;
}
.link{
  color: inherit;
  opacity: .92;
}
.link:hover{ opacity: 1; text-decoration: underline; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(244,247,245,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand__logo{
  height: 44px;
  width:auto;
}
.nav{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav a{
  font-weight: 600;
  color: rgba(15,21,17,.85);
  font-size: 14px;
}
.nav a:hover{ color: rgba(15,21,17,1); }
.nav__cta{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31,122,58,.10);
  border: 1px solid rgba(31,122,58,.18);
}
.nav__cta:hover{
  background: rgba(31,122,58,.14);
}

/* Burger Correccion boton mobile */
.burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15,21,17,.12);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  position: relative;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}

.burger:hover{
  box-shadow: 0 16px 42px rgba(0,0,0,.14);
}

.burger span{
  position:absolute;
  width: 18px;
  height: 2px;
  background: rgba(15,21,17,.88);
  border-radius: 999px;
  transition: transform .18s ease, opacity .18s ease;
}

/* 3 líneas */
.burger span:nth-child(1){ transform: translateY(-6px); }
.burger span:nth-child(2){ transform: translateY(0); }
.burger span:nth-child(3){ transform: translateY(6px); }

/* Correccion desplegable boton mejorado */
body.nav-open .nav{
  display:flex;
  position: fixed;
  left: 16px;
  right: 16px;
  top: 70px;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15,21,17,.12);
  border-radius: 20px;
  box-shadow: 0 18px 55px rgba(0,0,0,.16);
  z-index: 1200;
}

body.nav-open .nav a{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(15,21,17,.04);
}

body.nav-open .nav a:hover{
  background: rgba(31,122,58,.10);
  border-color: rgba(31,122,58,.18);
}

body.nav-open .nav a.nav__cta{
  background: rgba(31,122,58,.12);
  border: 1px solid rgba(31,122,58,.18);
}

body.nav-open::before{
  content:"";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(2px);
  z-index: 1100;
}

body.nav-open .header{
  z-index: 1200;
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  padding: 52px 0 40px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(1200px 800px at 20% -10%, rgba(42,162,79,.22), transparent 60%),
              radial-gradient(900px 700px at 90% 20%, rgba(245,196,0,.18), transparent 55%),
              linear-gradient(to bottom, rgba(255,255,255,.7), rgba(244,247,245,1));
}
.hero__bg{
  position:absolute;
  inset:0;
  opacity:.18;
  background-image: linear-gradient(transparent 0, transparent 90%, rgba(0,0,0,.04) 90%, rgba(0,0,0,.04) 100%);
  background-size: 100% 34px;
  pointer-events:none;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-weight:700;
  letter-spacing:.02em;
  text-transform: uppercase;
  color: rgba(15,21,17,.72);
  margin:0 0 10px;
}
.hero h1{
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.lead{
  margin:0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(15,21,17,.78);
  max-width: 56ch;
}
.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .18s ease, background .18s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(31,122,58,.20);
}
.btn--primary:hover{ box-shadow: 0 14px 30px rgba(31,122,58,.25); }
.btn--ghost{
  background: rgba(255,255,255,.75);
  border-color: var(--border);
  color: rgba(15,21,17,.90);
}
.btn--ghost:hover{ background: rgba(255,255,255,.92); }
.btn--full{ width:100%; }

.hero__stats{
  display:flex;
  gap: 16px;
  margin-top: 22px;
  flex-wrap:wrap;
}
.stat{
  background: rgba(255,255,255,.70);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  min-width: 160px;
  box-shadow: var(--shadow);
}
.stat__num{
  font-weight: 800;
  font-size: 22px;
  color: #0f1511;
}
.stat__label{
  font-size: 13px;
  color: rgba(15,21,17,.68);
  margin-top: 2px;
}

/* Hero Card */
.hero__card{
  background: rgba(255,255,255,.75);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.hero__cardTop{
  display:flex;
  gap: 8px;
  padding: 14px 14px 0;
  flex-wrap:wrap;
}
.badge{
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(245,196,0,.18);
  border: 1px solid rgba(245,196,0,.28);
  color: rgba(15,21,17,.92);
}
.badge--alt{
  background: rgba(42,162,79,.14);
  border: 1px solid rgba(42,162,79,.22);
}
.hero__imageWrap{
  padding: 14px;
}
.hero__imageWrap img{
  border-radius: 20px;
  height: 320px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.hero__cardBottom{
  display:flex;
  gap: 8px;
  padding: 0 14px 14px;
  flex-wrap:wrap;
}
.chip{
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(15,21,17,.06);
  border: 1px solid rgba(15,21,17,.10);
  color: rgba(15,21,17,.85);
}

/* Sections */
.section{
  padding: 70px 0;
}
.section--muted{
  background: #eef3ef;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__head{
  max-width: 820px;
  margin-bottom: 22px;
}
.section__head h2{
  margin: 0 0 10px;
  font-size: 32px;
  letter-spacing: -0.02em;
}
.section__head p{
  margin:0;
  color: rgba(15,21,17,.78);
  line-height:1.6;
}

/* Grid helpers */
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.grid2--contact{
  grid-template-columns: .9fr 1.1fr;
}
.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Cards */
.card{
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card h3{
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.card p{
  margin: 0 0 12px;
  color: rgba(15,21,17,.75);
  line-height:1.6;
}

.card--image{
  padding: 0;
  overflow:hidden;
  position:relative;
}
.card--image img{
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.card__overlay{
  position:absolute;
  inset:auto 14px 14px 14px;
  background: rgba(15,21,17,.75);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 12px 12px;
  backdrop-filter: blur(10px);
}
.overlay__title{
  font-weight: 800;
  letter-spacing: -0.01em;
}
.overlay__sub{
  font-size: 13px;
  opacity: .9;
  margin-top: 2px;
}

/* Checklist */
.checklist{
  list-style:none;
  padding:0;
  margin: 10px 0 0;
  display:grid;
  gap: 8px;
}
.checklist li{
  position:relative;
  padding-left: 26px;
  color: rgba(15,21,17,.78);
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top: 0;
  width: 18px;
  height: 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: rgba(42,162,79,.14);
  border: 1px solid rgba(42,162,79,.24);
  color: #0f1511;
  font-weight: 900;
  font-size: 12px;
}

/* Services */
.service{
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  transition: transform .12s ease, box-shadow .18s ease;
}
.service:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(0,0,0,.12);
}
.icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(31,122,58,.10);
  border: 1px solid rgba(31,122,58,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 20px;
  margin-bottom: 10px;
}
.service h3{ margin: 0 0 8px; }
.service p{ margin: 0; color: rgba(15,21,17,.75); line-height:1.6; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.gallery__item{
  margin:0;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.gallery__item img{
  width:100%;
  height: 220px;
  object-fit: cover;
}

/* Notes / Dividers */
.note{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(245,196,0,.12);
  border: 1px solid rgba(245,196,0,.22);
  color: rgba(15,21,17,.86);
  font-weight: 600;
}
.divider{
  height:1px;
  background: var(--border);
  margin: 16px 0;
}
.muted{ color: rgba(15,21,17,.65); }

/* CTA Card */
.ctaCard{
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.ctaCard__left h3{ margin:0 0 8px; }
.ctaCard__left p{ margin:0; color: rgba(15,21,17,.75); line-height:1.6; }
.ctaCard__bullets{ display:flex; gap: 10px; margin-top: 12px; flex-wrap:wrap; }
.ctaCard__right{ display:flex; gap: 10px; flex-wrap:wrap; justify-content:flex-end; }

/* Contact */
.contactInfo__row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(15,21,17,.12);
}
.contactInfo__row:last-child{ border-bottom:none; }
.contactInfo__k{ font-weight: 700; color: rgba(15,21,17,.85); }
.contactInfo__v{ color: rgba(15,21,17,.72); }

/* Form */
.form{ display:grid; gap: 12px; }
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field label{
  display:block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
  color: rgba(15,21,17,.82);
}
.field input,
.field textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,21,17,.14);
  background: rgba(255,255,255,.9);
  outline:none;
  font: inherit;
}
.field input:focus,
.field textarea:focus{
  border-color: rgba(31,122,58,.35);
  box-shadow: 0 0 0 4px rgba(31,122,58,.10);
}
.form__hint{
  margin: 0;
  font-size: 12px;
  color: rgba(15,21,17,.62);
}
.form__status{
  display:none;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,21,17,.14);
}
.form__status.is-success{
  display:block;
  background: rgba(42,162,79,.12);
  border-color: rgba(42,162,79,.22);
}
.form__status.is-error{
  display:block;
  background: rgba(220,53,69,.10);
  border-color: rgba(220,53,69,.22);
}
.honeypot{ display:none !important; }

/* Footer */
.footer{
  background: #0b120e;
  color: rgba(255,255,255,.86);
  padding: 28px 0 18px;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 16px;
  flex-wrap:wrap;
}
.footer__left{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer__logo{
  height: 42px;
  width:auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.30));
}
.footer__title{ font-weight: 900; }
.footer__sub{ font-size: 13px; opacity:.86; margin-top: 2px; }
.footer__right{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}
.footer__bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
}

/* WhatsApp Floating */
.waFloat{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f7a3a, #2aa24f);
  color:#fff;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 45px rgba(0,0,0,.20);
}
.waFloat:hover{ filter: brightness(1.02); }
.waFloat__icon{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
}
.waFloat__text{ font-weight: 800; font-size: 14px; }

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__imageWrap img{ height: 280px; }
  .grid2{ grid-template-columns: 1fr; }
  .grid2--contact{ grid-template-columns: 1fr; }
  .cards3{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .nav{ display:none; }
  .burger{ display:flex; }
  .form__row{ grid-template-columns: 1fr; }
  .cards3{ grid-template-columns: 1fr; }
  .hero{ padding-top: 38px; }
  .stat{ min-width: 140px; }
  .waFloat__text{ display:none; }
}


/* Contact icons */
.ci-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  border-radius: 999px;
  background: rgba(31,122,58,.12);
  border: 1px solid rgba(31,122,58,.22);
  font-size: 14px;
  flex-shrink: 0;
}

.contactInfo__k{
  display:flex;
  align-items:center;
  font-weight: 800;
  color: rgba(15,21,17,.85);
}


/* GALERY EDIT */
.mediaStack{
  display: grid;
  gap: 12px;
}

.mediaStack__main{
  margin: 0;
  height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mediaStack__thumbs{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mediaStack__thumbs figure{
  margin: 0;
  height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mediaStack img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 640px){
  .mediaStack__main{ height: 260px; }
  .mediaStack__thumbs{ grid-template-columns: 1fr; }
  .mediaStack__thumbs figure{ height: 200px; }
}


/* Title with icon */
.titleRow{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 6px;
}
.titleRow h2{ margin:0; }
.titleIcon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(245,196,0,.16);
  border: 1px solid rgba(245,196,0,.26);
  font-size: 18px;
}

/* Business card (Alquiler) */
.bizCard{
  display:grid;
  grid-template-columns: 1fr 1.3fr auto;
  gap: 16px;
  align-items: stretch;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  padding: 16px;
}

.bizCard__media{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.03);
  min-height: 220px;
}
.bizCard__media img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.bizCard__content h3{
  margin: 0 0 8px;
}
.bizCard__content p{
  margin: 0 0 12px;
  color: rgba(15,21,17,.75);
  line-height: 1.6;
}

/* Mini KPIs */
.bizStats{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin: 10px 0 12px;
}
.bizStat{
  min-width: 150px;
  background: rgba(15,21,17,.04);
  border: 1px solid rgba(15,21,17,.10);
  border-radius: 14px;
  padding: 10px 12px;
}
.bizStat__num{
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.bizStat__label{
  font-size: 12px;
  color: rgba(15,21,17,.65);
  margin-top: 2px;
}

/* Actions column */
.bizCard__actions{
  display:flex;
  flex-direction: column;
  justify-content:center;
  gap: 10px;
  min-width: 230px;
}

/* Responsive */
@media (max-width: 980px){
  .bizCard{
    grid-template-columns: 1fr;
  }
  .bizCard__actions{
    min-width: unset;
    flex-direction: row;
    justify-content:flex-start;
    flex-wrap:wrap;
  }
  .bizCard__media{ min-height: 240px; }
}
/* footer logo edit */
.footer__logoWrap{
  width: 130px;
  height: 60px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
}

.footer__logo{
  height: 40px;
  width: auto;
  filter: none; /* que no oscurezca */
}



/* Servicios - Compromiso con el campo */
.servicesCommitment{
  margin-top: 16px;
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 18px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
}

/* detalle visual sutil (no invasivo) */
.servicesCommitment::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(600px 220px at 10% 0%,
    rgba(42,162,79,.14), transparent 65%);
  pointer-events:none;
}

.servicesCommitment__icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(245,196,0,.16);
  border: 1px solid rgba(245,196,0,.26);
  font-size: 20px;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.servicesCommitment__content{
  position: relative;
  z-index: 1;
}

.servicesCommitment__content h3{
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.servicesCommitment__content p{
  margin: 0 0 10px;
  line-height: 1.6;
  color: rgba(15,21,17,.75);
}

.servicesCommitment__content p.muted{
  margin: 0;
  color: rgba(15,21,17,.65);
}

/* Responsive */
@media (max-width: 640px){
  .servicesCommitment{
    flex-direction: column;
  }
}




/* CONTACTO: 2 columnas, derecha en 2 líneas (email arriba, wp abajo) */
.contactRow{
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(15,21,17,.12);
}

/* Izquierda: icono + nombre */
.contactRow__left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
  padding-top: 2px;
}
.contactRow__title{
  font-weight: 800;
  color: rgba(15,21,17,.88);
}

/* Derecha: 2 filas (email / wp) alineado a la derecha */
.contactRow__right{
  display: grid;
  justify-items: end;   /* alinea todo a la derecha */
  gap: 8px;             /* “salto de línea” entre mail y wp */
}

/* Email */
.contactRow__email{
  color: rgba(15,21,17,.70);
  font-weight: 600;
  text-decoration: none;
  text-align: right;
  max-width: 100%;
  word-break: normal; /* evita cortes raros */
}
.contactRow__email:hover{
  color: rgba(15,21,17,.90);
  text-decoration: underline;
}

/* Botón WhatsApp */
.waMini{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(31,122,58,.12);
  border: 1px solid rgba(31,122,58,.22);
  font-weight: 800;
  font-size: 12px;
  color: rgba(15,21,17,.90);
  white-space: nowrap;
}
.waMini::before{ content:"📲"; }

/* Más aire entre filas (esto da sensación de “salto”) */
.contactRow + .contactRow{
  margin-top: 2px;
}

/* Mobile: apila bien */
@media (max-width: 640px){
  .contactRow{
    grid-template-columns: 1fr;
  }
  .contactRow__right{
    justify-items: start;
  }
  .contactRow__email{
    text-align:left;
  }
}




/* HERO VIDEO */
.heroVideo{
  position: relative;
  height: min(100vh, 720px);
  overflow: hidden;
  background: #0b120e;
}

.heroVideo__media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  z-index: 0;
}

/* Fundido / overlay */
.heroVideo__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(11,18,14,.85) 0%,
      rgba(11,18,14,.35) 40%,
      rgba(11,18,14,.65) 75%,
      rgba(11,18,14,.95) 100%
    );
  z-index:1;
}

/* Contenido */
.heroVideo__content{
  position: relative;
  z-index: 2;
  height:100%;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 0 20px;
  color: #fff;
}

.heroVideo__logo{
  width: min(420px, 80vw);
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.55));
}

/* Texto */
.heroVideo__content h1{
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.02em;
}

.heroVideo__content p{
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  opacity: .9;
}

/* Mobile ajustes */
@media (max-width: 640px){
  .heroVideo{
    height: 70vh;
  }
  .heroVideo__logo{
    width: 72vw;
  }
}


/* CTA Video completo */
.heroVideo__cta{
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 18px;
  border-radius: 6px;

  background: rgba(255,255,255,.92);
  color: #0b120e;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .04em;
  text-decoration: none;

  border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);

  transition: all .25s ease;
}

.heroVideo__cta:hover{
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}

/* Mobile */
@media (max-width: 640px){
  .heroVideo__cta{
    right: 16px;
    bottom: 16px;
    padding: 10px 14px;
    font-size: 12px;
  }
}




/* Innovación: bloque de opciones bajo "Mejoras recientes" */
.equipOptions{
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(15,21,17,.03);
  border: 1px solid rgba(15,21,17,.10);
}

.equipOptions__lead{
  margin: 0 0 12px;
  color: rgba(15,21,17,.75);
  line-height: 1.6;
}

.equipOptions__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 10px 0 10px;
}

.equipOptions__title{
  font-weight: 900;
  color: rgba(15,21,17,.88);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.equipOptions__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: rgba(15,21,17,.72);
  font-weight: 600;
}

.equipOptions__list li{
  padding-left: 14px;
  position: relative;
}

.equipOptions__list li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(31,122,58,.75);
  font-weight: 900;
}

.equipOptions__foot{
  margin: 8px 0 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 640px){
  .equipOptions__grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }
}


/* Formulario envio */
.formMsg{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,21,17,.12);
  background: rgba(255,255,255,.8);
  color: rgba(15,21,17,.85);
  display:none;
  font-weight: 700;
}

.formMsg.is-ok{
  border-color: rgba(31,122,58,.25);
  background: rgba(31,122,58,.10);
}

.formMsg.is-err{
  border-color: rgba(190,30,30,.25);
  background: rgba(190,30,30,.08);
}




/* WhatsApp flotante */
.wa-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}



.wa-float1{
  position: flex;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f7a3a, #2aa24f);
  color:#fff;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 45px rgba(0,0,0,.20);
}


/* Tooltip */
.wa-tooltip{
  background: #ffffff;
  color: #1a1a1a;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.35;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  max-width: 200px;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

/* Mostrar tooltip */
.wa-float:hover .wa-tooltip{
  opacity: 1;
  transform: translateX(0);
}

/* Botón circular */
.wa-icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px rgba(37,211,102,.45);
}

/* Ícono */
.wa-icon img{
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

/* Mobile: ocultar tooltip
@media (max-width: 640px){
  .wa-tooltip{
    display: none;
  }
}
 */