/* styles.css */
:root{
  --bg: #0b0b0b;
  --panel: #141414;
  --panel-2: #1b1b1b;
  --panel-3: #343434;

  --text: #ffffff;
  --muted: rgba(255,255,255,.78);

  --accent: #f2b400;      /* amarillo */
  --accent-2: #ffcc2b;    /* amarillo más vivo */
  --wa: #2b7a0b;          /* verde botón */
  --wa-hover: #2f8b0c;

  --border: rgba(255,255,255,.10);
  --shadow: 0 12px 30px rgba(0,0,0,.35);

  --radius: 16px;
  --container: 1200px;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 22px;
  --space-5: 32px;
  --space-6: 46px;

  --font: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }

.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

.skip-link{
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 12px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  transform: translateY(-200%);
  transition: transform .2s ease;
  z-index: 9999;
}
.skip-link:focus{ transform: translateY(0); }

/* HEADER */
.site-header{
  background: linear-gradient(180deg, #0f0f0f, #0b0b0b);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner{
  display: grid;
  grid-template-columns: 320px 1fr auto;
  align-items: center;
  gap: var(--space-4);
  padding: 14px 0;
}

.brand img{
  width: 300px;
  height: auto;
}

.site-nav{
  display: flex;
  justify-content: center;
  gap: 32px;
  font-weight: 700;
  letter-spacing: .2px;
}
.nav-link{
  opacity: .92;
  transition: opacity .15s ease;
}
.nav-link:hover{ opacity: 1; }

.social{
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-link{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .15s ease, background .15s ease;
}
.social-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
}

/* Mobile nav toggle */
.nav-toggle{
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
}
.nav-toggle__bars{
  display:block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  position: relative;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after{
  content:"";
  position:absolute;
  left:0;
  width:22px;
  height:2px;
  background:#fff;
}
.nav-toggle__bars::before{ top: -7px; }
.nav-toggle__bars::after{ top: 7px; }

/* HERO */
.hero{
  background: linear-gradient(90deg, #1b1b1b, #0f0f0f);
  padding: var(--space-6) 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: var(--space-6);
  align-items: center;
}

.hero-title{
  margin: 0 0 var(--space-4);
  line-height: 1.02;
  font-size: clamp(24px, 3.2vw, 44px);
}
.hero-line{ display: block; }
.accent{ color: var(--accent); }
.italic{ font-style: italic; }
.heavy{ font-weight: 800; }
.light{ font-weight: 600; color: rgba(255,255,255,.92); }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:focus-visible{
  outline: 3px solid rgba(242,180,0,.45);
  outline-offset: 3px;
}
.btn-primary{
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
  width: 240px;
}
.btn-primary:hover{
  background: var(--wa-hover);
  transform: translateY(-1px);
}
.btn-outline{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.btn-outline:hover{
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

/* Promo 3 cuotas */
.promo{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.promo-big{
  font-size: 128px;
  font-weight: 800;
  line-height: .85;
  transform: translateX(40px);
}
.promo-copy{
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
}
.promo-top{ font-size: 28px; line-height: 1; }
.promo-mid{ font-size: 28px; line-height: 1; margin-top: 4px; }
.promo-sub{
  font-size: 16px;
  line-height: 1.1;
  margin-top: 8px;
  opacity: .92;
}

/* ARRANCAS */
.arrancas{
  background: var(--panel-3);
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.arrancas-grid{
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr; /* logo batería / contenido */
  gap: 60px;
  align-items: center;
}

.arrancas-left{
  display: flex;
  justify-content: center;
}

.arrancas-badge{
  width: min(260px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.25));
}

/* Lado derecho */
.arrancas-right{
  display: grid;
  grid-template-columns: 240px 1fr; /* reloj / texto */
  grid-template-rows: auto auto auto;
  column-gap: 34px;
  row-gap: 12px;
  align-items: center;
}

.arrancas-clock{
  grid-column: 1;
  grid-row: 1;
  width: 240px;
  height: auto;
  margin: 0;
  justify-self: start;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.35));
}

.arrancas-title{
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 50px;
  line-height: 1.03;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

/* Segunda línea más finita y con menos tamaño */
.arrancas-title-sub{
  display: inline-block;
  font-weight: 750;          /* más finito */
  font-size: 0.95em;         /* más chico que ARRANCAS */
  color: rgba(255,255,255,.92);
  letter-spacing: 0;
}

.arrancas-subtitle{
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255,255,255,.92);
  max-width: 760px;
}

/* MARCAS (fila de logos) */
.brands{
  grid-column: 1 / -1;
  grid-row: 3;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: nowrap;

  width: 100%;
  margin-top: 10px;
  /* OJO: transform solo en desktop (abajo en @media min-width) */
}

.brands img{
  height: 54px;
  width: auto;
  display: block;
  opacity: .95;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.20));
}

/* 1ra y última más grandes */
.brands img:nth-child(1){ height: 70px; }
.brands img:last-child{ height: 70px; }

/* ACHICAR BORDE GRIS DE ARRANCAS (PC + mobile) */
.arrancas{
  padding: 14px 0;   /* bajá/subí esto a gusto */
}

.arrancas-grid{
  gap: 18px;         /* antes seguro era más */
}


/* NEEDS */
.needs{
  background: linear-gradient(180deg, #0c0c0c, #0b0b0b);
  padding: 44px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-title{
  margin: 0 0 26px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
}
.center{ text-align: center; }

.needs-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: start;
}

.need-card{
  display: grid;
  justify-items: center;
  row-gap: 10px;

  /* 1ra fila: caja fija para el ícono (centro alineado)
     2da fila: label */
  grid-template-rows: 72px auto;
}

.need-card img{
  width: 118px;     /* mantené tu ancho */
  height: 72px;     /* ahora sí: caja fija */
  object-fit: contain;
  object-position: center;
  display: block;

  filter: drop-shadow(0 16px 26px rgba(0,0,0,.35));
}

.need-label{
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  text-align: center;
  font-size: 18px;
}



/* HOW */
.how{
  background: #0b0b0b;
  padding: 36px 0 58px;
}
.how-title{
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 800;
}
.how-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.how-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;        /* antes 18px */
  padding: 12px 14px;         /* antes 18/16 */
  box-shadow: 0 14px 28px rgba(0,0,0,.22); /* un toque menos */
  position: relative;
  min-height: 0;              /* antes 150px (esto era el principal culpable) */
}

.how-num{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0b0b0b;
  background: var(--accent);
  margin-bottom: 10px;
  box-shadow: 0 12px 18px rgba(0,0,0,.30);
}
.how-h{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
}
.how-desc{
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px 12px;
  color: rgba(255,255,255,.88);
  font-weight: 600;
}

/* HOW: numero + titulo en la misma linea */
.how-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;  /* separa del .how-desc */
}

/* pisa tu .how-num actual SOLO en lo que molesta */
.how-num{
  margin-bottom: 0;     /* antes servía, ahora rompe */
  flex: 0 0 32px;       /* mantiene tamaño fijo */
}

/* pisa tu .how-h actual para que no baje la fila */
.how-h{
  margin: 0;            /* antes tenías 0 0 10px */
  line-height: 1.15;
}


/* LOCATION */
.location{
  padding: 44px 0 54px;
  background: linear-gradient(180deg, #0b0b0b, #0f0f0f);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.location-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.location-grid{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  align-items: start;
}
.location-info{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
}
.location-info p{
  margin: 0 0 12px;
  color: rgba(255,255,255,.90);
  font-weight: 600;
}
.location-info a{
  text-decoration: underline;
  text-underline-offset: 3px;
}
.location-note{
  margin-top: 12px;
  color: rgba(255,255,255,.65);
}
.location-map{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  min-height: 320px;
}
.location-map iframe{
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* CONTACT */
.contact{
  padding: 46px 0 56px;
  background: #0b0b0b;
}
.contact-inner{
  max-width: 900px;
}
.contact-text{
  margin: 0 auto 22px;
  max-width: 700px;
  text-align: center;
  color: rgba(255,255,255,.84);
  font-weight: 600;
}
.contact-actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
.footer{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  background: #090909;
  color: rgba(255,255,255,.68);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer a{ opacity: .9; }
.footer a:hover{ opacity: 1; }

/* WhatsApp flotante */
.wa-float{
  position: fixed;
  right: 22px;
  bottom: 22px;

  width: 110px;
  height: 110px;
  border-radius: 999px;

  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  z-index: 999;

  transition: transform .12s ease, background .12s ease;
}
.wa-float:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,.45);
}
.wa-float img{
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Desktop-only */
@media (min-width: 981px){
  .hero-left .btn-primary{
    margin-left: 30px;
  }
  /* SOLO en desktop: corrimiento fino de marcas */
  .brands{
    transform: translateX(-60px);
  }
}

/* ---- Responsive ---- */
@media (max-width: 980px){
  .header-inner{
    grid-template-columns: 1fr auto auto;
  }
  .brand img{ width: 260px; }

  .site-nav{
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: rgba(8,8,8,.98);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 14px 24px;
    display: none;
    justify-content: flex-start;
    gap: 18px;
    z-index: 1000;
  }
  .site-nav.is-open{ display: flex; flex-wrap: wrap; }
  .nav-toggle{ display: inline-flex; align-items: center; justify-content: center; }

  .hero-grid{
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: left;
  }

  /* ✅ PROMO (3 cuotas) en celu/tablet */
  .promo{
    justify-content: center;
    align-items: center;
    grid-template-columns: auto 1fr;
    column-gap: 18px;
    width: fit-content;
    margin: 0 auto;
    transform: translateX(12px);
  }

  .promo-big{
    font-size: 112px;
    transform: translateX(0);
    text-align: right;
  }

  .needs-grid{
    grid-template-columns: repeat(3, 1fr);
    row-gap: 26px;
  }
  .how-grid{
    grid-template-columns: 1fr;
  }

  .location-head{
    flex-direction: column;
    align-items: flex-start;
  }
  .location-grid{
    grid-template-columns: 1fr;
  }
}

/* ✅ ÚNICO BLOQUE MOBILE (no duplicados) */
@media (max-width: 520px){

/* WhatsApp flotante más chico en mobile */
.wa-float{
  width: 78px;
  height: 78px;
  right: 14px;
  bottom: 14px;
}

.wa-float img{
  width: 54px;
  height: 54px;
}

  .container{
    width: min(var(--container), calc(100% - 28px));
  }
  .brand img{ width: 220px; }
  .btn-primary{ width: 100%; }

  .needs-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .need-card img{ width: 100px; }
  .need-label{ font-size: 16px; }

  .promo-big{ font-size: 96px; }
  .promo-top, .promo-mid{ font-size: 22px; }

  /* ✅ ARRANCAS SOLO en celu */
  .arrancas{
    padding: 8px 0;
  }

  /* ✅ SACAR el logo batería SOLO en celu */
  .arrancas-left{
    display: none;
  }

  .arrancas-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

.arrancas-right{
  display: grid;
  grid-template-columns: 140px 1fr; 
  column-gap: 16px;
  row-gap: 10px;
  align-items: center;
}

.arrancas-clock{
  width: 140px;  
  justify-self: start;
}

.arrancas-title{
  font-size: 21px;
  line-height: 1.05;
  justify-self: center;  /* centra dentro de la columna del grid */
  text-align: center;    /* centra el texto */
}

/* solo la palabra ARRANCAS más grande */
.arrancas-word{
  font-size: 28px;
  letter-spacing: 0.6px;
  display: inline-block;
}

/* ✅ Servicio… abajo, ocupa todo, pero centrado (ya no “queda en col 1”) */
.arrancas-subtitle{
  grid-column: 1 / -1;
  width: 100%;
  max-width: 520px;   /* para que no quede larguísimo */
  margin: 6px auto 0;
  padding: 0 10px;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.35;
  text-align: center;
}


  /* si ese texto está cortado con <br> */
  .arrancas-subtitle br{ display:none !important; }

/* Brands en celu: 4 en una sola fila */
.brands{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: center;
  justify-items: center;
  margin-top: 12px;
  transform: none; /* anula translateX desktop */
}

.brands img{
  height: 34px;   /* ajustable */
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Zetta y Volta un poco más grandes en celu */
.brands img:nth-child(1),
.brands img:last-child{
  height: 55px !important;
}



}
