:root {
  --bg: #ffffff;
  --soft: #f7f7f7;
  --text: #171717;
  --muted: #5f6368;
  --line: #e7e7e7;
  --gold: #d4af37;
  --dark: #111111;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 24px 60px rgba(0,0,0,.08);
  --shadow-soft: 0 12px 30px rgba(0,0,0,.06);
  --container: 1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:'Inter',sans-serif;background:linear-gradient(180deg,#fff 0%,#fafafa 100%);color:var(--text)}
img{max-width:100%;display:block}
.container{width:min(calc(100% - 40px),var(--container));margin:0 auto}
.site-header{position:sticky;top:0;z-index:30;background:rgba(255,255,255,.9);backdrop-filter:blur(14px);border-bottom:1px solid var(--line)}
.nav-wrap{display:flex;justify-content:space-between;align-items:center;gap:20px;min-height:84px}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--text);font-weight:800}
.brand img{width:58px;height:58px;object-fit:contain;border-radius:50%;box-shadow:var(--shadow-soft)}
.site-nav{display:flex;gap:24px;flex-wrap:wrap}
.site-nav a,.footer-mini-nav a{text-decoration:none;color:var(--muted);font-weight:600}
.site-nav a:hover,.footer-mini-nav a:hover{color:var(--text)}
.hero{padding:72px 0 56px}
.hero-grid,.two-col,.contact-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:34px;align-items:center}
.eyebrow,.section-kicker{display:inline-flex;padding:10px 14px;border:1px solid var(--line);border-radius:999px;background:#fff;color:var(--muted);font-size:.92rem;font-weight:700;box-shadow:var(--shadow-soft)}
.hero-logo-wrap{margin:20px 0 12px}
.hero-logo{width:min(100%,420px);filter:drop-shadow(0 16px 30px rgba(0,0,0,.08))}
.hero h1,.section h2{margin:0 0 14px;line-height:.98;letter-spacing:-.05em}
.hero h1{font-size:clamp(2.6rem,5vw,5rem);max-width:10ch}
.hero-text,.section p{font-size:1.05rem;line-height:1.8;color:var(--muted);margin:0}
.hero-mini{margin-top:8px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:26px}
.btn{display:inline-flex;align-items:center;justify-content:center;min-height:54px;padding:0 22px;border-radius:999px;text-decoration:none;font-weight:800;transition:.25s ease}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--dark);color:#fff;box-shadow:var(--shadow-soft)}
.btn-whatsapp{background:var(--gold);color:#111;box-shadow:var(--shadow-soft)}
.hero-image-card,.qr-card,.info-card,.product-card,.promo-card,.gallery-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);box-shadow:var(--shadow-soft)}
.hero-image-card{padding:16px;overflow:hidden}
.hero-image-card img{width:100%;height:100%;object-fit:cover;border-radius:20px}
.section{padding:42px 0}
.section-soft{background:var(--soft)}
.section-highlight{padding:24px 0 48px}
.section-head{margin-bottom:24px}
.section h2{font-size:clamp(2rem,3vw,3.2rem)}
.info-stack{display:grid;gap:16px}
.info-card{padding:24px}
.card-label,.promo-badge{display:inline-block;margin-bottom:10px;color:var(--muted);font-size:.9rem;font-weight:700}
.info-card h3,.product-card h3,.promo-card h3{margin:0;font-size:1.25rem;line-height:1.35}
.text-grid,.promo-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.product-card,.promo-card{padding:24px}
.product-number{display:inline-flex;width:42px;height:42px;align-items:center;justify-content:center;border-radius:50%;background:#f4f4f4;margin-bottom:14px;font-weight:800}
.gallery-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
.gallery-card{overflow:hidden}
.gallery-card img{width:100%;height:340px;object-fit:cover}
.gallery-wide{grid-column:1 / -1}
.gallery-wide img{height:430px}
.gallery-caption{padding:18px 18px 20px;font-weight:700;line-height:1.5}
.contact-grid{align-items:start}
.qr-card{padding:18px}
.qr-card img{width:100%;border-radius:20px}
.site-footer{border-top:1px solid var(--line);background:#fff;margin-top:24px}
.footer-wrap{display:flex;justify-content:space-between;gap:24px;align-items:center;min-height:96px}
.footer-wrap p{margin:6px 0 0;color:var(--muted)}
.footer-mini-nav{display:flex;gap:18px;flex-wrap:wrap}
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease, transform .7s ease}
.reveal.visible{opacity:1;transform:none}
.delay-1{transition-delay:.12s}.delay-2{transition-delay:.22s}
@media (max-width: 980px){
  .hero-grid,.two-col,.contact-grid,.text-grid,.promo-grid,.gallery-grid{grid-template-columns:1fr}
  .gallery-wide{grid-column:auto}
  .gallery-card img,.gallery-wide img{height:auto}
  .site-nav{display:none}
  .footer-wrap{flex-direction:column;align-items:flex-start;padding:24px 0}
  .hero{padding-top:40px}
  .hero-logo{width:min(100%,320px)}
}
