/* ---- inline style block 1 ---- */

    :root{
      --ink:#071f1f;
      --deep:#062c2b;
      --deep-2:#0a3d3a;
      --teal:#03a9ad;
      --cyan:#24d0cf;
      --lime:#d9ff67;
      --yellow:#ffd235;
      --orange:#ff6b2c;
      --cream:#f5f3e9;
      --white:#ffffff;
      --muted:#b7c9c7;
      --line:rgba(255,255,255,.13);
      --shadow:0 24px 70px rgba(3,22,22,.24);
      --radius-xl:34px;
      --radius-lg:24px;
      --radius-md:18px;
      --max:1180px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:var(--cream);
      font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      overflow-x:hidden;
    }
    body::selection{background:var(--yellow);color:var(--ink)}
    a{color:inherit;text-decoration:none}
    button,a{ -webkit-tap-highlight-color:transparent; }
    img{max-width:100%;display:block}

    .noise{
      position:fixed; inset:0; z-index:999; pointer-events:none; opacity:.035;
      background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
    }

    .container{width:min(calc(100% - 40px),var(--max));margin:0 auto}
    .eyebrow{
      display:inline-flex;align-items:center;gap:10px;
      font-size:12px;font-weight:900;letter-spacing:.14em;text-transform:uppercase;
    }
    .eyebrow::before{content:"";width:22px;height:2px;background:currentColor}

    .topbar{
      background:var(--yellow); color:var(--ink); font-size:12px; font-weight:800;
      letter-spacing:.04em; text-align:center; padding:9px 16px;
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:blur(18px);
      background:rgba(6,44,43,.88);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .nav{
      min-height:72px;display:flex;align-items:center;justify-content:space-between;gap:24px;
    }
    .brand{
      display:flex;align-items:center;gap:12px;color:#fff;min-width:max-content;
    }
    .brand-mark{
      width:44px;height:44px;border:2px solid #fff;border-radius:14px;
      display:grid;place-items:center;position:relative;overflow:hidden;
      font-weight:1000;font-size:20px;letter-spacing:-.06em;
    }
    .brand-mark::after{
      content:"";position:absolute;width:30px;height:8px;background:var(--cyan);
      transform:rotate(-28deg);right:-8px;bottom:5px;border-radius:20px;
    }
    .brand-copy strong{display:block;font-size:18px;line-height:.95;letter-spacing:.09em}
    .brand-copy small{display:block;font-size:8px;letter-spacing:.27em;margin-top:5px;opacity:.82}
    .navlinks{display:flex;gap:28px;color:#d7e7e6;font-size:13px;font-weight:750}
    .navlinks a{position:relative}
    .navlinks a::after{content:"";position:absolute;left:0;bottom:-7px;width:0;height:2px;background:var(--yellow);transition:.25s}
    .navlinks a:hover::after{width:100%}

    .cta{
      position:relative;isolation:isolate;display:inline-flex;align-items:center;justify-content:center;gap:10px;
      min-height:50px;padding:0 20px;border-radius:999px;background:var(--yellow);color:var(--ink);
      font-size:13px;font-weight:950;letter-spacing:.01em;overflow:hidden;
      transition:transform .25s ease,box-shadow .25s ease;
      box-shadow:0 12px 30px rgba(0,0,0,.15);
    }
    .cta::before{
      content:"";position:absolute;inset:-1px;z-index:-1;background:linear-gradient(110deg,transparent 25%,rgba(255,255,255,.75) 48%,transparent 70%);
      transform:translateX(-120%);transition:transform .65s ease;
    }
    .cta:hover{transform:translateY(-2px);box-shadow:0 16px 36px rgba(0,0,0,.2)}
    .cta:hover::before{transform:translateX(120%)}
    .cta svg{width:17px;height:17px;flex:0 0 auto}
    .cta.dark{background:var(--deep);color:#fff;box-shadow:none}
    .cta.ghost{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.22);box-shadow:none}

    .hero{
      position:relative;overflow:hidden;background:var(--deep);color:#fff;
      min-height:720px;display:grid;align-items:center;
    }
    .hero::before{
      content:"";position:absolute;inset:0;
      background:
        radial-gradient(circle at 85% 10%,rgba(36,208,207,.27),transparent 33%),
        radial-gradient(circle at 52% 90%,rgba(255,210,53,.13),transparent 31%),
        linear-gradient(112deg,rgba(255,255,255,.025),transparent 45%);
    }
    .hero-grid{position:relative;z-index:2;display:grid;grid-template-columns:1.08fr .92fr;gap:48px;align-items:center;padding:76px 0 82px}
    .hero h1{
      font-size:clamp(54px,6.9vw,94px);line-height:.88;letter-spacing:-.065em;margin:20px 0 26px;
      max-width:780px;font-weight:950;
    }
    .hero h1 em{font-style:normal;color:var(--yellow);position:relative;white-space:nowrap}
    .hero h1 em::after{
      content:"";position:absolute;left:4px;right:0;bottom:-8px;height:12px;
      background:var(--cyan);border-radius:999px;transform:rotate(-2deg);z-index:-1;
    }
    .hero p{font-size:18px;line-height:1.6;color:#c6d8d6;max-width:590px;margin:0 0 34px}
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap}
    .hero-badges{display:flex;gap:22px;flex-wrap:wrap;margin-top:32px;color:#d8e7e5;font-size:12px;font-weight:800}
    .hero-badges span{display:flex;align-items:center;gap:8px}
    .hero-badges i{width:7px;height:7px;border-radius:50%;background:var(--cyan);box-shadow:0 0 0 5px rgba(36,208,207,.1)}

    .hero-art{position:relative;min-height:520px;display:grid;place-items:center}
    .orbit{position:absolute;width:490px;height:490px;border-radius:50%;border:1px solid rgba(255,255,255,.12)}
    .orbit::before,.orbit::after{content:"";position:absolute;border:1px dashed rgba(255,255,255,.12);border-radius:50%}
    .orbit::before{inset:36px}.orbit::after{inset:92px}
    .sun{position:absolute;width:355px;height:355px;border-radius:50%;background:linear-gradient(145deg,var(--cyan),#0b8e92);box-shadow:0 35px 100px rgba(0,0,0,.25)}
    .bubble{position:absolute;border-radius:50%;background:var(--yellow);box-shadow:0 8px 30px rgba(0,0,0,.12)}
    .bubble.b1{width:54px;height:54px;right:28px;top:78px;animation:float 5.2s ease-in-out infinite}
    .bubble.b2{width:24px;height:24px;left:38px;top:170px;background:var(--orange);animation:float 4s .6s ease-in-out infinite}
    .bubble.b3{width:20px;height:20px;right:92px;bottom:72px;background:var(--lime);animation:float 4.5s 1s ease-in-out infinite}
    @keyframes float{50%{transform:translateY(-16px) rotate(5deg)}}

    .drink-pack{position:relative;width:370px;height:440px;z-index:3;filter:drop-shadow(0 34px 32px rgba(0,0,0,.2))}
    .can,.bottle{position:absolute;bottom:14px;border:1px solid rgba(255,255,255,.25);overflow:hidden}
    .can{width:122px;height:302px;border-radius:19px 19px 26px 26px;background:linear-gradient(160deg,#fff 0 7%,#fdc833 7% 76%,#e99800 76%)}
    .can::before{content:"";position:absolute;left:10px;right:10px;top:5px;height:10px;border-radius:50%;background:#d8d8d8;box-shadow:inset 0 -3px 0 rgba(0,0,0,.12)}
    .can::after{content:"GELADA";position:absolute;left:50%;top:46%;transform:translate(-50%,-50%) rotate(-90deg);font-size:36px;font-weight:1000;letter-spacing:.02em;color:rgba(7,31,31,.9)}
    .can.one{left:42px;transform:rotate(-8deg)}
    .can.two{right:26px;height:335px;background:linear-gradient(160deg,#dffaf8 0 8%,#08a4a9 8% 78%,#087578 78%);transform:rotate(8deg)}
    .can.two::after{content:"LIGERIM";color:#fff;font-size:31px}
    .bottle{left:144px;width:86px;height:388px;border-radius:26px 26px 22px 22px;background:linear-gradient(90deg,#133c2e,#1d684c 48%,#0d3528);transform:rotate(1deg)}
    .bottle::before{content:"";position:absolute;left:25px;top:-2px;width:36px;height:70px;background:#164c38;border-radius:9px 9px 5px 5px;box-shadow:inset 0 0 0 4px rgba(0,0,0,.08)}
    .bottle::after{content:"BEBIDAS";position:absolute;left:8px;right:8px;top:142px;padding:28px 5px;background:#edf7e8;color:#12392e;text-align:center;font-weight:1000;font-size:14px;letter-spacing:.18em;border-radius:4px}
    .ice{
      position:absolute;z-index:5;left:114px;bottom:0;width:172px;height:66px;
      background:linear-gradient(160deg,rgba(238,255,255,.82),rgba(143,231,234,.63));
      clip-path:polygon(0 47%,15% 4%,36% 22%,48% 0,70% 30%,92% 14%,100% 72%,86% 100%,17% 90%);
      border:1px solid rgba(255,255,255,.6);backdrop-filter:blur(2px);
    }
    .delivery-tag{
      position:absolute;z-index:8;right:-10px;bottom:42px;background:var(--orange);color:#fff;
      padding:14px 18px;border-radius:14px;font-weight:1000;font-size:13px;transform:rotate(-6deg);box-shadow:0 15px 35px rgba(0,0,0,.22)
    }

    .ticker{background:var(--yellow);overflow:hidden;border-top:1px solid rgba(0,0,0,.08);border-bottom:1px solid rgba(0,0,0,.08)}
    .ticker-track{display:flex;width:max-content;animation:ticker 24s linear infinite}
    .ticker-track span{padding:16px 34px;font-weight:950;font-size:13px;letter-spacing:.11em;text-transform:uppercase;white-space:nowrap}
    .ticker-track span::after{content:"✦";margin-left:34px}
    @keyframes ticker{to{transform:translateX(-50%)}}

    section{padding:100px 0}
    .section-head{display:flex;justify-content:space-between;gap:32px;align-items:end;margin-bottom:38px}
    .section-head h2{font-size:clamp(38px,5vw,64px);line-height:.95;letter-spacing:-.055em;margin:12px 0 0;font-weight:950;max-width:760px}
    .section-head p{max-width:430px;color:#58716f;line-height:1.55;margin:0}

    .categories{background:#f7f5ed}
    .category-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:12px}
    .category-card{
      position:relative;min-height:250px;padding:22px;border-radius:24px;background:#fff;border:1px solid #dfe8e5;
      overflow:hidden;display:flex;flex-direction:column;justify-content:space-between;transition:.35s ease;
    }
    .category-card:hover{transform:translateY(-7px);border-color:#bfd4d1;box-shadow:var(--shadow)}
    .category-card .num{font-size:11px;font-weight:900;color:#839a98}
    .category-card .shape{height:120px;display:grid;place-items:center;position:relative}
    .category-card .shape::before{content:"";width:88px;height:88px;border-radius:32px 12px 32px 12px;background:var(--cyan);transform:rotate(13deg)}
    .category-card:nth-child(2) .shape::before{background:var(--orange);border-radius:50%}
    .category-card:nth-child(3) .shape::before{background:var(--yellow);clip-path:polygon(50% 0,100% 100%,0 100%);border-radius:0}
    .category-card:nth-child(4) .shape::before{background:#40ba72;border-radius:12px 42px 12px 42px}
    .category-card:nth-child(5) .shape::before{background:#93e2ff;clip-path:polygon(50% 0,95% 25%,78% 87%,18% 100%,0 39%);border-radius:0}
    .category-card:nth-child(6) .shape::before{background:#b58cff;border-radius:18px;transform:rotate(45deg)}
    .category-card h3{font-size:17px;margin:0;font-weight:900;letter-spacing:-.02em}
    .category-card p{font-size:12px;color:#78908e;margin:6px 0 0}

    .feature{background:var(--deep);color:#fff;position:relative;overflow:hidden}
    .feature::before{content:"";position:absolute;width:550px;height:550px;border-radius:50%;border:1px solid rgba(255,255,255,.08);right:-210px;top:-260px;box-shadow:0 0 0 60px rgba(255,255,255,.02),0 0 0 120px rgba(255,255,255,.015)}
    .feature-grid{position:relative;z-index:2;display:grid;grid-template-columns:.9fr 1.1fr;gap:24px}
    .feature-copy{padding:54px;border:1px solid var(--line);border-radius:var(--radius-xl);background:rgba(255,255,255,.035)}
    .feature-copy h2{font-size:clamp(46px,5vw,72px);line-height:.9;letter-spacing:-.06em;margin:16px 0 24px}
    .feature-copy p{color:#bad0cd;font-size:16px;line-height:1.65;margin:0 0 34px;max-width:490px}
    .steps{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    .step{padding:28px;border-radius:26px;background:#0b3937;border:1px solid rgba(255,255,255,.08);min-height:230px;display:flex;flex-direction:column;justify-content:space-between}
    .step:nth-child(2){background:var(--cyan);color:var(--ink)}
    .step:nth-child(3){background:var(--yellow);color:var(--ink)}
    .step:nth-child(4){background:#fff;color:var(--ink)}
    .step .index{font-size:12px;font-weight:1000;opacity:.6}
    .step h3{font-size:24px;line-height:1.04;letter-spacing:-.035em;margin:0;max-width:220px}
    .step p{font-size:13px;line-height:1.5;opacity:.72;margin:10px 0 0;max-width:230px}

    .occasion-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:16px}
    .occasion-card{min-height:360px;border-radius:32px;overflow:hidden;position:relative;padding:34px;background:var(--yellow);display:flex;flex-direction:column;justify-content:flex-end}
    .occasion-card.secondary{background:var(--cyan)}
    .occasion-card h3{font-size:clamp(36px,4vw,60px);line-height:.9;letter-spacing:-.06em;margin:0 0 12px;max-width:620px}
    .occasion-card p{max-width:510px;line-height:1.55;margin:0;color:#20423f}
    .occasion-card::before{content:"";position:absolute;width:240px;height:240px;border-radius:50%;border:36px solid rgba(255,255,255,.28);right:-60px;top:-60px}
    .occasion-card.secondary::before{width:180px;height:300px;border-radius:90px;background:rgba(255,255,255,.25);border:0;right:-45px;top:-100px;transform:rotate(28deg)}

    .final-cta{padding-top:0}
    .final-box{
      position:relative;overflow:hidden;border-radius:38px;background:var(--ink);color:#fff;padding:64px;
      display:flex;align-items:end;justify-content:space-between;gap:40px;
    }
    .final-box::after{content:"";position:absolute;width:320px;height:320px;background:var(--cyan);border-radius:45% 55% 63% 37%;right:-100px;top:-140px;transform:rotate(22deg);opacity:.9}
    .final-box > *{position:relative;z-index:2}
    .final-box h2{font-size:clamp(44px,5vw,72px);line-height:.9;letter-spacing:-.06em;margin:0;max-width:760px}
    .final-box p{color:#b9cfcd;max-width:520px;line-height:1.6;margin:20px 0 0}

    footer{background:#031817;color:#b6c9c6;padding:36px 0 110px;font-size:12px}
    .footer-grid{display:flex;justify-content:space-between;gap:30px;align-items:flex-start}
    footer strong{color:#fff}
    footer p{margin:8px 0;line-height:1.6}
    .legal{max-width:620px;color:#78928f}

    .float-wa{
      position:fixed;z-index:60;right:22px;bottom:22px;width:62px;height:62px;border-radius:50%;background:#25D366;color:#082b1b;
      display:grid;place-items:center;box-shadow:0 16px 40px rgba(0,0,0,.28);transition:.25s;
    }
    .float-wa:hover{transform:translateY(-4px) scale(1.03)}
    .float-wa svg{width:29px;height:29px}

    .reveal{opacity:1;transform:none;transition:opacity .7s ease,transform .7s ease}
    .reveal.in{opacity:1;transform:none}
    @media (min-width:821px){
      .reveal{opacity:0;transform:translateY(26px)}
      .reveal.in{opacity:1;transform:none}
    }

    

    

    @media (prefers-reduced-motion:reduce){
      *{scroll-behavior:auto!important;animation:none!important;transition:none!important}
      .reveal{opacity:1;transform:none}
    }
  

    :root{
      --ink:#4b0a0e;
      --deep:#d61a29;
      --deep-2:#a91620;
      --teal:#d61a29;
      --cyan:#f1632e;
      --lime:#fff1a6;
      --yellow:#f6cf53;
      --orange:#f1632e;
      --cream:#fff8e8;
      --white:#ffffff;
      --muted:#805657;
      --line:rgba(255,255,255,.20);
      --shadow:0 22px 60px rgba(120,23,22,.16);
    }

    body{
      color:var(--ink);
      background:var(--cream);
    }
    body::selection{background:var(--deep);color:#fff}

    .noise{opacity:.025}

    .topbar{
      background:var(--deep-2);
      color:#fff;
      letter-spacing:.055em;
    }

    header{
      background:rgba(246,207,83,.92);
      border-bottom:1px solid rgba(126,20,22,.16);
      box-shadow:0 10px 35px rgba(114,30,17,.06);
    }

    .brand{color:var(--deep-2)}
    .brand-mark{
      border:0;
      background:var(--deep);
      color:#fff;
      border-radius:14px;
      box-shadow:0 8px 0 rgba(133,18,22,.15);
    }
    .brand-mark::after{
      width:34px;height:10px;
      background:#fff;
      opacity:.9;
      right:-10px;bottom:4px;
    }
    .brand-copy strong{font-weight:1000}
    .brand-copy small{opacity:.72;font-weight:850}
    .navlinks{color:#7b141b}
    .navlinks a::after{background:var(--deep)}

    .cta{
      background:var(--deep);
      color:#fff;
      box-shadow:0 12px 26px rgba(160,20,29,.22);
    }
    .cta:hover{box-shadow:0 18px 34px rgba(160,20,29,.28)}
    .cta.dark{background:var(--deep-2);color:#fff}
    .cta.ghost{
      background:rgba(255,255,255,.42);
      color:var(--deep-2);
      border:1px solid rgba(126,20,22,.20);
      backdrop-filter:blur(12px);
    }

    .hero{
      min-height:740px;
      color:var(--deep-2);
      background:
        radial-gradient(circle at 84% 16%,rgba(255,255,255,.34),transparent 24%),
        radial-gradient(circle at 11% 86%,rgba(255,255,255,.22),transparent 25%),
        linear-gradient(135deg,#f7d35a 0%,#f2b83c 49%,#f5cd52 100%);
    }
    .hero::before{
      background:
        linear-gradient(125deg,rgba(255,255,255,.18),transparent 34%),
        repeating-linear-gradient(115deg,rgba(255,255,255,.055) 0 1px,transparent 1px 30px);
      opacity:.85;
    }
    .hero::after{
      content:"";
      position:absolute;
      width:620px;height:620px;
      border-radius:50%;
      right:-250px;bottom:-360px;
      background:rgba(214,26,41,.09);
      box-shadow:-120px -70px 0 rgba(255,255,255,.07);
      pointer-events:none;
    }

    .hero-grid{gap:22px;padding:82px 0 86px}
    .hero .eyebrow{color:var(--deep)!important}
    .hero h1{
      color:var(--deep);
      text-shadow:0 2px 0 rgba(255,255,255,.14);
    }
    .hero h1 em{
      color:#fff;
      display:inline-block;
      padding:0 .08em .08em;
      z-index:1;
    }
    .hero h1 em::before{
      content:"";
      position:absolute;
      inset:-.04em -.08em .02em;
      background:var(--deep);
      border-radius:.12em .34em .13em .28em;
      transform:rotate(-1.2deg);
      z-index:-1;
    }
    .hero h1 em::after{
      height:7px;
      background:#fff;
      bottom:-2px;
      opacity:.86;
    }
    .hero p{color:#6e2a2d;font-weight:600;max-width:570px}
    .hero-badges{color:#7e2227}
    .hero-badges i{
      background:var(--deep);
      box-shadow:0 0 0 5px rgba(214,26,41,.10);
    }

    /* Hero de produto: garrafas reais + linguagem da identidade Ligerim */
    .hero-art{
      position:relative;
      min-height:560px;
      display:grid;
      place-items:center;
      isolation:isolate;
    }
    .hero-ring{
      position:absolute;
      border:1px solid rgba(172,24,32,.16);
      border-radius:50%;
      z-index:-3;
    }
    .ring-a{width:520px;height:520px}
    .ring-b{width:410px;height:410px;border-style:dashed}
    .hero-splash{
      position:absolute;
      width:420px;height:410px;
      background:var(--deep);
      border-radius:44% 56% 63% 37% / 49% 39% 61% 51%;
      transform:rotate(-13deg);
      z-index:-2;
      box-shadow:0 38px 80px rgba(150,19,26,.18);
    }
    .hero-splash::after{
      content:"";
      position:absolute;
      width:170px;height:126px;
      right:-62px;top:70px;
      background:var(--deep);
      border-radius:55% 45% 58% 42%;
      transform:rotate(27deg);
    }
    .product-stage{
      position:relative;
      width:470px;height:535px;
      z-index:3;
    }
    .beer-product{
      position:absolute;
      bottom:8px;
      object-fit:contain;
      filter:drop-shadow(0 30px 24px rgba(84,14,18,.28));
      user-select:none;
      -webkit-user-drag:none;
      transition:transform .45s cubic-bezier(.2,.8,.2,1);
    }
    .heineken-product{
      width:265px;height:500px;
      right:74px;
      transform:rotate(3deg);
      z-index:4;
      animation:beerFloat 5.3s ease-in-out infinite;
    }
    .corona-product{
      width:222px;height:438px;
      left:4px;
      bottom:0;
      transform:rotate(-11deg);
      z-index:2;
      animation:beerFloatAlt 6s .4s ease-in-out infinite;
    }
    .product-stage:hover .heineken-product{transform:rotate(1deg) translateY(-8px)}
    .product-stage:hover .corona-product{transform:rotate(-14deg) translate(-8px,-2px)}
    @keyframes beerFloat{50%{transform:rotate(2deg) translateY(-10px)}}
    @keyframes beerFloatAlt{50%{transform:rotate(-9deg) translateY(-6px)}}

    .cold-stamp{
      position:absolute;
      z-index:10;
      left:22px;
      bottom:10px;
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      transform:rotate(-4deg);
    }
    .cold-stamp small{
      background:var(--deep);
      color:#fff;
      font-size:12px;
      font-weight:950;
      letter-spacing:.06em;
      padding:9px 14px;
      border-radius:10px 10px 4px 10px;
    }
    .cold-stamp strong{
      margin:-2px 0 0 28px;
      background:#fff;
      color:var(--deep);
      font-size:24px;
      line-height:1;
      padding:10px 18px 12px;
      border-radius:6px 12px 12px 12px;
      box-shadow:0 14px 25px rgba(92,19,17,.13);
      white-space:nowrap;
    }
    .delivery-tag{
      right:-6px;
      bottom:42px;
      background:#fff;
      color:var(--deep);
      border:2px solid rgba(214,26,41,.12);
      box-shadow:0 15px 35px rgba(122,18,23,.16);
    }
    .love-dot{
      position:absolute;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:var(--deep);
      color:#fff;
      box-shadow:inset 0 -9px 18px rgba(132,15,20,.24),0 12px 25px rgba(126,20,22,.14);
      z-index:6;
    }
    .love-dot span{
      font-size:28px;
      line-height:1;
      transform:translateY(-1px);
    }
    .love-one{width:66px;height:66px;right:16px;top:36px;animation:float 5s ease-in-out infinite}
    .love-two{width:44px;height:44px;left:6px;top:130px;animation:float 4.6s .7s ease-in-out infinite}
    .love-two span{font-size:19px}
    .love-three{width:52px;height:52px;right:2px;bottom:112px;animation:float 4.8s 1.2s ease-in-out infinite}
    .love-three span{font-size:22px}

    .ticker{
      background:var(--deep);
      color:#fff;
      border:0;
    }
    .ticker-track span::after{color:var(--yellow)}

    section{background:var(--cream)}
    .section-head p{color:#7d5858}
    .categories{
      background:
        radial-gradient(circle at 85% 15%,rgba(246,207,83,.32),transparent 27%),
        #fffaf0;
    }
    .categories .eyebrow{color:var(--deep)!important}
    .category-card{
      background:#fffdf7;
      border:1px solid rgba(172,24,32,.10);
      box-shadow:0 10px 30px rgba(119,28,22,.035);
    }
    .category-card:hover{
      border-color:rgba(214,26,41,.28);
      box-shadow:var(--shadow);
    }
    .category-card .num{color:#c37370}
    .category-card .shape::before{background:var(--deep)}
    .category-card:nth-child(2) .shape::before{background:var(--orange)}
    .category-card:nth-child(3) .shape::before{background:var(--yellow)}
    .category-card:nth-child(4) .shape::before{background:#e89c31}
    .category-card:nth-child(5) .shape::before{background:#ffdd79}
    .category-card:nth-child(6) .shape::before{background:#b91f28}

    .feature{
      background:
        radial-gradient(circle at 88% 10%,rgba(255,255,255,.11),transparent 28%),
        linear-gradient(140deg,var(--deep-2),var(--deep));
      color:#fff;
    }
    .feature-copy{
      background:rgba(110,12,18,.14);
      border-color:rgba(255,255,255,.20);
    }
    .feature-copy p{color:#ffe1d1}
    .step{
      background:#9f1520;
      border-color:rgba(255,255,255,.13);
    }
    .step:nth-child(2){background:var(--yellow);color:var(--ink)}
    .step:nth-child(3){background:#fff4d0;color:var(--ink)}
    .step:nth-child(4){background:var(--orange);color:#fff}

    #ocasioes{background:#fffaf0}
    #ocasioes .eyebrow{color:var(--deep)!important}
    .occasion-card{
      background:linear-gradient(135deg,#f7d45c,#efb238);
      color:var(--deep-2);
      padding:38px;
      min-height:390px;
      isolation:isolate;
    }
    .occasion-card.secondary{
      background:linear-gradient(140deg,#d61a29,#aa151f);
      color:#fff;
    }
    .occasion-card h3,.occasion-card p{position:relative;z-index:4}
    .occasion-card p{color:#6d292b;max-width:460px}
    .occasion-card.secondary p{color:#ffe1d1}
    .occasion-card::before{
      border-color:rgba(214,26,41,.12);
      z-index:-1;
    }
    .occasion-card.secondary::before{background:rgba(255,255,255,.08)}
    .occasion-copy{position:relative;z-index:4;max-width:68%}
    .occasion-beer{
      position:absolute;
      z-index:2;
      object-fit:contain;
      filter:drop-shadow(0 26px 20px rgba(87,16,15,.22));
      pointer-events:none;
      transition:transform .35s ease;
    }
    .occasion-heineken{
      height:335px;width:190px;
      right:24px;bottom:-12px;
      transform:rotate(8deg);
    }
    .occasion-corona{
      height:330px;width:178px;
      right:-2px;bottom:-4px;
      transform:rotate(10deg);
    }
    .occasion-card:hover .occasion-heineken{transform:rotate(5deg) translateY(-7px)}
    .occasion-card:hover .occasion-corona{transform:rotate(7deg) translateY(-7px)}

    /* V4 — mais produtos na faixa de ocasiões */
    .occasion-card.multi-beer .occasion-copy{max-width:52%}
    .occasion-card.multi-beer .occasion-heineken,
    .occasion-card.multi-beer .occasion-corona{filter:drop-shadow(0 26px 20px rgba(87,16,15,.22))}
    .occasion-products{
      position:absolute;
      right:8px;
      bottom:-12px;
      width:340px;
      height:100%;
      z-index:3;
      pointer-events:none;
    }
    .occasion-products .occasion-beer{position:absolute}
    .occasion-card.multi-beer .occasion-antarctica{
      height:286px;width:148px;
      right:192px;bottom:-4px;
      transform:rotate(-12deg);
    }
    .occasion-card.multi-beer .occasion-heineken{
      height:336px;width:188px;
      right:86px;bottom:-12px;
      transform:rotate(7deg);
    }
    .occasion-card.multi-beer .occasion-spaten{
      height:266px;width:144px;
      right:6px;bottom:24px;
      transform:rotate(12deg);
    }
    .occasion-card.multi-beer:hover .occasion-antarctica{transform:rotate(-10deg) translate(-4px,-8px)}
    .occasion-card.multi-beer:hover .occasion-heineken{transform:rotate(4deg) translateY(-8px)}
    .occasion-card.multi-beer:hover .occasion-spaten{transform:rotate(9deg) translateY(-9px)}

    .final-cta{background:#fffaf0}
    .final-box{
      background:linear-gradient(135deg,var(--deep-2),var(--deep));
      box-shadow:0 28px 70px rgba(151,19,24,.15);
    }
    .final-box::after{background:var(--yellow);opacity:1}
    .final-box p{color:#ffe0cf}

    footer{
      background:#5d0d13;
      color:#e9beb7;
    }
    footer .brand{color:#fff}
    footer .brand-mark{background:var(--yellow);color:var(--deep)}
    footer .legal{color:#d9aaa4}

    

    

    
  

    /* V3 — bebidas como protagonistas */
    @media (min-width:1001px){
      .hero{min-height:790px}
      .hero-grid{grid-template-columns:.88fr 1.12fr;gap:16px;padding:72px 0 82px}
      .hero-copy{position:relative;z-index:10}
      .hero-art{min-height:640px;margin-right:-42px}
      .hero-ring.ring-a{width:590px;height:590px}
      .hero-ring.ring-b{width:475px;height:475px}
      .hero-splash{width:500px;height:490px}
      .hero-splash::after{width:205px;height:145px;right:-72px;top:76px}
      .product-stage{width:585px;height:610px}
      .heineken-product{width:350px;height:610px;right:54px;bottom:-8px}
      .corona-product{width:292px;height:535px;left:-8px;bottom:-12px}
      .cold-stamp{left:22px;bottom:-3px}
      .cold-stamp strong{font-size:27px}
      .delivery-tag{right:8px;bottom:48px;font-size:14px;padding:16px 20px}
      .love-one{right:22px;top:42px}
      .love-two{left:5px;top:146px}
      .love-three{right:-2px;bottom:124px}
    }

    .drink-gallery{
      position:relative;
      padding:88px 0 102px;
      overflow:hidden;
      background:
        radial-gradient(circle at 8% 8%,rgba(214,26,41,.10),transparent 22%),
        linear-gradient(180deg,#fff8e8 0%,#fffdf7 100%);
    }
    .drink-gallery::before{
      content:"";position:absolute;inset:0;pointer-events:none;opacity:.42;
      background:repeating-linear-gradient(115deg,rgba(214,26,41,.035) 0 1px,transparent 1px 34px);
    }
    .drink-gallery .container{position:relative;z-index:2}
    .drink-gallery-head{display:grid;grid-template-columns:1fr auto;gap:28px;align-items:end;margin-bottom:32px}
    .drink-gallery-head h2{font-size:clamp(46px,5.6vw,78px);line-height:.9;letter-spacing:-.06em;margin:12px 0 0;font-weight:1000;color:var(--deep)}
    .drink-gallery-head h2 span{display:block;color:var(--deep-2)}
    .drink-gallery-head p{max-width:430px;margin:0;color:#7d3b3e;line-height:1.6;font-weight:650}

    .drink-grid{display:grid;grid-template-columns:1.18fr .82fr;grid-template-rows:320px 320px;gap:16px}
    .drink-card{position:relative;overflow:hidden;border-radius:30px;isolation:isolate;background:#250609;box-shadow:0 18px 52px rgba(123,24,25,.12)}
    .drink-card::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,transparent 22%,rgba(22,3,5,.78) 100%);pointer-events:none}
    .drink-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .8s cubic-bezier(.2,.8,.2,1),filter .6s ease}
    .drink-card:hover img{transform:scale(1.055)}
    .drink-card-copy{position:absolute;left:26px;right:26px;bottom:24px;z-index:3;color:#fff;display:flex;align-items:end;justify-content:space-between;gap:18px}
    .drink-card-copy h3{margin:5px 0 0;font-size:clamp(28px,3vw,44px);line-height:.92;letter-spacing:-.045em}
    .drink-card-copy small{font-size:10px;font-weight:950;letter-spacing:.12em;text-transform:uppercase;color:#ffd86a}
    .drink-card-copy .mini-arrow{width:46px;height:46px;border-radius:50%;display:grid;place-items:center;background:#fff;color:var(--deep);font-size:22px;flex:0 0 auto}
    .drink-card.beer-main{grid-row:1 / span 2}
    .drink-card.beer-main .drink-card-copy{left:34px;right:34px;bottom:32px}
    .drink-card.beer-main .drink-card-copy h3{font-size:clamp(42px,4.8vw,66px)}
    .drink-card.spirits img{object-position:center 56%}
    .drink-card.energy img{object-position:center 46%}
    .mobile-top-chip,.mobile-mini-chip{display:none;position:absolute;top:12px;right:12px;z-index:6;align-items:center;justify-content:center;min-height:28px;padding:0 12px;border-radius:999px;background:var(--red);color:#fff;font-size:9px;font-weight:1000;letter-spacing:.08em;line-height:1;text-transform:uppercase;white-space:nowrap;box-shadow:0 8px 18px rgba(86,10,15,.18)}
    .mobile-mini-chip{top:14px;right:14px}

    .drink-mini-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:16px}
    .drink-mini{min-height:250px;position:relative;overflow:hidden;border-radius:28px;background:var(--yellow);display:flex;align-items:center;padding:28px 30px;isolation:isolate}
    .drink-mini.red{background:var(--deep);color:#fff}
    .drink-mini-copy{position:relative;z-index:4;max-width:48%}
    .drink-mini .eyebrow{font-size:10px}
    .drink-mini h3{font-size:clamp(32px,3.6vw,50px);line-height:.9;letter-spacing:-.055em;margin:12px 0 10px}
    .drink-mini p{font-size:13px;line-height:1.55;margin:0;opacity:.76}
    .drink-mini .cutout{position:absolute;z-index:3;object-fit:contain;filter:drop-shadow(0 26px 20px rgba(88,11,16,.28));pointer-events:none;user-select:none}
    .drink-mini .mini-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;filter:saturate(1.08) contrast(1.03)}
    .drink-mini.red .mini-photo-shade{position:absolute;inset:0;z-index:2;background:linear-gradient(90deg,rgba(116,8,15,.94) 0%,rgba(151,12,21,.72) 50%,rgba(151,12,21,.20) 100%)}
    .drink-mini.red .drink-mini-copy{z-index:4}
    .drink-mini .cut-heineken{height:310px;width:205px;right:34px;bottom:-54px;transform:rotate(7deg)}
    .drink-mini .cut-corona{height:300px;width:185px;right:22px;bottom:-58px;transform:rotate(-7deg)}
    .drink-mini.red::before,.drink-mini:not(.red)::before{content:"";position:absolute;width:230px;height:230px;border-radius:50%;right:-65px;top:-78px;z-index:1}
    .drink-mini.red::before{background:rgba(255,210,53,.17)}
    .drink-mini:not(.red)::before{background:rgba(214,26,41,.12)}

    /* categories now feel more like a real drinks showcase */
    .category-card{min-height:270px}
    .category-card h3{font-size:30px}
    .category-card p{max-width:210px}

    

    

    
  

    /* V5 — categorias como vitrine real de produtos */
    .categories{
      padding:108px 0 118px;
      background:
        radial-gradient(circle at 88% 5%,rgba(246,207,83,.34),transparent 25%),
        radial-gradient(circle at 4% 88%,rgba(214,26,41,.07),transparent 24%),
        #fffaf0;
    }
    .categories .section-head{margin-bottom:42px}
    .categories .category-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
      overflow:visible;
      padding:0;
      margin:0;
    }
    .categories .category-card{
      min-height:438px;
      padding:0;
      border-radius:30px;
      background:#fff;
      border:1px solid rgba(155,25,29,.11);
      overflow:hidden;
      display:block;
      position:relative;
      box-shadow:0 16px 42px rgba(108,22,19,.06);
      transition:transform .42s cubic-bezier(.2,.8,.2,1),box-shadow .42s ease,border-color .42s ease;
    }
    .categories .category-card:hover{
      transform:translateY(-9px);
      border-color:rgba(214,26,41,.28);
      box-shadow:0 30px 66px rgba(111,22,19,.14);
    }
    .category-visual{
      position:relative;
      height:286px;
      overflow:hidden;
      isolation:isolate;
      background:linear-gradient(145deg,#f6cf53,#f0ae34);
    }
    .category-visual::before{
      content:"";
      position:absolute;
      width:230px;height:230px;
      border-radius:50%;
      right:-82px;top:-92px;
      border:30px solid rgba(255,255,255,.25);
      z-index:0;
    }
    .category-visual::after{
      content:"";
      position:absolute;
      inset:auto 0 0;
      height:92px;
      background:linear-gradient(to top,rgba(255,255,255,.10),transparent);
      z-index:1;
      pointer-events:none;
    }
    .category-card .num{
      position:absolute;
      z-index:8;
      top:18px;left:20px;
      display:inline-flex;
      align-items:center;justify-content:center;
      min-width:38px;height:30px;
      padding:0 10px;
      border-radius:999px;
      background:rgba(255,255,255,.90);
      color:var(--deep);
      font-size:10px;font-weight:1000;letter-spacing:.08em;
      box-shadow:0 8px 20px rgba(90,16,18,.10);
      backdrop-filter:blur(8px);
    }
    .category-badge{
      position:absolute;
      right:18px;top:18px;z-index:8;
      display:inline-flex;align-items:center;justify-content:center;
      min-height:28px;
      padding:0 12px;
      border-radius:999px;
      color:#fff;background:var(--deep);
      font-size:9px;font-weight:1000;letter-spacing:.09em;line-height:1;text-transform:uppercase;
      white-space:nowrap;max-width:calc(100% - 72px);overflow:hidden;text-overflow:ellipsis;
      box-shadow:0 8px 18px rgba(86,10,15,.14);
    }
    .category-info{
      position:relative;
      z-index:5;
      padding:22px 25px 26px;
      min-height:150px;
      background:#fffdf8;
    }
    .category-info h3{
      margin:0;
      font-size:31px;
      line-height:.95;
      letter-spacing:-.045em;
      color:var(--ink);
      font-weight:1000;
    }
    .category-info p{
      margin:10px 0 0;
      font-size:13px;
      line-height:1.5;
      color:#856061;
      max-width:270px;
    }
    .category-arrow{
      position:absolute;
      right:22px;bottom:24px;
      width:43px;height:43px;border-radius:50%;
      display:grid;place-items:center;
      background:#f8e7bf;color:var(--deep);
      font-weight:1000;font-size:20px;
      transition:.3s ease;
    }
    .category-card:hover .category-arrow{background:var(--deep);color:#fff;transform:rotate(8deg) translate(2px,-2px)}

    .category-photo{
      position:absolute;
      inset:0;
      width:100%;height:100%;
      object-fit:cover;
      object-position:center;
      z-index:1;
      filter:saturate(1.10) contrast(1.04);
      transition:transform .7s cubic-bezier(.2,.8,.2,1),filter .5s ease;
    }
    .category-card:hover .category-photo{transform:scale(1.055);filter:saturate(1.18) contrast(1.06)}
    .category-photo-shade{
      position:absolute;inset:0;z-index:2;
      background:linear-gradient(180deg,rgba(61,5,8,.02) 25%,rgba(61,5,8,.18) 100%);
      pointer-events:none;
    }

    .category-products{
      position:absolute;
      inset:0;
      z-index:4;
      pointer-events:none;
    }
    .category-product{
      position:absolute;
      bottom:-16px;
      object-fit:contain;
      filter:drop-shadow(0 25px 18px rgba(74,12,15,.25));
      user-select:none;
      transition:transform .48s cubic-bezier(.2,.8,.2,1);
    }
    .beer-antarctica{height:244px;width:112px;left:16px;transform:rotate(-10deg);z-index:1}
    .beer-corona{height:260px;width:118px;left:88px;transform:rotate(-5deg);z-index:2}
    .beer-heineken{height:292px;width:132px;left:166px;transform:rotate(4deg);z-index:4}
    .beer-spaten{height:248px;width:116px;right:10px;transform:rotate(10deg);z-index:3}
    .category-card:hover .beer-antarctica{transform:rotate(-13deg) translate(-4px,-7px)}
    .category-card:hover .beer-corona{transform:rotate(-7deg) translate(-2px,-9px)}
    .category-card:hover .beer-heineken{transform:rotate(2deg) translateY(-12px)}
    .category-card:hover .beer-spaten{transform:rotate(13deg) translate(3px,-8px)}

    .category-card.cat-beer .category-visual{
      background:
        radial-gradient(circle at 50% 70%,rgba(255,255,255,.35),transparent 34%),
        linear-gradient(145deg,#f7d45d,#f0ad32);
    }
    .category-card.cat-spirit .category-visual{background:#2a0b0d}
    .category-card.cat-energy .category-visual{background:#151515}
    .category-card.cat-soda .category-visual{background:#d51b2b}
    .category-card.cat-water .category-visual{background:#dff4f4}
    .category-card.cat-combo .category-visual{
      background:
        radial-gradient(circle at 55% 55%,rgba(255,255,255,.10),transparent 28%),
        linear-gradient(140deg,#b71220,#df1c2d);
    }
    .category-card.cat-combo .category-visual::before{border-color:rgba(246,207,83,.25)}
    .category-card.cat-combo .category-badge{background:var(--yellow);color:var(--deep)}
    .category-card.cat-combo .beer-antarctica{height:225px;width:103px;left:15px;bottom:-12px}
    .category-card.cat-combo .beer-corona{height:245px;width:110px;left:88px;bottom:-14px}
    .category-card.cat-combo .beer-heineken{height:276px;width:126px;left:165px;bottom:-20px}
    .category-card.cat-combo .beer-spaten{height:226px;width:106px;right:7px;bottom:-8px}

    
    
    
  

    /* Categorias: fotos reais ocupando todo o painel */
    .category-card.cat-beer .category-visual,
    .category-card.cat-combo .category-visual{
      background:#24100d;
    }
    .category-card.cat-beer .category-visual::before,
    .category-card.cat-combo .category-visual::before{
      opacity:0;
    }
    .category-photo-beer{
      object-position:center 56%;
      filter:saturate(1.10) contrast(1.05);
    }
    .category-photo-meat{
      object-position:center 50%;
      filter:saturate(1.08) contrast(1.05);
    }
    .category-card.cat-beer .category-photo-shade{
      background:linear-gradient(180deg,rgba(34,9,9,.05) 20%,rgba(55,6,10,.48) 100%);
    }
    .category-card.cat-combo .category-photo-shade{
      background:linear-gradient(180deg,rgba(20,6,4,.04) 20%,rgba(73,8,9,.52) 100%);
    }
    .category-card.cat-beer .category-badge,
    .category-card.cat-combo .category-badge{
      background:var(--deep);
      color:#fff;
    }
    .category-card.cat-combo .category-badge{
      background:var(--yellow);
      color:var(--deep-2);
    }

    /* Ocasiões: fotografia grande em vez de garrafas recortadas */
    #ocasioes .occasion-grid{
      grid-template-columns:1.25fr .75fr;
      gap:16px;
    }
    #ocasioes .stock-occasion{
      position:relative;
      display:block;
      min-height:390px;
      padding:0;
      background:#23100e;
      overflow:hidden;
      isolation:isolate;
    }
    #ocasioes .stock-occasion::before{
      display:none;
    }
    .occasion-stock-photo{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      z-index:0;
      transition:transform .75s cubic-bezier(.2,.8,.2,1),filter .5s ease;
      filter:saturate(1.05) contrast(1.03);
    }
    .stock-occasion-beer .occasion-stock-photo{object-position:center 54%}
    .stock-occasion-meat .occasion-stock-photo{object-position:center 50%}
    .occasion-stock-overlay{
      position:absolute;
      inset:0;
      z-index:1;
      background:linear-gradient(90deg,rgba(55,7,9,.88) 0%,rgba(75,8,11,.62) 48%,rgba(75,8,11,.12) 100%);
    }
    .stock-occasion-meat .occasion-stock-overlay{
      background:linear-gradient(180deg,rgba(45,5,7,.10) 10%,rgba(67,5,8,.78) 100%);
    }
    .occasion-stock-badge{
      position:absolute;
      z-index:3;
      top:28px;
      left:30px;
      padding:9px 12px;
      border-radius:999px;
      background:var(--yellow);
      color:var(--deep-2);
      font-size:10px;
      font-weight:1000;
      letter-spacing:.10em;
      text-transform:uppercase;
      box-shadow:0 10px 24px rgba(0,0,0,.12);
    }
    #ocasioes .stock-occasion .occasion-copy{
      position:absolute;
      z-index:4;
      left:32px;
      right:32px;
      bottom:32px;
      max-width:62%;
      color:#fff;
    }
    #ocasioes .stock-occasion-meat .occasion-copy{
      max-width:82%;
    }
    #ocasioes .stock-occasion .occasion-copy h3{
      color:#fff;
      margin:0 0 12px;
      text-shadow:0 2px 18px rgba(0,0,0,.25);
    }
    #ocasioes .stock-occasion .occasion-copy p,
    #ocasioes .stock-occasion.secondary .occasion-copy p{
      color:rgba(255,255,255,.91);
      margin:0;
      max-width:520px;
    }
    #ocasioes .stock-occasion:hover .occasion-stock-photo{
      transform:scale(1.045);
      filter:saturate(1.13) contrast(1.06);
    }

    
    
  

    /* HERO V7 — composição de resenha, sem garrafas soltas */
    .hero-art .hero-splash{
      width:500px;
      height:465px;
      transform:rotate(-9deg);
    }
    .hero-party-pack{
      width:620px !important;
      height:610px !important;
      position:relative;
      display:block;
      isolation:isolate;
    }
    .hero-party-pack::before{
      content:"";
      position:absolute;
      width:470px;
      height:112px;
      left:74px;
      bottom:34px;
      border-radius:50%;
      background:radial-gradient(ellipse at center,rgba(108,16,19,.28) 0%,rgba(108,16,19,.11) 44%,transparent 72%);
      filter:blur(5px);
      z-index:0;
    }
    .hero-pack-beer{
      position:absolute !important;
      object-fit:contain;
      transform-origin:50% 100%;
      filter:drop-shadow(0 28px 22px rgba(86,14,18,.28)) !important;
      transition:transform .45s cubic-bezier(.2,.8,.2,1),filter .45s ease !important;
      animation:none !important;
      bottom:auto !important;
    }
    .hero-antarctica-product{
      width:auto;
      height:455px;
      left:55px;
      bottom:35px !important;
      z-index:3;
      transform:rotate(-11deg);
      animation:heroPackFloatA 5.8s ease-in-out infinite !important;
    }
    .hero-party-pack .corona-product{
      width:auto !important;
      height:430px !important;
      left:150px !important;
      right:auto !important;
      bottom:76px !important;
      z-index:5;
      transform:rotate(-6deg) !important;
      animation:heroPackFloatB 6.2s .25s ease-in-out infinite !important;
    }
    .hero-party-pack .heineken-product{
      width:auto !important;
      height:535px !important;
      left:245px !important;
      right:auto !important;
      bottom:26px !important;
      z-index:7;
      transform:rotate(2deg) !important;
      animation:heroPackFloatC 6s .5s ease-in-out infinite !important;
    }
    .hero-spaten-product{
      width:auto;
      height:420px;
      left:365px;
      right:auto;
      bottom:72px !important;
      z-index:4;
      transform:rotate(11deg);
      animation:heroPackFloatD 6.4s .8s ease-in-out infinite !important;
    }
    .hero-party-pack:hover .hero-antarctica-product{transform:rotate(-13deg) translate(-6px,-10px) scale(1.02)}
    .hero-party-pack:hover .corona-product{transform:rotate(-8deg) translate(-5px,-11px) scale(1.025) !important}
    .hero-party-pack:hover .heineken-product{transform:rotate(0deg) translateY(-13px) scale(1.025) !important}
    .hero-party-pack:hover .hero-spaten-product{transform:rotate(13deg) translate(5px,-9px) scale(1.02)}

    .hero-ice-bed{
      position:absolute;
      left:54px;
      right:24px;
      bottom:18px;
      height:124px;
      z-index:2;
      pointer-events:none;
    }
    .hero-ice-bed::before{
      content:"";
      position:absolute;
      left:14px;right:18px;bottom:10px;height:70px;
      border-radius:52% 48% 38% 62% / 70% 58% 42% 30%;
      background:linear-gradient(165deg,rgba(255,255,255,.92),rgba(231,250,255,.78) 45%,rgba(169,226,236,.60));
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.7),0 14px 28px rgba(120,77,21,.10);
      clip-path:polygon(0 55%,7% 21%,19% 32%,28% 2%,39% 30%,48% 8%,59% 36%,70% 12%,83% 37%,94% 18%,100% 66%,91% 100%,10% 96%);
      backdrop-filter:blur(2px);
    }
    .hero-ice-bed i{
      position:absolute;
      width:46px;height:38px;
      border-radius:10px;
      background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(203,241,248,.72));
      border:1px solid rgba(255,255,255,.82);
      box-shadow:inset -8px -7px 12px rgba(94,184,203,.10);
      transform:rotate(18deg);
    }
    .hero-ice-bed i:nth-child(1){left:48px;bottom:44px;transform:rotate(-18deg)}
    .hero-ice-bed i:nth-child(2){left:142px;bottom:28px;transform:rotate(14deg)}
    .hero-ice-bed i:nth-child(3){left:244px;bottom:48px;transform:rotate(-9deg)}
    .hero-ice-bed i:nth-child(4){right:96px;bottom:30px;transform:rotate(18deg)}
    .hero-ice-bed i:nth-child(5){right:26px;bottom:50px;transform:rotate(-16deg)}

    .hero-pack-caption{
      position:absolute;
      right:12px;
      top:62px;
      z-index:9;
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      transform:rotate(3deg);
      pointer-events:none;
    }
    .hero-pack-caption span{
      background:#fff;
      color:var(--deep);
      padding:8px 12px;
      border-radius:999px;
      font-size:10px;
      font-weight:1000;
      letter-spacing:.12em;
      box-shadow:0 10px 24px rgba(105,14,18,.12);
    }
    .hero-pack-caption strong{
      margin-top:7px;
      color:#fff;
      background:rgba(117,8,14,.84);
      padding:7px 11px;
      border-radius:9px;
      font-size:10px;
      letter-spacing:.04em;
      backdrop-filter:blur(8px);
    }
    .hero-party-pack .cold-stamp{
      left:84px !important;
      bottom:-2px !important;
      z-index:12;
    }
    .hero-art .delivery-tag{
      right:-8px;
      bottom:62px;
      z-index:14;
    }

    @keyframes heroPackFloatA{50%{transform:rotate(-10deg) translateY(-8px)}}
    @keyframes heroPackFloatB{50%{transform:rotate(-5deg) translateY(-10px)}}
    @keyframes heroPackFloatC{50%{transform:rotate(1deg) translateY(-11px)}}
    @keyframes heroPackFloatD{50%{transform:rotate(10deg) translateY(-7px)}}

    

    

    

    @media (prefers-reduced-motion:reduce){
      .hero-pack-beer{animation:none !important}
    }
  

  .drink-card.beer-main > img,
  .category-card.cat-beer .category-photo,
  .category-card.cat-combo .category-photo,
  .stock-occasion-beer .occasion-stock-photo,
  .stock-occasion-meat .occasion-stock-photo{
    image-rendering:auto;
  }
  .drink-card.beer-main > img{object-fit:cover !important;object-position:center center !important;}
  .category-card.cat-beer .category-visual{background:#f1c84b !important;}
  .category-card.cat-beer .category-photo{object-fit:contain !important;object-position:center 68% !important;padding:20px 12px 8px !important;transform:none !important;filter:drop-shadow(0 22px 18px rgba(85,30,10,.18)) !important;}
  .category-card.cat-beer:hover .category-photo{transform:scale(1.02) !important;}
  .category-card.cat-combo .category-photo{object-fit:cover !important;object-position:center center !important;}
  .stock-occasion-beer .occasion-stock-photo,
  .stock-occasion-meat .occasion-stock-photo{object-fit:cover !important;object-position:center center !important;}
  .stock-occasion-beer .occasion-stock-overlay{background:linear-gradient(90deg,rgba(54,13,8,.78) 0%, rgba(54,13,8,.50) 38%, rgba(54,13,8,.12) 100%) !important;}
  .stock-occasion-meat .occasion-stock-overlay{background:linear-gradient(90deg,rgba(84,18,13,.72) 0%, rgba(84,18,13,.46) 42%, rgba(84,18,13,.12) 100%) !important;}
  


/* V14: stock photography pass — correct crop, high-res, iPhone-safe fallbacks */
.drink-card > img,
.drink-mini .mini-photo,
.category-card .category-photo,
#ocasioes .occasion-stock-photo{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
  image-rendering:auto !important;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}
.drink-card.beer-main > img{object-position:center 52% !important;}
.drink-card.spirits > img{object-position:center 58% !important;}
.drink-card.energy > img{object-position:center 48% !important;}
.drink-mini.red .mini-photo{object-position:center 58% !important;}
.category-card.cat-beer .category-photo{
  padding:0 !important;
  object-fit:cover !important;
  object-position:center 55% !important;
  filter:saturate(1.04) contrast(1.03) !important;
}
.category-card.cat-spirit .category-photo{object-position:center 60% !important;}
.category-card.cat-energy .category-photo{object-position:center 48% !important;}
.category-card.cat-soda .category-photo{object-position:center 55% !important;}
.category-card.cat-water .category-photo{object-position:center 65% !important;}
.category-card.cat-combo .category-photo{object-position:center 55% !important;}
.stock-occasion-beer .occasion-stock-photo{object-position:center 48% !important;}
.stock-occasion-meat .occasion-stock-photo{object-position:center 55% !important;}

/* No visible “square image inside card” treatment: every stock photo is full-bleed. */
.category-visual{overflow:hidden !important;}
.category-card.cat-beer .category-photo-shade,
.category-card.cat-spirit .category-photo-shade,
.category-card.cat-energy .category-photo-shade,
.category-card.cat-soda .category-photo-shade,
.category-card.cat-water .category-photo-shade,
.category-card.cat-combo .category-photo-shade{
  inset:0 !important;
}




/* =========================================================
   LIGERIM V1 CLEAN — SINGLE RESPONSIVE SYSTEM
   Desktop is the visual source of truth.
   ========================================================= */
html{width:100%;max-width:100%;overflow-x:hidden;-webkit-text-size-adjust:100%;text-size-adjust:100%}
body{width:100%;max-width:100%;overflow-x:hidden}
img{max-width:100%}

/* Tablet / narrow desktop */
@media (max-width:1000px){
  .container{width:min(calc(100% - 40px),var(--max))}
  .navlinks{display:none}

  .hero{min-height:auto}
  .hero-grid{grid-template-columns:1fr;gap:24px;padding:62px 0 54px}
  .hero-copy{text-align:center;display:flex;flex-direction:column;align-items:center}
  .hero h1{max-width:850px}
  .hero p{max-width:650px}
  .hero-actions{justify-content:center}
  .hero-badges{justify-content:center}
  .hero-art{width:100%;min-height:560px;margin:0 auto}

  .drink-gallery-head{grid-template-columns:1fr;align-items:start}
  .drink-gallery-head p{max-width:650px}
  .drink-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto;gap:16px}
  .drink-card.beer-main{grid-column:1 / -1;grid-row:auto;aspect-ratio:1.55 / 1;min-height:0}
  .drink-card.spirits,.drink-card.energy{aspect-ratio:1.48 / 1;min-height:0}

  .categories .category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}

  .feature-grid{grid-template-columns:1fr}
  .occasion-grid,#ocasioes .occasion-grid{grid-template-columns:1fr 1fr}
  .final-box{align-items:center}
}

/* Phone — same composition, stacked; no alternate carousel/layout */
@media (max-width:720px){
  :root{--radius-xl:28px;--radius-lg:22px}
  .container{width:calc(100% - 28px);max-width:100%;margin-inline:auto}
  .topbar{font-size:9px;line-height:1.35;padding:8px 12px}
  section{padding:70px 0}

  header{backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px)}
  .nav{min-height:64px;gap:10px}
  .brand{gap:9px;min-width:0}
  .brand-mark{width:38px;height:38px;border-radius:11px;font-size:17px;flex:0 0 auto}
  .brand-copy{min-width:0}
  .brand-copy strong{font-size:14px;white-space:nowrap}
  .brand-copy small{font-size:6.5px;letter-spacing:.13em;white-space:nowrap}
  header .cta{min-height:42px;max-width:45vw;padding:0 12px;font-size:10px;white-space:nowrap;flex:0 1 auto}

  .hero-grid{padding:46px 0 36px;gap:12px}
  .hero-copy{min-width:0}
  .hero .eyebrow{font-size:10px;text-align:center}
  .hero h1{font-size:clamp(44px,13.2vw,60px);line-height:.91;letter-spacing:-.058em;margin:17px 0 22px;max-width:100%}
  .hero h1 em{white-space:normal}
  .hero p{font-size:15px;line-height:1.55;margin-bottom:26px}
  .hero-actions{width:100%;display:grid;grid-template-columns:1fr;gap:10px}
  .hero-actions .cta{width:100%;min-height:54px;padding:13px 17px;white-space:normal}
  .hero-actions .cta.ghost{display:inline-flex}
  .hero-badges{display:grid;grid-template-columns:1fr 1fr;gap:12px 14px;width:100%;margin-top:22px;text-align:left}
  .hero-badges span{font-size:10px;min-width:0}

  /* Scale the desktop party-pack as one composition instead of repositioning each bottle. */
  .hero-art{min-height:420px;width:100%;overflow:visible;margin:0 auto}
  .hero-ring.ring-a{width:min(92vw,390px);height:min(92vw,390px)}
  .hero-ring.ring-b{width:min(74vw,315px);height:min(74vw,315px)}
  .hero-art .hero-splash{width:min(80vw,340px);height:min(75vw,320px)}
  .hero-party-pack{
    width:620px !important;height:610px !important;max-width:none !important;
    position:absolute;left:50%;top:50%;
    transform:translate(-50%,-50%) scale(.61);
    transform-origin:center center;
  }
  .hero-art .delivery-tag{display:none}

  .ticker-track span{padding:13px 22px;font-size:10px}.ticker-track span::after{margin-left:22px}

  .drink-gallery{padding:68px 0 76px}
  .drink-gallery-head{gap:14px;margin-bottom:24px}
  .drink-gallery-head h2{font-size:clamp(42px,12vw,54px)}
  .drink-gallery-head p{font-size:14px}
  /* Mobile keeps the DESKTOP showcase composition instead of stacking giant cards. */
  .drink-grid{
    display:grid;
    grid-template-columns:1.16fr .84fr;
    grid-template-rows:repeat(2,minmax(0,1fr));
    gap:9px;
    height:clamp(330px,98vw,410px);
  }
  .drink-card{min-height:0;aspect-ratio:auto;border-radius:21px}
  .drink-card.beer-main{grid-column:1;grid-row:1 / span 2;aspect-ratio:auto;min-height:0}
  .drink-card.spirits{grid-column:2;grid-row:1;aspect-ratio:auto}
  .drink-card.energy{grid-column:2;grid-row:2;aspect-ratio:auto}
  .drink-card-copy,.drink-card.beer-main .drink-card-copy{left:12px;right:10px;bottom:12px;gap:6px}
  .drink-card-copy small{font-size:7px;letter-spacing:.08em}
  .drink-card-copy h3{font-size:clamp(14px,4.4vw,20px);line-height:.96}
  .drink-card.beer-main .drink-card-copy h3{font-size:clamp(24px,7.2vw,32px)}
  .drink-card-copy .mini-arrow{width:30px;height:30px;font-size:15px;flex:0 0 auto}
  .drink-card.spirits .drink-card-copy,.drink-card.energy .drink-card-copy{align-items:flex-end}
  .drink-card.spirits .drink-card-copy>div,.drink-card.energy .drink-card-copy>div{min-width:0}
  .mobile-top-chip,.mobile-mini-chip{display:inline-flex;max-width:calc(100% - 24px)}
  .mobile-top-chip{min-height:22px;padding:0 9px;font-size:7px;top:10px;right:10px}
  .mobile-mini-chip{min-height:22px;padding:0 9px;font-size:7px;top:10px;right:10px}

  /* Same 2-up editorial row as desktop. */
  .drink-mini-row{grid-template-columns:1fr 1fr;gap:9px;margin-top:9px}
  .drink-mini{min-height:0;aspect-ratio:1.08 / 1;border-radius:21px;padding:15px;align-items:flex-end}
  .drink-mini-copy{max-width:78%}
  .drink-mini .eyebrow{font-size:7px;letter-spacing:.08em}
  .drink-mini h3{font-size:clamp(20px,6vw,27px);margin:7px 0 5px}
  .drink-mini p{font-size:9px;line-height:1.35}
  .drink-mini .cut-heineken{height:175px;width:112px;right:-13px;bottom:-34px}
  .drink-mini .cut-corona{height:168px;width:105px;right:-16px;bottom:-35px}

  .categories{padding:72px 0 78px}
  .categories .section-head{margin-bottom:27px}
  .section-head{display:block;margin-bottom:28px}
  .section-head h2{font-size:clamp(39px,11vw,48px)}
  .section-head p{margin-top:16px;font-size:14px}
  /* Product categories stay a compact grid, closer to desktop. */
  .categories .category-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;overflow:visible;padding:0;margin:0}
  .categories .category-card{width:100%;min-width:0;min-height:0;aspect-ratio:auto;border-radius:21px}
  .category-visual{height:auto;aspect-ratio:1 / .86}
  .category-info{min-height:112px;padding:14px 14px 16px}
  .category-info h3{font-size:20px}
  .category-info p{font-size:10px;line-height:1.35;padding-right:25px;margin-top:7px}
  .category-card .num{top:10px;left:10px;min-width:31px;height:25px;font-size:8px}
  .category-badge{top:10px;right:10px;display:inline-flex;align-items:center;justify-content:center;min-height:22px;max-width:calc(100% - 52px);font-size:7px;line-height:1;letter-spacing:.06em;text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:0 9px;border-radius:999px}
  .category-arrow{right:10px;bottom:12px;width:29px;height:29px;font-size:15px}

  .feature{padding:68px 0}
  .feature-grid{display:block}
  .feature-copy{padding:31px 23px;border-radius:27px}
  .feature-copy h2{font-size:clamp(42px,12vw,52px);line-height:.92;margin:14px 0 20px}
  .feature-copy p{font-size:14px;line-height:1.58;margin-bottom:25px}
  .feature-copy .cta{width:100%;min-height:54px}
  .steps{grid-template-columns:1fr;gap:11px;margin-top:14px}
  .step{min-height:170px;padding:23px;border-radius:23px}
  .step h3{font-size:23px}

  #ocasioes{padding:68px 0}
  #ocasioes .occasion-grid{grid-template-columns:1.25fr .75fr;gap:9px}
  #ocasioes .stock-occasion{min-height:0;padding:0;border-radius:21px;aspect-ratio:auto;height:clamp(230px,64vw,285px)}
  #ocasioes .stock-occasion .occasion-copy{left:14px;right:12px;bottom:14px;max-width:92%}
  #ocasioes .stock-occasion-meat .occasion-copy{max-width:95%}
  #ocasioes .stock-occasion .occasion-copy h3{font-size:clamp(18px,5.5vw,27px);line-height:.95}
  #ocasioes .stock-occasion .occasion-copy p{font-size:9px;line-height:1.35;margin-top:6px}
  .occasion-stock-badge{top:11px;left:11px;font-size:6px;padding:6px 7px}

  .final-cta{padding-top:0}
  .final-box{display:block;padding:40px 26px;border-radius:29px}
  .final-box h2{font-size:clamp(42px,11.8vw,52px)}
  .final-box p{font-size:14px}
  .final-box .cta{width:100%;min-height:54px;margin-top:26px}

  .footer-grid{display:block}.footer-grid>div+div{margin-top:24px}
  footer{padding-bottom:96px}
  .float-wa{width:56px;height:56px;right:14px;bottom:calc(14px + env(safe-area-inset-bottom));}

  /* iOS/WebView safety: content is always visible even if observer timing differs. */
  .reveal{opacity:1;transform:none;visibility:visible}
}

@media (max-width:430px){
  .container{width:calc(100% - 24px)}
  header .cta{max-width:44vw;padding-inline:10px;font-size:9px}
  .brand-copy strong{font-size:13px}
  .hero h1{font-size:clamp(42px,13.4vw,56px)}
  .hero-art{min-height:392px}
  .hero-party-pack{transform:translate(-50%,-50%) scale(.56)}
  .drink-grid{height:clamp(320px,101vw,390px)}
  .drink-card-copy,.drink-card.beer-main .drink-card-copy{left:10px;right:9px;bottom:10px}
  .drink-card-copy .mini-arrow{width:28px;height:28px;font-size:14px}
  .drink-mini-copy{max-width:82%}
  .mobile-top-chip,.mobile-mini-chip{font-size:6.5px}
  .category-visual{aspect-ratio:1 / .88}
  #ocasioes .stock-occasion{height:clamp(215px,66vw,260px)}
}

@media (max-width:370px){
  .brand-copy small{display:none}
  header .cta{max-width:46vw;font-size:8.5px}
  .hero h1{font-size:42px}
  .hero-badges{grid-template-columns:1fr}
  .hero-art{min-height:365px}
  .hero-party-pack{transform:translate(-50%,-50%) scale(.51)}
  .drink-card.beer-main{aspect-ratio:1 / 1.02}
  .drink-mini-copy{max-width:64%}
  .category-badge{font-size:7px;letter-spacing:.05em;max-width:calc(100% - 50px)}
}

@media (max-width:820px) and (orientation:landscape){
  .hero-grid{padding-top:36px}
  .hero h1{font-size:52px}
  .hero-art{min-height:440px}
  .hero-party-pack{transform:translate(-50%,-50%) scale(.68)}
  .categories .category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .category-visual{aspect-ratio:1.35 / 1}
}


/* ---- inline style block 2 ---- */

/* =========================================================
   LIGERIM V17 — RESPONSIVE FINAL
   One responsive layer for wide desktop, notebook, tablet,
   phones, very small phones, landscape and iOS safe areas.
   Desktop design/content/images are preserved.
   ========================================================= */
:root{--tap:44px}
html,body{width:100%;max-width:100%;overflow-x:hidden}
body{-webkit-text-size-adjust:100%;text-size-adjust:100%}
img,svg,video{max-width:100%}
button,a{touch-action:manipulation}
.mobile-card-tag{display:none}

/* Prevent long text/flex children from forcing horizontal overflow. */
.nav>*,.hero-grid>*,.drink-grid>*,.category-grid>*,.feature-grid>*,.occasion-grid>*,.final-box>*{min-width:0}
.hero h1,.section-head h2,.drink-gallery-head h2,.feature-copy h2,.final-box h2{overflow-wrap:break-word}

/* Wide desktop / ultra-wide: retain the centered editorial composition. */
@media (min-width:1441px){
  .container{width:min(calc(100% - 64px),var(--max))}
  .hero-grid{gap:56px}
  .drink-grid{gap:18px}
  .category-grid{gap:18px}
}

/* Notebook / small desktop. */
@media (min-width:1001px) and (max-width:1240px){
  .container{width:calc(100% - 48px)}
  .nav{gap:16px}
  .navlinks{gap:18px}
  .navlinks a{font-size:11px}
  .hero-grid{gap:30px}
  .hero h1{font-size:clamp(54px,6.6vw,78px)}
  .hero-art{min-width:0}
  .drink-card-copy{left:22px;right:22px}
  .category-info h3{font-size:28px}
}

/* Tablet / compact desktop. Complements the clean <=1000 rules. */
@media (min-width:721px) and (max-width:1000px){
  .container{width:calc(100% - 44px)}
  section{padding-block:82px}
  .nav{min-height:68px}
  header .cta{min-height:46px}
  .hero-grid{padding:54px 0 58px}
  .hero h1{font-size:clamp(58px,9vw,82px)}
  .hero-art{min-height:clamp(470px,63vw,570px)}
  .drink-grid{gap:14px}
  .drink-card-copy h3{font-size:clamp(28px,4.3vw,42px)}
  .categories .category-grid{gap:14px}
  .category-visual{height:clamp(220px,30vw,286px)}
  .feature-copy{padding:44px}
  .step{min-height:190px}
  #ocasioes .stock-occasion{min-height:330px}
  .final-box{padding:50px}
}

/* Phones and phablets. */
@media (max-width:720px){
  body{padding-bottom:env(safe-area-inset-bottom)}
  .container{
    width:calc(100% - 28px);
    padding-left:env(safe-area-inset-left);
    padding-right:env(safe-area-inset-right);
  }
  header .container{padding-left:max(env(safe-area-inset-left),0px);padding-right:max(env(safe-area-inset-right),0px)}
  .topbar{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}

  .nav{min-height:64px;gap:8px}
  .brand{min-width:0;flex:1 1 auto}
  .brand-copy{overflow:hidden}
  .brand-copy strong,.brand-copy small{overflow:hidden;text-overflow:ellipsis}
  header .cta{min-height:var(--tap);flex:0 0 auto;max-width:47vw}

  .hero-grid{width:100%}
  .hero-copy{width:100%}
  .hero-actions .cta{min-height:54px}
  .hero-art{max-width:620px}

  /* Showcase keeps desktop direction of art without overflowing. */
  .drink-grid{width:100%;min-width:0}
  .drink-card{min-width:0;overflow:hidden}
  .drink-card>img,.drink-mini .mini-photo{inset:0 !important;top:0 !important;left:0 !important;width:100% !important;height:100% !important;object-fit:cover !important;transform:none}
  .drink-card:hover>img{transform:none}

  .mobile-card-tag{
    display:inline-flex;
    position:absolute;
    top:10px;right:10px;z-index:20;
    align-items:center;justify-content:center;
    min-height:24px;max-width:calc(100% - 20px);
    padding:0 11px;border-radius:999px;
    background:#d61a29;color:#fff;
    font-size:7px;font-weight:1000;line-height:1;
    letter-spacing:.075em;text-transform:uppercase;white-space:nowrap;
    overflow:hidden;text-overflow:ellipsis;
    box-shadow:0 5px 14px rgba(86,10,15,.15);
    pointer-events:none;
  }
  .drink-card.beer-main .mobile-card-tag{min-width:104px}
  .drink-card.spirits .mobile-card-tag{min-width:108px}
  .drink-card.energy .mobile-card-tag{min-width:112px}
  .drink-mini .mobile-card-tag{min-width:102px}

  .category-card{overflow:hidden}
  .category-photo{inset:0 !important;top:0 !important;left:0 !important;width:100% !important;height:100% !important;object-fit:cover !important;transform:none !important}
  .category-card:hover .category-photo{transform:none !important}
  .category-badge{z-index:20}

  .occasion-card{overflow:hidden}
  .occasion-stock-photo{inset:0;width:100%;height:100%;object-fit:cover}
  #ocasioes .occasion-copy{min-width:0}

  .cta{min-height:var(--tap)}
  .float-wa{z-index:70}
}

/* Common modern phones: increase breathing room without losing the two-column visual system. */
@media (min-width:431px) and (max-width:720px){
  .container{width:calc(100% - 32px)}
  .hero h1{font-size:clamp(50px,12.7vw,64px)}
  .drink-grid{height:clamp(370px,91vw,430px)}
  .category-info{min-height:120px}
  #ocasioes .occasion-grid{grid-template-columns:1fr 1fr;gap:10px}
  #ocasioes .stock-occasion{height:clamp(250px,59vw,315px)}
}

/* Standard iPhone / Android portrait. */
@media (max-width:520px){
  section{padding-block:62px}
  .drink-gallery,.categories,.feature,#ocasioes{padding-block:62px}
  .topbar{font-size:8.5px}
  .brand-mark{width:36px;height:36px}
  .brand-copy strong{font-size:13px}
  header .cta{font-size:9px;padding-inline:10px}

  .hero-grid{padding-top:40px;padding-bottom:30px}
  .hero h1{font-size:clamp(43px,13vw,58px)}
  .hero p{font-size:14px}
  .hero-art{min-height:390px}

  .drink-gallery-head h2,.section-head h2{font-size:clamp(38px,10.8vw,49px)}
  .drink-card-copy h3{word-break:normal}
  .drink-mini-row{gap:9px}

  .category-info h3{font-size:clamp(18px,5.1vw,22px)}
  .category-info p{font-size:10px}

  /* The occasions become full-width cards on small phones for readable copy. */
  #ocasioes .occasion-grid{grid-template-columns:1fr;gap:12px}
  #ocasioes .stock-occasion{height:auto;aspect-ratio:1.55 / 1;min-height:220px}
  #ocasioes .stock-occasion .occasion-copy,
  #ocasioes .stock-occasion-meat .occasion-copy{max-width:76%;left:18px;right:18px;bottom:18px}
  #ocasioes .stock-occasion .occasion-copy h3{font-size:clamp(28px,8vw,38px)}
  #ocasioes .stock-occasion .occasion-copy p{font-size:11px;line-height:1.4}
  .occasion-stock-badge{top:14px;left:14px;font-size:7px;padding:7px 9px}

  .final-box{padding:34px 22px}
  .final-box h2{font-size:clamp(40px,11vw,50px)}
}

/* Small phones. Preserve readability rather than squeezing two tiny columns. */
@media (max-width:360px){
  .container{width:calc(100% - 22px)}
  .topbar{font-size:8px}
  .brand-copy small{display:none}
  .brand-copy strong{font-size:12px}
  header .cta{font-size:8px;max-width:48vw;padding-inline:8px}

  .hero h1{font-size:40px}
  .hero p{font-size:13px}
  .hero-badges{grid-template-columns:1fr}
  .hero-art{min-height:350px}
  .hero-party-pack{transform:translate(-50%,-50%) scale(.49)}

  /* Beer remains the hero; two supporting products sit below it. */
  .drink-grid{
    height:auto;
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto auto;
    gap:8px;
  }
  .drink-card.beer-main{grid-column:1 / -1;grid-row:1;aspect-ratio:1.35 / 1}
  .drink-card.spirits{grid-column:1;grid-row:2;aspect-ratio:1 / 1.05}
  .drink-card.energy{grid-column:2;grid-row:2;aspect-ratio:1 / 1.05}
  .drink-card.beer-main .drink-card-copy h3{font-size:29px}
  .drink-card.spirits .drink-card-copy h3,.drink-card.energy .drink-card-copy h3{font-size:16px}

  .drink-mini-row{grid-template-columns:1fr}
  .drink-mini{aspect-ratio:1.5 / 1;min-height:190px}
  .drink-mini-copy{max-width:70%}
  .drink-mini h3{font-size:26px}

  .categories .category-grid{grid-template-columns:1fr;gap:12px}
  .category-visual{aspect-ratio:1.55 / 1;height:auto}
  .category-info{min-height:105px}
  .category-info h3{font-size:25px}
  .category-info p{font-size:11px;max-width:80%}

  .feature-copy{padding:27px 19px}
  .step{min-height:145px;padding:20px}
  #ocasioes .stock-occasion{aspect-ratio:1.35 / 1}
  .float-wa{width:54px;height:54px;right:12px}
}

/* Landscape phones / short viewports: use horizontal space instead of creating a very tall hero. */
@media (max-width:950px) and (orientation:landscape) and (max-height:520px){
  .topbar{display:none}
  .nav{min-height:58px}
  .hero-grid{
    grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
    align-items:center;gap:18px;padding:28px 0 30px;
  }
  .hero-copy{text-align:left;align-items:flex-start}
  .hero .eyebrow{text-align:left}
  .hero h1{font-size:clamp(38px,6vw,54px);margin:12px 0 14px}
  .hero p{font-size:12px;line-height:1.42;margin-bottom:14px}
  .hero-actions{display:flex;grid-template-columns:none;width:auto;gap:8px}
  .hero-actions .cta{width:auto;min-height:44px;padding:10px 13px;font-size:9px}
  .hero-badges{display:none}
  .hero-art{min-height:310px}
  .hero-party-pack{transform:translate(-50%,-50%) scale(.48)}
  .drink-grid{height:360px}
  .categories .category-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  #ocasioes .occasion-grid{grid-template-columns:1fr 1fr}
  #ocasioes .stock-occasion{aspect-ratio:1.35 / 1;height:auto}
}

/* Very short landscape screens (e.g. browser UI consuming vertical space). */
@media (max-height:390px) and (orientation:landscape){
  .hero h1{font-size:36px}
  .hero p{display:none}
  .hero-art{min-height:250px}
  .hero-party-pack{transform:translate(-50%,-50%) scale(.40)}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important}
}


/* ---- inline style block 3 ---- */

.drink-card img,.category-photo,.mini-photo{filter:none !important;}
.drink-card.spirits img{background:#efefef; object-fit:cover; object-position:center center !important;}
.drink-card.energy img{background:#0a0c12; object-fit:cover; object-position:center center !important;}
.drink-mini.red .mini-photo{object-fit:cover; object-position:center center !important;}
.category-card.cat-spirit .category-photo{background:#efefef; object-fit:cover; object-position:center center !important;}
.category-card.cat-energy .category-photo{background:#0a0c12; object-fit:cover; object-position:center center !important;}
.category-card.cat-soda .category-photo,.category-card.cat-water .category-photo,.category-card.cat-combo .category-photo,.category-card.cat-beer .category-photo{object-fit:cover; object-position:center center !important;}
@media (max-width:720px){
  .drink-card.beer-main img,.drink-card.spirits img,.drink-card.energy img{object-fit:cover; object-position:center center !important;}
  .drink-mini.red .mini-photo{object-fit:cover; object-position:center center !important;}
  .category-photo{object-fit:cover; object-position:center center !important;}
}


/* ---- inline style block 4 ---- */

.drink-card.beer-main img,
.category-card.cat-beer .category-photo,
.drink-mini.red .mini-photo,
.category-card.cat-soda .category-photo,
.category-card.cat-combo .category-photo,
.occasion-grid .occasion-stock-photo{
  object-fit: cover !important;
  object-position: center center !important;
}
