
.slider {
  width: 100%;
  max-width: 1200px;
  margin: 1px auto;
  padding: 0 12px;
}

.slider__viewport {
  overflow: hidden;
  border-radius: 14px;
}

.slider__track {
  display: flex;
  transform: translateX(0%);
  transition: transform 450ms ease;
  will-change: transform;
}

.slider__slide {
  flex: 0 0 100%;
}

.slider__slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Dots */
.slider__dots {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 12px;
}

.slider__dot {
  width: 40px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #cfcfcf;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease;
}

.slider__dot:hover {
  transform: scale(1.15);
}

.slider__dot.is-active {
  background: #686868;
  transform: scale(1.2);
}

/* Accesibilidad: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .slider__track { transition: none; }
  .slider__dot { transition: none; }
}

.slider__viewport { touch-action: pan-y; }
.slider__viewport {
  touch-action: pan-y;
}




  :root{
      --oxford:#4a4f57;
      --hover:#eeeeee;
      --border:#e5e7eb;
      --bg:#ffffff;
      --text:#111827;
      --muted:#6b7280;
      --whatsapp:#25D366;
      --shadow:0 18px 40px rgba(0,0,0,.18);
      --overlay: rgba(17,24,39,.55);
      --drawerW: 360px;

      /* Ajusta si cambias la altura del header */
      --headerOffset: 92px;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; } /* fallback */
    body{ margin:0; font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; color:var(--text); background:var(--bg); }
    a{ color:inherit; text-decoration:none; }
    .container{ width:min(1200px, 92%); margin-inline:auto; }

    /* TOP HEAD (derecha) */
    .topbar{
      background:#dcdcdc;
      color:black;
      border-bottom:1px solid var(--border);
      font-size:14px;
    }
    .topbar__inner{
      display:flex;
      gap:22px;
      padding:10px 0;
      align-items:center;
      justify-content:flex-end;
      flex-wrap:wrap;
    }

    /* HEADER */
    .header{
      position:sticky;
      top:0;
      z-index:50;
      background:black;
      backdrop-filter: blur(10px);
      border-bottom:1px solid var(--border);

    }
    .header__inner{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:14px 0;
      min-height:74px;
    }

    /* Logo img 300x150 */
    .brand{
      display:flex;
      align-items:center;
      min-width:300px;
    }
    .brand__img{
      width:200px;
      height:150px;
      object-fit:contain;
      max-height:60px;
    }

    /* Nav centrado desktop */
    .nav-center{
      position:absolute;
      left:50%;
      transform:translateX(-50%);
    }
    .menu{
      display:flex;
      list-style:none;
      margin:0;
      padding:0;
      gap:10px;
    }
    .menu a{
      display:inline-block;
      padding:10px 14px;
      border-radius:12px;
      font-weight:800;
      color:white;
      white-space:nowrap;
    }
    .menu a:hover{ background:var(--hover); color:black; }

    /* Acciones */
    .actions{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:300px;
      justify-content:flex-end;
    }

    .btn-wa{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 12px;
      border-radius:999px;
      background:var(--whatsapp);
      color:#fff;
      font-weight:900;
      border:0;
      cursor:pointer;
      box-shadow: 0 12px 26px rgba(37,211,102,.25);
    }
    .btn-wa svg{ width:18px; height:18px; }

    .burger{
      display:none;
      border:1px solid var(--border);
      background:#fff;
      padding:10px 12px;
      border-radius:12px;
      cursor:pointer;
      font-weight:900;
    }
    .burger:focus{ outline:2px solid #93c5fd; outline-offset:2px; }

    /* Responsive */
    @media (max-width: 920px){
      .nav-center{ position:static; transform:none; }
      nav{ display:none; }
      .burger{ display:inline-flex; align-items:center; }
      .brand{ min-width:auto; }
      .actions{ min-width:auto; }
    }

    @media (max-width: 420px){
      .btn-wa span{ display:none; }
      .brand__img{ max-height:52px; }
    }

    /* =========================
       DRAWER (menú desde derecha)
       ========================= */
    .drawer-overlay{
      position:fixed;
      inset:0;
      background:var(--overlay);
      opacity:0;
      pointer-events:none;
      transition: opacity 220ms ease;
      z-index:999;
    }

    .drawer{
      position:fixed;
      top:0;
      right:0;
      height:100dvh;
      width:min(var(--drawerW), 92vw);
      background:#fff;
      box-shadow: var(--shadow);
      transform: translateX(110%);
      transition: transform 280ms ease;
      z-index:1000;
      display:flex;
      flex-direction:column;
    }

    .drawer__header{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:16px 16px;
      border-bottom:1px solid var(--border);
    }
    .drawer__title{ font-weight:900; letter-spacing:.2px; }
    .drawer__close{
      border:1px solid var(--border);
      background:#fff;
      border-radius:12px;
      padding:10px 12px;
      cursor:pointer;
      font-weight:900;
      line-height:1;
    }
    .drawer__close:hover{ background:#f3f4f6; }

    .drawer__body{
      padding:14px 16px 18px;
      overflow:auto;
    }

    .drawer-menu{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .drawer-menu a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 14px;
      border-radius:16px;
      border:1px solid var(--border);
      background:#fafafa;
      font-weight:900;
      transform: translateX(10px);
      opacity:0;
      transition: transform 260ms ease, opacity 260ms ease, background 150ms ease;
    }
    .drawer-menu a:hover{ background:var(--hover); }

    .drawer-open .drawer-overlay{
      opacity:1;
      pointer-events:auto;
    }
    .drawer-open .drawer{
      transform: translateX(0);
    }
    .drawer-open .drawer-menu a{
      transform: translateX(0);
      opacity:1;
    }
    .drawer-open .drawer-menu li:nth-child(1) a{ transition-delay: 60ms; }
    .drawer-open .drawer-menu li:nth-child(2) a{ transition-delay: 90ms; }
    .drawer-open .drawer-menu li:nth-child(3) a{ transition-delay: 120ms; }
    .drawer-open .drawer-menu li:nth-child(4) a{ transition-delay: 150ms; }
    .drawer-open .drawer-menu li:nth-child(5) a{ transition-delay: 180ms; }

    @media (prefers-reduced-motion: reduce){
      .drawer-overlay, .drawer, .drawer-menu a{ transition:none !important; }
      html{ scroll-behavior:auto; }
    }

    body.no-scroll{ overflow:hidden; }

    /* =========================
       SECCIONES + EFECTO VISUAL
       ========================= */

    /* Esto hace que al navegar a un #id no quede tapado por el header */
    section{
      scroll-margin-top: var(--headerOffset);
      padding:72px 0;
    }
    section h2{ margin:0 0 10px; font-size:28px; }
    section p{ margin:0; color:var(--muted); line-height:1.6; }

    /* Highlight bonito al llegar */
    section{
      position:relative;
      border-radius:18px;
    }
    section.is-target{
      animation: targetGlow 900ms ease;
    }
    section.is-target::before{
      content:"";
      position:absolute;
      inset:-8px;
      border-radius:22px;
      background: radial-gradient(closest-side, rgba(59,130,246,.18), rgba(59,130,246,0));
      opacity:0;
      animation: targetHalo 900ms ease;
      pointer-events:none;
    }

    @keyframes targetGlow{
      0%   { transform: translateY(6px); }
      100% { transform: translateY(0); }
    }
    @keyframes targetHalo{
      0%   { opacity:0; }
      35%  { opacity:1; }
      100% { opacity:0; }
    }


    /* FIN DE MENO */



    /* contenido nosotos */


    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    /* Layout */
    .wrap{ 
      max-width: var(--max); margin:0 auto; padding: 18px; }
    @media (min-width: 640px){ .wrap{ padding: 26px; } }
    @media (min-width: 1024px){ .wrap{ padding: 34px; width: 1200px; } }


    /* Compact landing spacing */
    .section{
      padding: 26px 0;
    }
    @media (min-width: 640px){
      .section{ padding: 32px 0; }
    }
    @media (min-width: 1024px){
      .section{ padding: 42px 0; }
    }

    .section + .section{
      border-top: 1px solid var(--border);
    }


    /* Typography */
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: .72rem;
      font-weight: 800;
    }
    h1{
      margin: 10px 0 10px;
      font-size: clamp(1.7rem, 3.4vw, 2.6rem);
      line-height:1.15;
      letter-spacing:-.02em;
    }
    h2{
      margin: 0 0 12px;
      font-size: clamp(1.35rem, 2.6vw, 1.9rem);
      letter-spacing:-.01em;
    }
    h3{
      margin: 0 0 8px;
      font-size: 1.05rem;
    }
    p{ margin: 8px 0; color: rgba(15,23,42,.92); }
    .muted{ color: var(--muted); }

    /* Grid + cards */
    .grids{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
      align-items: stretch;
    }
    .col-12{ grid-column: span 12; }
    .col-7{ grid-column: span 7; }
    .col-5{ grid-column: span 5; }
    .col-6{ grid-column: span 6; }
    .col-4{ grid-column: span 4; }

    @media (max-width: 920px){
      .col-7,.col-5,.col-6,.col-4{ grid-column: span 12; }
    }

    .card{
      background: #fbfbfb;
      border-radius: var(--radius);
      padding: 16px;
    }
    @media (min-width: 640px){
      .card{ padding: 18px; }
    }

    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: white;
      font-size: .9rem;
      color: rgba(15,23,42,.86);
      margin: 6px 6px 0 0;
    }

    /* Buttons */
    .btnrow{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding: 12px 14px;
      border-radius: 12px;
      text-decoration:none;
      font-weight: 800;
      font-size: .95rem;
      border: 1px solid var(--accent);
      background: var(--accent);
      color: #fff;
      transition: transform .12s ease, opacity .12s ease;
      white-space: nowrap;
    }
    .btn:hover{ transform: translateY(-1px); opacity:.92; }
    .btn.secondary{
      background:#fff;
      color: var(--accent);
      border-color: rgba(37,99,235,.35);
    }

    /* Hero */
    .hero{
      padding: 24px 0 12px;
    }
    @media (min-width: 640px){
      .hero{ padding: 32px 0 16px; }
    }
    .hero-card{
      border-radius: calc(var(--radius) + 6px);
      padding: 18px;
      background:
        radial-gradient(600px 220px at 20% 0%, rgba(37,99,235,.12), transparent 55%),
        radial-gradient(600px 220px at 95% 20%, rgba(34,197,94,.10), transparent 55%),
        #ffffff;
      border:1px solid var(--border);
    }
    @media (min-width: 640px){
      .hero-card{ padding: 22px; }
    }

    .stats{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top: 12px;
    }
    .stat{
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: #fff;
      min-width: 170px;
    }
    .stat b{ display:block; font-size: 1.05rem; }
    .stat span{ color: var(--muted); font-size: .9rem; }

    /* Services */
    .service{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .sicon{
      width:44px;height:44px;
      border-radius: 14px;
      display:grid; place-items:center;
      background: var(--accent-weak);
      border: 1px solid rgba(37,99,235,.16);
      font-size: 1.35rem;
      flex: 0 0 auto;
    }

    /* Process steps */
    .steps{ display:grid; gap: 12px; }
    .step{
      display:grid;
      grid-template-columns: 52px 1fr;
      gap: 12px;
      padding: 8px;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: white;
    }
    .picon{
      width:52px;height:52px;
      border-radius: 16px;
      display:grid; place-items:center;
      font-size: 1.5rem;
      background: #eef2ff;
      border: 1px solid rgba(37,99,235,.14);
    }
    .step p{ margin: 4px 0 0; }

    /* FAQ */
    details{
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 12px 14px;
      background: #fff;
    }
    details + details{ margin-top: 10px; }
    summary{
      cursor:pointer;
      font-weight: 800;
      color: var(--text);
      list-style:none;
    }
    summary::-webkit-details-marker{ display:none; }

   

    /*fin nosotros */





    /*galeria*/


    :root{
  --mw:1100px;
  --gap:14px;
  --r:16px;

  --page:#ffffff;
  --text:#0f172a;
  --muted:#64748b;

  --panel:#ffffff;
  --border: rgba(15,23,42,.10);
  --shadow: 0 22px 60px rgba(15,23,42,.12);

  --dark1:#0b0b0b;
  --dark2:#151515;

  --orange:#f97316;
  --orange2:#ea580c;
}


/* ===== Sección ===== */
.section{
  padding: 0 16px 64px;
}

/* ===== Header full width (solo esto oscuro) ===== */
.hero{
  width:100vw;
  margin-left: calc(50% - 50vw);
  padding: 58px 16px;
  position: relative;
  overflow: hidden;

  background:
    rgb(84 174 239 / 11%);
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
}

.hero-inner{
  max-width: var(--mw);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  font-weight: 750;
  margin-bottom: 14px;
}
.hero h2{
  margin:0;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -.02em;
  color:#fff;
}
.hero p{
  margin: 14px auto 0;
  max-width: 820px;
  color: rgba(255,255,255,.80);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
}

/* ===== Galería en blanco ===== */
.gallery{
  max-width: var(--mw);
  margin: -26px auto 0; /* queda “montada” sobre el header */
  position: relative;
  z-index: 2;
}
.gallery-card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.gallery-meta{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.gallery-meta h3{
  margin:0;
  font-size: 16px;
  color: var(--text);
}
.gallery-meta small{
  display:block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}
.gallery-meta .counter{
  color: var(--muted);
  font-size: 13px;
  user-select:none;
}

/* ===== Grid ===== */
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
@media (max-width: 1024px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
}


.gridse{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
@media (max-width: 1024px){
  .gridse{ grid-template-columns: repeat(1, 1fr); }
}

/* ===== Item ===== */
.item{
  width: 100%;
  border:0;
  padding:0;
  cursor: zoom-in;
  border-radius: var(--r);
  overflow:hidden;
  aspect-ratio: 1 / 1;
  background: #f1f5f9;
  position: relative;
}
.item img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1);
  transition: transform .35s ease;
}
.item:hover img{ transform: scale(1.07); }

.item::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.30), transparent 55%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events:none;
}
.item:hover::after{ opacity: 1; }

/* ===== Botón naranja ===== */
.actions{
  display:flex;
  justify-content:center;
  margin-top: 16px;
}
.toggle{
  border:0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 900;
  cursor:pointer;
  color:#fff;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  box-shadow: 0 16px 40px rgba(249,115,22,.25);
}
.toggle:active{ transform: translateY(1px); }

/* ===== Lightbox ===== */
.lightbox{ position:fixed; inset:0; display:none; z-index:9999; }
.lightbox.open{ display:block; }
.backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.82); }

.lb-content{
  position: relative;
  width: min(1040px, 95%);
  margin: 36px auto;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.lb-img{
  width: 100%;
  height: min(72vh, 720px);
  object-fit: contain;
  background:#000;
  border-radius: 12px;
  cursor: zoom-out;
  display:block;
}
.lb-caption{
  margin-top: 10px;
  text-align:center;
  font-size: 14px;
}

.lb-close{
  position:absolute; top:10px; right:10px;
  width:40px; height:40px;
  border-radius:50%;
  border:0;
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size: 24px;
  cursor:pointer;
}
.lb-nav{
  position:absolute; top:50%;
  transform: translateY(-50%);
  width:44px; height:44px;
  border-radius:50%;
  border:0;
  background: rgb(220 83 83 / 67%);
  color:#fff;
  font-size: 28px;
  cursor:pointer;
}
.lb-prev{ left:10px; }
.lb-next{ right:10px; }
.lb-nav:disabled{ opacity:.35; cursor:not-allowed; }


/*  fin galeria */




 /* Quote form */
    .quoteGrid{
      display:grid;
      gap: 14px;
      align-items:start;
    }
    form{ display:grid; gap: 10px; }
    label{ font-size: 12.5px; font-weight: 900; color: rgba(11,18,32,.82); }
    .field{ display:grid; gap: 6px; }
    input, select, textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid rgba(11,18,32,.14);
      background: rgba(255,255,255,.85);
      color: var(--text);
      outline: none;
      font-weight: 750;
    }
    textarea{ min-height: 120px; resize: vertical; }
    input::placeholder, textarea::placeholder{ color: rgba(11,18,32,.42); font-weight:700; }

    .formRow{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .hint{
      color: var(--muted);
      font-size: 12.5px;
      font-weight: 700;
      margin-top: 8px;
    }

    /* FAQ */
    details{
      border-radius: 11px;
      border: 1px solid rgba(11,18,32,.12);
      background: white;
      padding: 12px 14px;
    }
    details + details{ margin-top: 10px; }
    summary{
      cursor:pointer;
      font-weight: 950;
      color: rgba(11,18,32,.90);
      list-style:none;
    }
    summary::-webkit-details-marker{ display:none; }
    details p{ margin: 10px 0 0; color: var(--muted); font-weight:700; }

