/* IL Distribuidor Pet - Landing (HostGator ready) */
:root{
  --bg0:#0b1220;
  --bg1:#0a1833;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --line:rgba(255,255,255,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.40);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
  color:var(--text);
  background: radial-gradient(1100px 520px at 15% 10%, rgba(56,189,248,.22), transparent 60%),
              radial-gradient(900px 520px at 80% 0%, rgba(45,212,191,.18), transparent 55%),
              linear-gradient(180deg, var(--bg1), var(--bg0) 55%, #070b14);
}

.container{max-width:1120px; margin:0 auto; padding:0 20px}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,11,20,.65);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0}

.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:42px;height:42px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background: linear-gradient(135deg, rgba(45,212,191,.95), rgba(56,189,248,.95));
  color:#041018;
  font-weight:900;
  letter-spacing:.5px;
}
.brand__name{font-weight:800}
.brand__tag{font-size:12px;color:var(--muted); margin-top:2px}

.topbar__actions{display:flex; gap:10px; flex-wrap:wrap}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  color:var(--text);
  text-decoration:none;
  background: rgba(255,255,255,.02);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  font-weight:700;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.18)}
.btn--primary{
  border:0;
  background: linear-gradient(135deg, rgba(45,212,191,1), rgba(56,189,248,1));
  color:#041018;
}
.btn--ghost{background:transparent}
.btn--lg{padding:12px 18px; border-radius:14px; font-size:15px}

.hero{padding:54px 0 28px}
.hero__grid{display:grid; grid-template-columns: 1.35fr .65fr; gap:18px; align-items:stretch}
@media (max-width: 920px){.hero__grid{grid-template-columns:1fr}}

.pill{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.4px;
  border:1px solid rgba(45,212,191,.35);
  color: #99f6e4;
  background: rgba(45,212,191,.08);
  margin-bottom:12px;
}

h1{font-size:44px; line-height:1.05; margin:0 0 12px}
@media (max-width:520px){h1{font-size:34px}}
.lead{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px}

.value{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin:18px 0 18px}
@media (max-width:820px){.value{grid-template-columns:1fr}}
.value__item{
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius:16px;
  padding:14px;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}
.value__title{font-weight:800; margin-bottom:6px}
.value__desc{color:var(--muted); font-size:13px; line-height:1.5}

.cta__note{margin-top:10px; font-size:12px; color:var(--muted)}

.card{
  height:100%;
  border:1px solid var(--line);
  border-radius:18px;
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow);
  padding:18px;
}
.card__title{font-weight:900; margin-bottom:10px}
.card__divider{height:1px;background:var(--line); margin:16px 0}
.checklist{margin:0; padding:0 0 0 16px; color:var(--muted); line-height:1.8}
.checklist li{margin:4px 0}
.contact__label{color:var(--muted); font-size:12px}
.contact__value{display:inline-block; font-weight:900; font-size:18px; text-decoration:none; color:var(--text); margin-top:4px}
.contact__hint{color:var(--muted); font-size:12px; margin-top:6px}

.section{padding:34px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head h2{margin:0 0 8px; font-size:26px}
.section__head p{margin:0; color:var(--muted); line-height:1.6}

.logos{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:12px;
}
@media (max-width:1020px){.logos{grid-template-columns: repeat(3, 1fr)}}
@media (max-width:520px){.logos{grid-template-columns: repeat(2, 1fr)}}

.logo{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  padding:14px;
  display:flex; align-items:center; justify-content:center;
  min-height:92px;
}
.logo img{max-width:100%; max-height:56px; object-fit:contain; filter: saturate(1.05);}

.products{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
@media (max-width:1020px){.products{grid-template-columns: repeat(2, 1fr)}}
@media (max-width:520px){.products{grid-template-columns:1fr}}

.product{
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 12px 26px rgba(0,0,0,.20);
}
.product__img{aspect-ratio: 1 / 1; display:flex; align-items:center; justify-content:center; padding:14px; background: rgba(255,255,255,.03)}
.product__img img{max-width:100%; max-height:100%; object-fit:contain}
.product__name{padding:12px 14px; font-weight:900}

.muted{color:var(--muted); font-size:12px}

.contactbox{
  margin-top:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius:18px;
  padding:18px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  box-shadow: var(--shadow);
}
@media (max-width:820px){.contactbox{flex-direction:column; align-items:flex-start}}
.contactbox__title{font-weight:900; font-size:18px; margin-bottom:6px}
.contactbox__desc{color:var(--muted); line-height:1.6}
.contactbox__hint{color:var(--muted); font-size:12px; margin-top:8px}

.footer{
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.15);
  padding:18px 0;
}
.footer__inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; color:var(--muted); font-size:13px}
.footer__right{display:flex; gap:14px}
.footer__right a{color:var(--muted); text-decoration:none}
.footer__right a:hover{color:var(--text)}
