:root{
    /* Base clara (distribuidora / alimentos) */
    --bg: #f3f4f6;
    --panel: rgba(255,255,255,.78);
    --panel2: rgba(255,255,255,.92);
  
    --text: rgba(10,12,16,.92);
    --muted: rgba(10,12,16,.64);
    --muted2: rgba(10,12,16,.46);
  
    --stroke: rgba(10,12,16,.10);
    --stroke2: rgba(10,12,16,.16);
  
    /* Marca */
    --accent: #c4161c;
    --accent-soft: rgba(196,22,28,.10);
  
    --shadow: 0 20px 60px rgba(10,12,16,.10);
    --shadow2: 0 24px 70px rgba(10,12,16,.12);
  
    --radius: 18px;
    --radius2: 26px;
    --max: 1120px;
  }
  
  *{ box-sizing: border-box; }
  html, body{ height:100%; }
  body{
    margin: 0;
    color: var(--text);
    background:
      radial-gradient(900px 520px at 20% 25%, rgba(196,22,28,.08), transparent 60%),
      radial-gradient(900px 520px at 75% 10%, rgba(0,0,0,.04), transparent 60%),
      linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    overflow: hidden; /* el scroll vive en .pages */
  }
  
  a{ color: inherit; text-decoration: none; }
  button{ font: inherit; }
  
  .container{
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
  }
  
  /* =========================
     TOPBAR (como referencia)
  ========================= */
  .topbar{
    position: fixed;
    inset: 14px 14px auto 14px;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
  }
  
  .brand{
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 4px;
  }
  
  .brand-logo{
    height: 38px;
    width: auto;
    object-fit: contain;
  }
  
  .brand-text{
    display: grid;
    gap: 2px;
    line-height: 1.1;
  }
  
  .brand-text .brand-name{
    font-weight: 850;
    letter-spacing: -0.02em;
    font-size: 16px;
  }
  
  .brand-text .brand-sub{
    font-size: 12px;
    color: rgba(10,12,16,.55);
  }
  
  .nav{
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.82);
    border-radius: 999px;
  }
  
  .nav-link{
    border: 0;
    background: transparent;
    color: rgba(10,12,16,.68);
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .12s ease, background .2s ease, color .2s ease;
  }
  
  .nav-link:hover{
    transform: translateY(-1px);
    color: rgba(10,12,16,.92);
  }
  
  .nav-link.is-active{
    background: rgba(196,22,28,.10);
    color: rgba(10,12,16,.92);
  }
  
  .topbar-cta{
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-right: 4px;
  }
  
  /* Si seguís usando el botón WhatsApp viejo, no rompe */
  .topbar-cta .btn{ padding: 10px 14px; }
  
  .icon-btn{
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.92);
    color: rgba(10,12,16,.78);
    box-shadow: 0 10px 20px rgba(0,0,0,.05);
    transition: transform .12s ease, border-color .2s ease;
  }
  
  .icon-btn:hover{
    transform: translateY(-1px);
    border-color: rgba(196,22,28,.25);
  }
  
  /* =========================
     BOTONES
  ========================= */
  .btn{
    border: 1px solid rgba(0,0,0,.12);
    background: #ffffff;
    color: rgba(10,12,16,.92);
    padding: 12px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .12s ease, background .2s ease, border-color .2s ease, color .2s ease;
  }
  
  .btn:hover{
    transform: translateY(-1px);
    border-color: rgba(196,22,28,.35);
    color: var(--accent);
  }
  
  .btn.ghost{
    background: transparent;
    border-color: rgba(0,0,0,.10);
    color: rgba(10,12,16,.68);
  }
  
  .btn.ghost:hover{
    color: rgba(10,12,16,.92);
    border-color: rgba(0,0,0,.18);
  }
  
  .btn.primary{
    background: var(--accent);
    color: #fff;
    border: none;
  }
  
  .btn.primary:hover{
    background: #a61217;
    color: #fff;
  }
  
  /* =========================
     PAGES / SNAP SCROLL
  ========================= */
  .pages{
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }
  
  .page{
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    padding: 110px 0 70px; /* espacio topbar */
    position: relative;
  }
  
  /* =========================
     TIPOGRAFÍA
  ========================= */
  .eyebrow{
    color: rgba(10,12,16,.50);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    margin: 0 0 14px;
  }
  
  .h1{
    font-size: clamp(44px, 6.2vw, 86px);
    line-height: 1.02;
    margin: 0 0 16px;
    letter-spacing: -0.04em;
  }
  
  .h2{
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.08;
    margin: 0 0 14px;
    letter-spacing: -0.03em;
  }
  
  .lead{
    color: rgba(10,12,16,.70);
    font-size: 16.5px;
    line-height: 1.65;
    margin: 0;
    max-width: 68ch;
  }
  
  /* =========================
     HERO
  ========================= */
  .hero{ padding-top: 120px; }
  
  .hero-grid{
    display: grid;
    grid-template-columns: 1fr; /* limpio como referencia */
    gap: 26px;
    align-items: start;
  }
  
  .hero-actions{
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
  }
  
  /* Métricas (si las tenés aún) */
  .metrics{
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    margin-top: 26px;
    max-width: 640px;
  }
  
  .metric{
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.92);
    border-radius: var(--radius);
    padding: 14px 14px;
    box-shadow: 0 14px 34px rgba(0,0,0,.05);
  }
  
  .metric-big{
    display:block;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: 18px;
  }
  
  .metric-small{
    display:block;
    color: rgba(10,12,16,.52);
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: .10em;
    text-transform: uppercase;
  }
  
  /* Si quedó algún hero-card viejo en HTML, no queda feo */
  .hero-card{
    border-radius: var(--radius2);
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.92);
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
    overflow: hidden;
  }
  .card-inner{ padding: 26px; }
  
  /* =========================
     SECCIONES GENERALES
  ========================= */
  .section-head{ margin-bottom: 24px; }
  
  .features{
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
    margin-top: 22px;
  }
  
  .feature{
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.92);
    border-radius: var(--radius2);
    padding: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,.05);
  }
  
  .feature h3{
    margin: 0 0 8px;
    font-size: 16px;
    letter-spacing: -0.01em;
  }
  
  .feature p{
    margin: 0;
    color: rgba(10,12,16,.68);
    line-height: 1.6;
  }
  
  /* =========================
     MARCAS con LOGOS (premium)
  ========================= */
  .brands-logos{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
  }
  
  .logo-card{
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.94);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 18px 40px rgba(0,0,0,.06);
    transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
  }
  
  .logo-card:hover{
    transform: translateY(-2px);
    border-color: rgba(196,22,28,.25);
    box-shadow: 0 26px 60px rgba(0,0,0,.09);
  }
  
  .logo-card img{
    max-width: 240px;   /* grande en PC */
    max-height: 95px;   /* grande en PC */
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  /* Compatibilidad con el bloque viejo de pills si quedó */
  .brands{
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 12px;
    margin-top: 22px;
  }
  .brand-pill{
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.92);
    border-radius: 999px;
    padding: 14px;
    text-align: center;
    color: rgba(10,12,16,.70);
  }
  
  /* =========================
     CONTACTO (centrado premium)
  ========================= */
  .contact-center{
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
  }
  
  .contact-head{
    width: 100%;
    display: grid;
    gap: 10px;
    justify-items: center;
  }
  
  .contact-title{ margin: 0; }
  
  .contact-sub{
    margin: 0;
    color: rgba(10,12,16,.68);
    line-height: 1.6;
    max-width: 60ch;
  }
  
  /* Form premium */
  .form{
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.92);
    border-radius: var(--radius2);
    padding: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.07);
  }
  
  .form-premium{
    width: 100%;
    border: 1px solid rgba(0,0,0,.08);
    background:
      radial-gradient(800px 280px at 50% 0%, rgba(196,22,28,.07), transparent 60%),
      rgba(255,255,255,.94);
    border-radius: 26px;
    padding: 20px;
    box-shadow: var(--shadow2);
    text-align: left;
    backdrop-filter: blur(8px);
  }
  
  .form-premium .form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .field{
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .form label{
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .form span,
  .field span{
    color: rgba(10,12,16,.52);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  
  input, textarea{
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.90);
    color: rgba(10,12,16,.92);
    padding: 14px 14px;
    outline: none;
    transition: box-shadow .18s ease, border-color .18s ease;
  }
  
  input::placeholder, textarea::placeholder{
    color: rgba(10,12,16,.40);
  }
  
  input:focus, textarea:focus{
    border-color: rgba(196,22,28,.35);
    box-shadow: 0 0 0 8px rgba(196,22,28,.10);
  }
  
  .form-actions{
    display: grid;
    gap: 10px;
    justify-items: start;
    margin-top: 6px;
  }
  
  .form-hint{
    margin: 0;
    color: rgba(10,12,16,.45);
    font-size: 12px;
  }
  
  /* Mini info pill */
  .contact-mini{
    width: 100%;
    max-width: 920px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.88);
    border-radius: 999px;
    box-shadow: 0 14px 40px rgba(0,0,0,.06);
  }
  
  .mini-item{
    display: grid;
    gap: 2px;
    text-align: left;
  }
  
  .mini-k{
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(10,12,16,.45);
  }
  
  .mini-v{
    color: rgba(10,12,16,.78);
    font-weight: 700;
  }
  
  .mini-dot{
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(196,22,28,.35);
  }
  
  /* =========================
     FOOTER (si existe)
  ========================= */
  .footer{
    position: absolute;
    bottom: 24px;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
  }
  
  .footer p{
    margin: 0;
    color: rgba(10,12,16,.45);
    font-size: 12px;
    letter-spacing: .06em;
  }
  
  /* =========================
     RESPONSIVE
  ========================= */
  @media (max-width: 980px){
    .topbar{
      grid-template-columns: 1fr;
      gap: 10px;
      border-radius: 22px;
      padding: 12px;
      inset: 12px 12px auto 12px;
    }
  
    .topbar-cta{
      justify-content: flex-start;
    }
  
    .page{ padding-top: 155px; }
  
    .features{ grid-template-columns: 1fr; }
  
    .metrics{ grid-template-columns: 1fr; max-width: 520px; }
  
    .brands-logos{ grid-template-columns: repeat(2, minmax(0,1fr)); }
    .logo-card{ min-height: 104px; }
    .logo-card img{
      max-width: 170px;
      max-height: 70px;
    }
  
    .form-premium .form-row{ grid-template-columns: 1fr; }
  
    .contact-mini{
      border-radius: 22px;
      flex-direction: column;
      align-items: flex-start;
    }
    .mini-item{ width: 100%; }
  }

  /* ===== HEADER SOCIAL ICONS ===== */

.topbar-cta {
  display: flex;
  gap: 14px;
  align-items: center;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  color: #111;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.icon-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Hover con identidad de marca */

.icon-btn:hover .fa-instagram {
  color: #E4405F;
}

.icon-btn:hover .fa-whatsapp {
  color: #25D366;
}

.icon-btn:hover .fa-facebook-f {
  color: #1877F2;
}

/* Dirección centrada minimal */

.contact-mini.single {
  justify-content: center;
  text-align: center;
  padding: 14px 22px;
}

.mini-address {
  font-weight: 600;
  color: rgba(10,12,16,.78);
  letter-spacing: .02em;
}

/* Logo antes del footer */

.footer-brand {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  opacity: 0.85;
  transition: opacity .2s ease, transform .2s ease;
}

.footer-brand img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.contact-mini.single {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.mini-email {
  font-size: 14px;
  color: rgba(10,12,16,.75);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mini-email a {
  color: inherit;
  text-decoration: none;
}

.mini-email a:hover {
  color: var(--accent);
}