:root{
  --green: #1aa748;
  --green2:#9dc696;
  --white: #fdfdfb;
  --gray:  #262724;
  --bg:    #111211;

  --text:  #fdfdfb;
  --muted: rgba(253,253,251,.78);
  --line:  rgba(253,253,251,.14);
  --navH: 72px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{
  scroll-behavior: smooth;
}

body{
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }

.container{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

@media (max-width: 520px){
  :root{ --navH: 68px; }
}

section[id]{
  scroll-margin-top: calc(var(--navH) + 14px);
}

/* =========================
   NAVBAR
========================= */
.navbar{
  background: var(--gray);
  border-bottom: 1px solid rgba(0,0,0,.35);
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar__inner{
  height: 72px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.brand{ display:flex; align-items:center; }
.brand__logo{
  height: 64px;
  width: auto;
  display:block;
}

.navlinks{
  display:flex;
  gap: 18px;
  align-items:center;
}

.navlinks a{
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  padding: 10px 8px;
  border-bottom: 2px solid transparent;
}

.navlinks a:hover{
  border-bottom-color: var(--green);
}

.menuBtn{
  display:none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}
.menuBtn span{
  display:block;
  height: 2px;
  background: var(--white);
  margin: 6px 8px;
}

/* Mobile menu */
.mobileMenu{
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;           
  background: var(--gray);
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 12px 16px 18px;
  z-index: 999;
}

.mobileMenu a{
  display:block;
  padding: 12px 8px;
  color: var(--white);
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mobileMenu__ctas{
  display:flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
}

.navCallDesktop{
  display:inline-block;
}

@media (max-width: 980px){
  .navCallDesktop{
    display:none; 
  }
  .mobileMenu{
    top: 68px;          
  }
  .navlinks{ display:none; }
  .menuBtn{ display:block; }

}

@media (max-width: 520px){
  .navbar__inner{ height: 68px; }
  .brand__logo{ height:50px; }
}

/* === Language switch (Desktop) === */
.navlinks a.navLang{
  color: #9dc696 !important;                 /* fuerza sobre estilos globales */
  font-weight: 800;
  letter-spacing: .5px;
  padding: 8px 10px;
  border: 1px solid rgba(157,198,150,.55);   /* #9dc696 */
  text-decoration: none;
  line-height: 1;                            /* evita que se “deforme” */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navlinks a.navLang:hover{
  color: #262724 !important;                 /* gris oscuro */
  background: #9dc696;                       /* verde secundario */
  border-color: #9dc696;
}

/* Si tu nav tiene color/hover agresivo en todos los <a>, esto lo neutraliza */
.navlinks a.navLang:visited{
  color: #9dc696 !important;
}

/* === Language switch (Mobile) === */
.mobileMenu a.mobileLang{
  display: block;
  margin-top: 10px;
  padding: 12px 14px;
  text-align: center;
  font-weight: 800;
  letter-spacing: .3px;
  color: #9dc696 !important;
  border: 1px solid rgba(157,198,150,.55);
  text-decoration: none;
}

.mobileMenu a.mobileLang:hover{
  color: #262724 !important;
  background: #9dc696;
  border-color: #9dc696;
}



/* =========================
   HERO FULL SCREEN VIDEO
========================= */
.hero--video{
  position: relative;
  height: calc(100vh - var(--navH));
  min-height: 520px;
  overflow: hidden;
}

.hero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55); 
}

.hero__content{
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 42px 0;
}

.hero__text{
  max-width: 760px;
}

.hero__text h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: .2px;
}

.hero__sub{
  margin: 0 0 18px;
  color: rgba(253,253,251,.82);
  font-size: 16px;
  line-height: 1.6;
  max-width: 62ch;
}

.hero__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.hero__contact{
  margin: 0;
  font-size: 14px;
  color: rgba(253,253,251,.85);
}

.hero__contact a{
  text-decoration: underline;
  text-decoration-color: rgba(253,253,251,.45);
  text-underline-offset: 3px;
}

.hero__contact a:hover{
  text-decoration-color: var(--green2);
}

@media (max-width: 520px){
  .hero--video{
    min-height: 480px;
  }
}

/* =========================
   BUTTONS (CLÁSICOS)
========================= */
.btn{
  display:inline-block;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .2px;
  border: 2px solid transparent;
}

.btn--primary{
  background: var(--green);
  color: #081208;
  border-color: var(--green);
}

.btn--primary:hover{
  background: #16913e;
  border-color: #16913e;
}

.btn--outline{
  background: transparent;
  color: var(--white);
  border-color: rgba(253,253,251,.28);
}

.btn--outline:hover{
  border-color: var(--green2);
}

/* =========================
   ABOUT / WHO WE ARE
   (IZQUIERDA LIBRE / DERECHA EN PANEL)
========================= */

.about{
  padding: 76px 0;
  background: #f2f2ef; /* gris claro */
  color: #111211;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

/* GRID PRINCIPAL */
.about__grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: stretch; /* CLAVE: iguala alturas */
}

/* Columnas */
.about__left,
.about__right{
  display: flex;
}

/* -------------------------
   COLUMNA IZQUIERDA (SIN CUADRO)
------------------------- */
.aboutPanel{
  flex: 1;
  padding: 6px 0; /* respiración sin encerrar */
  display: flex;
  flex-direction: column;
}

/* Textos */
.about__kicker{
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(17,18,17,.65);
  font-size: 13px;
}

.aboutPanel h2{
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: .2px;
}

.about__lead{
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(17,18,17,.85);
}

.about__text{
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(17,18,17,.78);
}

/* Highlights */
.about__highlights{
  display: grid;
  gap: 14px;
}

.about__hl{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: #ffffff;
}

.about__icon{
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.12);
  background: #ffffff;
}

.about__icon i{
  color: var(--green);
  font-size: 18px;
}

.about__hl h3{
  margin: 2px 0 4px;
  font-size: 16px;
  letter-spacing: .1px;
}

.about__hl p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(17,18,17,.72);
}

/* -------------------------
   COLUMNA DERECHA (CON PANEL)
------------------------- */
.aboutCard{
  flex: 1;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.12);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
}

/* Textos */
.aboutCard h3{
  margin: 0 0 10px;
  font-size: 18px;
}

.aboutCard p{
  margin: 0 0 14px;
  color: rgba(17,18,17,.75);
  line-height: 1.7;
  font-size: 14px;
}

/* Lista */
.aboutList{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.aboutList li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(17,18,17,.82);
}

.aboutList i{
  color: var(--green);
  margin-top: 2px;
}

/* -------------------------
   COMMON SERVICES
------------------------- */
.aboutServices{
  margin: 10px 0 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.10);
}

.aboutServices__title{
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .3px;
  font-size: 14px;
  color: rgba(17,18,17,.78);
}

.aboutServices__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.aboutServices__grid span{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(17,18,17,.78);
}

.aboutServices__grid i{
  color: var(--green);
  font-size: 12px;
}

/* -------------------------
   CTA (pegado abajo)
------------------------- */
.about__ctaRow{
  margin-top: auto; /* CLAVE: alinea botones al fondo */
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Botones en fondo claro */
.about .btn--outline{
  color: #111211;
  border-color: rgba(0,0,0,.22);
}

.about .btn--outline:hover{
  border-color: var(--green);
}

/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 980px){
  .about__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px){
  .about{
    padding: 54px 0;
  }
}


/* =========================
   SERVICES (INTERACTIVE)
   Fondo oscuro, clásico
========================= */

.servicesX{
  padding: 76px 0;
  background: #111211;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.06);
}

.servicesX__header{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.servicesX__kicker{
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(253,253,251,.70);
  font-size: 13px;
}

.servicesX__header h2{
  margin: 0 0 12px;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: .2px;
}

.servicesX__intro{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(253,253,251,.78);
}

/* Layout */
.servicesX__layout{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
  align-items: stretch;
}

/* LEFT NAV */
.servicesX__nav{
  border: 1px solid rgba(255,255,255,.14);
  background: #0d0e0d;
  display: grid;
}

.servicesX__tab{
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 16px 14px;
  display: grid;
  grid-template-columns: 34px 1fr 22px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.10);
  cursor: pointer;
  font: inherit;
}

.servicesX__tab:last-child{
  border-bottom: 0;
}

.servicesX__tabIcon{
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  background: #111211;
}

.servicesX__tabIcon i{
  color: var(--green2);
  font-size: 16px;
}

.servicesX__tabText{
  font-weight: 800;
  letter-spacing: .15px;
  font-size: 14px;
}

.servicesX__chev{
  opacity: .65;
  display: flex;
  justify-content: center;
}

.servicesX__chev i{
  font-size: 12px;
}

.servicesX__tab:hover{
  background: rgba(253,253,251,.04);
}

.servicesX__tab.is-active{
  background: rgba(26,167,72,.10);
  position: relative;
}

.servicesX__tab.is-active::before{
  content:"";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--green);
}

.servicesX__tab.is-active .servicesX__tabIcon{
  border-color: rgba(26,167,72,.55);
}

.servicesX__tab.is-active .servicesX__tabIcon i{
  color: var(--green);
}

/* RIGHT PANEL */
.servicesX__panel{
  border: 1px solid rgba(255,255,255,.14);
  background: #0d0e0d;
  padding: 20px;
  display: flex;
}

.servicesX__panelGrid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  width: 100%;
  align-items: stretch;
}

/* Content */
.servicesX__title{
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: .15px;
}

.servicesX__desc{
  margin: 0 0 14px;
  color: rgba(253,253,251,.78);
  line-height: 1.7;
  font-size: 14px;
}

.servicesX__bullets{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.servicesX__bullets li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(253,253,251,.82);
  font-weight: 650;
  font-size: 14px;
}

.servicesX__bullets i{
  margin-top: 2px;
  color: var(--green);
}

/* Actions */
.servicesX__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Media */
.servicesX__media{
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  background: #111211;
  display: flex;
  align-items: stretch;
}

.servicesX__media img{
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  filter: contrast(1.03);
}

/* Simple fade for panel updates */
.servicesX__panel.is-fading{
  opacity: .35;
}

/* Responsive */
@media (max-width: 980px){
  .servicesX__layout{
    grid-template-columns: 1fr;
  }

  .servicesX__nav{
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    overflow-x: auto;
    border-right: 0;
  }

  .servicesX__tab{
    border-bottom: 0;
    border-right: 1px solid rgba(255,255,255,.10);
  }
  .servicesX__tab:last-child{
    border-right: 0;
  }

  .servicesX__panelGrid{
    grid-template-columns: 1fr;
  }

  .servicesX__media img{
    min-height: 220px;
  }
}

@media (max-width: 520px){
  .servicesX{
    padding: 56px 0;
  }

  .servicesX__panel{
    padding: 16px;
  }
}

/* =========================
   REAL PROJECTS (FONDO BLANCO)
========================= */

.realProjects{
  padding: 76px 0;
  background: #f2f2ef;
  color: #111211;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.realProjects__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: center;
}

/* LEFT */
.realProjects__kicker{
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(17,18,17,.65);
  font-size: 13px;
}

.realProjects__info h2{
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: .2px;
}

.realProjects__text{
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(17,18,17,.78);
  max-width: 62ch;
}

.realProjects__bullets{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.realProjects__bullets li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 650;
  font-size: 14px;
  color: rgba(17,18,17,.82);
}

.realProjects__bullets i{
  margin-top: 2px;
  color: var(--green);
}

.realProjects__cta{
  display: inline-block;
}

/* RIGHT: COMPARE */
.realProjects__compare{
  display: grid;
  gap: 10px;
}

.compare{
  position: relative;
  width: 100%;
  height: 420px;                 /* marco fijo */
  border: 1px solid rgba(0,0,0,.14);
  background: #ffffff;
  overflow: hidden;
  user-select: none;
  touch-action: none;
}

/* Capas SIEMPRE fijas */
.compare__layer{
  position: absolute;
  inset: 0;
}

.compare__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* After: solo cambia cuánto se revela, pero la imagen NO se escala */
.compare__afterWrap{
  position: absolute;
  inset: 0;
  width: 50%;                    /* cambia con JS */
  overflow: hidden;
}

/* Line */
.compare__line{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--green);
  pointer-events: none;
  z-index: 4;
}

/* Handle */
.compare__handle{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid var(--green);
  background: #ffffff;
  color: #111211;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 5;
}

.compare__handle:active{
  cursor: grabbing;
}

.compare__handle i{
  color: var(--green);
}

/* Labels */
.compare__labels{
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
  z-index: 6;
}

.compare__label{
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 8px 10px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.12);
}

.realProjects__hint{
  margin: 0;
  font-size: 13px;
  color: rgba(17,18,17,.70);
}

/* Responsive */
@media (max-width: 980px){
  .realProjects__grid{
    grid-template-columns: 1fr;
  }
  .compare{
    height: 320px;
  }
}

@media (max-width: 520px){
  .realProjects{
    padding: 54px 0;
  }
  .compare{
    height: 260px;
  }
}


.compare{
  position: relative;
  width: 100%;
  height: 420px;     
  overflow: hidden;
  user-select: none;
  touch-action: none;
}
.compare__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: bottom;
}


.ba{
  --pos:50%;
  --fade: 14px;
}

.ba__before{
  position:absolute;
  inset:0;
  z-index:2;
  -webkit-mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(var(--pos) - var(--fade)),
    rgba(0,0,0,0) calc(var(--pos) + var(--fade))
  );
  mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(var(--pos) - var(--fade)),
    rgba(0,0,0,0) calc(var(--pos) + var(--fade))
  );
  -webkit-mask-repeat:no-repeat;
  mask-repeat:no-repeat;
  -webkit-mask-size:100% 100%;
  mask-size:100% 100%;
}

.ba__img--before{ z-index:2; }

.ba__handle{
  position:absolute;
  top:0;
  bottom:0;
  transform: translateX(-50%);
  width: 54px;
  border:0;
  background: transparent;
  cursor: ew-resize;
  display:grid;
  place-items:center;
  z-index:4;
}

.ba__handle::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:2px;
  left:50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,.88);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

.ba__knob{
  position:relative;
  width:44px;
  height:44px;
  border-radius:999px;
  background:#fff;
  display:grid;
  place-items:center;
  font-weight:1100;
  color:#111;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.ba__handle:focus-visible .ba__knob{
  outline: 3px solid rgba(255,255,255,.92);
  outline-offset: 6px;
}

/* Tags dentro del área, no afectan layout */
.ba__tags{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  display:flex;
  justify-content:space-between;
  pointer-events:none;
  z-index:5;
}

.ba__tag{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.88);
  border:1px solid rgba(0,0,0,.10);
  color:#111;
  font-weight:900;
  font-size:12px;
}

@media (max-width: 720px){
  .ba{ --fade: 12px; }
}


/* =========================
   REAL PROJECTS - TIKTOK VIDEOS
========================= */

.realProjects__videos{
  grid-column: 1 / -1;
  margin-top: 46px;
}

.realProjects__videosTitle{
  margin: 0 0 18px;
  font-size: 22px;
  letter-spacing: .2px;
}

.realProjects__videosGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}

.tVideo{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.12);
  overflow: hidden;
}

.tVideo iframe{
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  display: block;
}

@media (max-width: 980px){
  .realProjects__videosGrid{
    grid-template-columns: 1fr;
  }
}



/* =========================
   WHY CHOOSE US (CLÁSICO + MÁS DISEÑO)
========================= */
.why{
  padding: 72px 0;
  background: #111211;
}

.why__wrap{
  display:block;
}

.why__header{
  text-align:center;
  margin-bottom: 38px;
}

.why__kicker{
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(253,253,251,.72);
  font-size: 13px;
}

.why__header h2{
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: .2px;
}

.why__line{
  width: 88px;
  height: 3px;
  background: var(--green);
  margin: 14px auto 0;
}

/* Grid */
.why__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card */
.whyCard{
  position: relative;
  background: var(--gray);
  border: 1px solid rgba(255,255,255,.12);
  padding: 22px 20px 20px;
  overflow: hidden;
}

/* Barra lateral verde (detalle clásico, no moderno) */
.whyCard::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width: 5px;
  background: var(--green);
}

/* Encabezado de card */
.whyCard__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

/* Número */
.whyCard__num{
  font-weight: 900;
  letter-spacing: .8px;
  color: rgba(253,253,251,.55);
  font-size: 14px;
}

/* Ícono en “placa” */
.whyCard__icon{
  width: 46px;
  height: 46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(253,253,251,.18);
  background: rgba(0,0,0,.18);
}

.whyCard__icon i{
  font-size: 20px;
  color: var(--green2);
}

/* Texto */
.whyCard h3{
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: .1px;
}

.whyCard p{
  margin: 0;
  color: rgba(253,253,251,.78);
  line-height: 1.65;
  font-size: 14px;
}

/* Hover sutil (sin fancy) */
.whyCard:hover{
  border-color: rgba(157,198,150,.45);
}

.whyCard:hover .whyCard__icon{
  border-color: rgba(26,167,72,.55);
}

/* Responsive */
@media (max-width: 980px){
  .why__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px){
  .why{
    padding: 52px 0;
  }
  .why__grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   CONTACT (FONDO BLANCO)
========================= */

.contact{
  padding: 76px 0;
  background: #f2f2ef;
  color: #111211;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

/* Header */
.contact__header{
  max-width: 820px;
  margin: 0 0 22px;
}

.contact__kicker{
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(17,18,17,.65);
  font-size: 13px;
}

.contact__header h2{
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: .2px;
}

.contact__lead{
  margin: 0;
  color: rgba(17,18,17,.78);
  line-height: 1.7;
  font-size: 15px;
  max-width: 62ch;
}

/* Columns (AQUÍ va el layout en 2 columnas) */
.contact__cols{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: stretch; /* misma altura */
}

/* LEFT: Form box */
.contact__form{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.12);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
}

/* Rows */
.contact__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field{
  display: grid;
  gap: 6px;
}

.field label{
  font-weight: 800;
  font-size: 13px;
  color: rgba(17,18,17,.82);
}

.field input,
.field select,
.field textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.16);
  background: #ffffff;
  color: #111211;
  padding: 12px 12px;
  font: inherit;
  outline: none;
}

.field textarea{
  resize: vertical;
  min-height: 140px;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(26,167,72,.75);
  box-shadow: 0 0 0 3px rgba(26,167,72,.10);
}

/* Actions pinned to bottom */
.contact__actions{
  margin-top: 22px;

  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact__note{
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(17,18,17,.70);
}

.contact__note a{
  text-decoration: underline;
  text-decoration-color: rgba(26,167,72,.45);
  text-underline-offset: 3px;
}

.contact__note a:hover{
  text-decoration-color: rgba(26,167,72,.85);
}

.contact__status{
  margin: 10px 0 0;
  font-weight: 700;
  font-size: 13px;
}

/* RIGHT: Info card */
.contactCard{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.12);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
}

.contactCard h3{
  margin: 0 0 14px;
  font-size: 18px;
}

.contactItem{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.contactItem:last-of-type{
  border-bottom: 0;
}

.contactIcon{
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.12);
  background: #ffffff;
}

.contactIcon i{
  color: var(--green);
  font-size: 18px;
}

.contactLabel{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(17,18,17,.60);
}

.contactValue{
  margin: 3px 0 0;
  font-weight: 800;
  color: rgba(17,18,17,.88);
}

.contactValue a{
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,.22);
  text-underline-offset: 3px;
}

.contactValue a:hover{
  text-decoration-color: rgba(26,167,72,.75);
}

.contactDivider{
  height: 1px;
  background: rgba(0,0,0,.10);
  margin: 14px 0;
}

.contactCard h4{
  margin: 0 0 8px;
  font-size: 15px;
}

.hours{
  margin: 0;
  color: rgba(17,18,17,.72);
  line-height: 1.7;
  font-size: 14px;
}

/* Buttons on light bg */
.contact .btn--outline{
  color: #111211;
  border-color: rgba(0,0,0,.22);
}

.contact .btn--outline:hover{
  border-color: var(--green);
}

/* Responsive */
@media (max-width: 980px){
  .contact__cols{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px){
  .contact{
    padding: 54px 0;
  }

  .contact__row{
    grid-template-columns: 1fr;
  }
}

/* =========================
   FOOTER
========================= */

.footer{
  background: #111211;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Top area */
.footer__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 56px 0 42px;
}

/* Brand */
.footer__logo{
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.footer__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(253,253,251,.75);
  max-width: 46ch;
}

/* Blocks */
.footer__block h4{
  margin: 0 0 12px;
  font-size: 15px;
  letter-spacing: .3px;
}

.footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer__list li{
  font-size: 14px;
  color: rgba(253,253,251,.75);
}

.footer__list a{
  color: inherit;
  text-decoration: none;
}

.footer__list a:hover{
  text-decoration: underline;
  text-decoration-color: rgba(26,167,72,.75);
  text-underline-offset: 3px;
}

/* Bottom area */
.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  background: #0d0e0d;
}

.footer__bottomInner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.footer__bottomInner p{
  margin: 0;
  font-size: 13px;
  color: rgba(253,253,251,.65);
}

/* Developer credit */
.footer__dev a{
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.footer__dev a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 980px){
  .footer__grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px){
  .footer__grid{
    grid-template-columns: 1fr;
    padding: 46px 0 36px;
  }

  .footer__bottomInner{
    flex-direction: column;
    text-align: center;
  }
}

