@font-face { font-family:'Cooper';    src:url('https://poppys.global/wp-content/uploads/2023/06/COOPBL.ttf') format('truetype'); }
@font-face { font-family:'COCON-BOLD';src:url('https://poppys.global/wp-content/uploads/2025/02/COCON-BOLD-_1_.ttf') format('truetype'); }

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:Roboto,system-ui,sans-serif;background:#fff;color:rgb(30,30,30);overflow-x:hidden;}
a{text-decoration:none;color:inherit;cursor:pointer;}
img{display:block;max-width:100%;}

:root{
  --red:rgb(255,0,0);
  --red-act:rgb(229,9,19);
  --red-dark:rgb(73,13,13);
  --yellow:rgb(214,255,0);
  --text:rgb(30,30,30);
  --cardbg:#F5F0EB;
  --maxw:1140px;
}

/* ═══ LANG BAR ═══ */
#lang-bar{
  position:fixed;top:0;left:0;right:0;z-index:9999;
  height:36px;background:rgba(255,255,255,.97);backdrop-filter:blur(6px);
  border-bottom:2px solid var(--red);
  display:flex;align-items:center;justify-content:flex-end;padding:0 28px;
}
.lb-flags{display:flex;gap:3px;}
.lang-btn{
  display:flex;align-items:center;gap:4px;
  background:none;border:1.5px solid transparent;border-radius:20px;padding:2px 9px;
  cursor:pointer;font-family:'COCON-BOLD',sans-serif;font-size:11px;color:#999;transition:all .15s;
}
.lang-btn .fl{font-size:15px;}
.lang-btn:hover{color:var(--red);border-color:rgba(255,0,0,.3);}
.lang-btn.active{color:var(--red);border-color:var(--red);background:rgba(255,0,0,.06);}

/* ═══ HEADER (sticky, 221px total) ═══ */
#site-header{
  position:sticky;top:36px;z-index:998;
  background:#fff;width:100%;
}
/* Seção 0: 155px — ícone left:60 top:-5 w:155 h:150 + wordmark left:600 top:47 w:258 h:60 */
.hdr-top{
  position:relative;height:155px;overflow:visible;cursor:pointer;
}
.hdr-icon{position:absolute;left:60px;top:-5px;width:155px;height:150px;}
.hdr-icon img{width:100%;height:100%;object-fit:contain;}
.hdr-wordmark{position:absolute;left:600px;top:47px;width:258px;height:60px;}
.hdr-wordmark img{width:100%;height:100%;object-fit:contain;}
.hdr-wordmark .wm-fb{display:none;font-family:'COCON-BOLD',sans-serif;font-size:38px;color:var(--red);letter-spacing:-1px;line-height:1;}
/* Seção 1: 66px nav */
.hdr-nav{height:66px;border-top:1px solid #f0f0f0;display:flex;align-items:center;justify-content:center;}
.main-nav{display:flex;align-items:center;}
.main-nav a{font-family:'COCON-BOLD',sans-serif;font-size:15px;color:rgb(0,0,0);padding:13px 20px;display:block;transition:color .15s;white-space:nowrap;}
.main-nav a:hover{color:var(--red-act);}
.main-nav a.nav-on{color:var(--red-act);}
.main-nav a.nav-fr{background:var(--red);color:var(--yellow)!important;border-radius:30px;padding:5px 10px;margin-left:4px;}
.main-nav a.nav-fr:hover{opacity:.88;}

/* ═══ PAGES ═══ */
.page{display:none;}
.page.active{display:block;}

/* ═══════════════════════════════════════════
   CAROUSEL — Swiper-like, loop infinito
   Estrutura: container overflow:hidden
              wrapper flex, width = N_slides × 1470px
              cada slide: width:1470px height:827px flex-shrink:0
              transition: transform 0.5s ease
   ═══════════════════════════════════════════ */
.swiper-outer{
  /* Swiper: position:static, overflow:hidden, width:1470, height:827 */
  position:relative;
  width:100%;
  height:827px;
  overflow:hidden;   /* <- CRÍTICO: esconde os slides que não estão visíveis */
  background:#ddd;
}
.swiper-wrapper{
  /* wrapper: display:flex, flex-direction:row, width = slides × 1470 */
  display:flex;
  flex-direction:row;
  height:100%;
  /* NÃO colocar width aqui — JS vai calcular */
  will-change:transform;
}
.swiper-slide{
  /* cada slide: flex-shrink:0, width:1470px, height:827px */
  flex-shrink:0;
  width:1470px;
  height:827px;
  position:relative;
  display:block;
}
.swiper-slide img{
  width:100%;
  height:100%;
  object-fit:fill;   /* exato: fill (não cover) */
  display:block;
}
/* dots */
.sw-dots{
  position:absolute;bottom:16px;left:50%;transform:translateX(-50%);
  display:flex;gap:8px;z-index:5;
}
.sw-dot{
  width:10px;height:10px;border-radius:50%;
  background:rgba(255,255,255,.45);border:none;cursor:pointer;transition:background .3s;
}
.sw-dot.active{background:#fff;}
/* setas */
.sw-btn{
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(0,0,0,.28);color:#fff;border:none;
  width:44px;height:44px;border-radius:50%;font-size:24px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;z-index:5;transition:background .2s;
}
.sw-btn:hover{background:rgba(0,0,0,.52);}
.sw-btn.prev{left:16px;}
.sw-btn.next{right:16px;}

/* ═══ RED STRIPE 50px ═══ */
.red-stripe{background:var(--red);height:50px;width:100%;}

/* ═══ PRODUTOS — max-width:1140  grid 4×25%  wrap-pad:10px ═══ */
.products-section{background:#fff;padding:0;}
.products-inner{max-width:var(--maxw);margin:0 auto;}
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);}
.product-col{
  padding:10px;
  display:flex;flex-direction:column;align-items:center;text-align:center;
}
.prod-img{width:260px;height:173px;object-fit:fill;margin-bottom:20px;transition:transform .28s;}
.product-col:hover .prod-img{transform:scale(1.05);}
.prod-title{
  font-family:'Cooper',sans-serif;font-size:30px;font-weight:600;
  color:var(--red);text-align:center;line-height:1.15;
  margin-bottom:20px;min-height:70px;
  display:flex;align-items:center;justify-content:center;
}
.prod-desc{font-family:Roboto,sans-serif;font-size:15px;color:var(--text);text-align:center;line-height:1.85;margin-bottom:20px;flex:1;}
.prod-btn-wrap{text-align:center;margin-top:auto;}
.btn-conheca{
  display:inline-block;background:var(--red);color:#fff;
  font-family:'Cooper',sans-serif;font-size:15px;
  padding:12px 24px;border-radius:3px;border:none;cursor:pointer;
  transition:background .18s,transform .18s;
}
.btn-conheca:hover{background:var(--red-act);transform:translateY(-2px);}

/* ═══ A POPPYS (espelho WP: ilustração + texto | bem-vindo + diferencial + sacola | slider parceiros) ═══ */
.about-wrap{max-width:var(--maxw);margin:0 auto;padding:56px 30px 48px;}
.about-grid{
  display:grid;
  grid-template-columns:minmax(0,0.42fr) minmax(0,0.58fr);
  gap:48px 56px;
  align-items:end;
}
.about-img{display:flex;justify-content:flex-start;align-items:flex-end;}
.about-img img{width:100%;max-width:440px;height:auto;object-fit:contain;}
.about-text h2{font-family:'Cooper',sans-serif;font-size:34px;font-weight:600;color:var(--red);margin-bottom:22px;line-height:1.15;}
.about-text p{font-family:Roboto,sans-serif;font-size:15px;line-height:1.85;color:var(--text);margin-bottom:14px;}
.diff-section{max-width:var(--maxw);margin:0 auto;padding:0 30px 56px;}
.diff-welcome{
  text-align:center;font-family:Roboto,sans-serif;font-size:15px;font-weight:400;color:var(--text);
  margin:0 auto 28px;max-width:var(--maxw);
}
.diff-wrap{padding:0;}
.diff-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,0.88fr);gap:48px 40px;align-items:center;}
.diff-text h2{font-family:'Cooper',sans-serif;font-size:32px;font-weight:600;color:var(--red);margin-bottom:16px;line-height:1.2;}
.diff-text p{font-family:Roboto,sans-serif;font-size:15px;line-height:1.85;color:var(--text);margin-bottom:22px;}
.checklist{
  list-style:none;margin:0;padding:0;
  display:grid;grid-template-columns:repeat(3,1fr);gap:14px 18px;
}
.checklist li{
  display:flex;align-items:center;gap:10px;font-family:Roboto,sans-serif;font-size:14px;color:var(--text);line-height:1.35;
}
.checklist li::before{
  content:'✓';
  display:flex;align-items:center;justify-content:center;
  width:22px;height:22px;min-width:22px;flex-shrink:0;
  border-radius:50%;
  background:var(--red);
  color:#fff;
  font-size:12px;font-weight:700;
  font-family:system-ui,sans-serif;
}
.diff-img{display:flex;justify-content:center;align-items:center;padding:8px 0;}
.diff-img img{width:100%;max-width:420px;height:auto;object-fit:contain;filter:drop-shadow(0 12px 28px rgba(0,0,0,.12));}
/* Parcerias — carrossel */
.partners-wrap{padding:40px 0 60px;text-align:center;background:#fff;}
.partners-wrap h2{font-family:'Cooper',sans-serif;font-size:28px;font-weight:600;color:var(--red);margin-bottom:8px;}
.partners-carousel{max-width:var(--maxw);margin:0 auto;padding:0 24px;position:relative;}
.part-viewport{overflow:hidden;width:100%;min-height:200px;}
.part-track{display:flex;transition:transform .45s ease;will-change:transform;}
.part-slide{
  flex:0 0 auto;min-height:200px;
  display:flex;align-items:center;justify-content:center;
  padding:36px 48px;box-sizing:border-box;
}
.part-slide img{max-height:140px;max-width:min(420px,85%);width:auto;height:auto;object-fit:contain;}
.part-slide--inv{background:#2a2a2a;border-radius:8px;}
.part-slide--inv img{filter:brightness(1.05);}
.part-nav{
  position:absolute;top:50%;transform:translateY(-50%);
  width:40px;height:40px;border-radius:50%;border:none;cursor:pointer;z-index:4;
  background:rgba(0,0,0,.06);color:rgba(0,0,0,.35);font-size:22px;line-height:1;
  display:flex;align-items:center;justify-content:center;transition:background .2s,color .2s;
}
.part-nav:hover{background:rgba(0,0,0,.1);color:rgba(0,0,0,.55);}
.part-nav.prev{left:0;}
.part-nav.next{right:0;}
.part-dots{display:flex;justify-content:center;gap:8px;margin-top:14px;padding-bottom:8px;}
.part-dot{
  width:8px;height:8px;border-radius:50%;border:none;padding:0;cursor:pointer;
  background:#d4d4d4;transition:background .2s;
}
.part-dot.active{background:#111;}

/* ═══ CARDÁPIO ═══ */
.menu-wrap{max-width:var(--maxw);margin:0 auto;padding:50px 30px 70px;}
.menu-cat{font-family:'Cooper',sans-serif;font-size:26px;font-weight:600;color:var(--red);margin-bottom:28px;}
.menu-g4{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-bottom:48px;}
.menu-g3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-bottom:48px;}
.mc{display:flex;flex-direction:column;align-items:center;text-align:center;gap:10px;}
.mc-img{background:var(--cardbg);border-radius:12px;width:100%;aspect-ratio:1;overflow:hidden;display:flex;align-items:center;justify-content:center;transition:transform .25s;}
.mc:hover .mc-img{transform:translateY(-4px);}
.mc-img img{width:78%;height:78%;object-fit:contain;}
.mc-name{font-family:'Cooper',sans-serif;font-size:18px;font-weight:600;color:var(--red);line-height:1.2;}
/* fundo neutro como os outros itens do cardápio (fotos dos shakes cobrem o cartão) */
.shake-n,.shake-s,.shake-f{background:var(--cardbg);}

/* ═══ UNIDADES ═══ */
.units-wrap{max-width:var(--maxw);margin:0 auto;padding:50px 30px 70px;}
.units-title{font-family:Roboto,sans-serif;font-size:24px;font-weight:400;color:var(--text);margin-bottom:30px;}
.map-box{width:100%;min-height:520px;border-radius:4px;overflow:hidden;border:1px solid #ddd;position:relative;background:#e8e8e8;}
#map-units{width:100%;height:520px;}
.units-map-zap{background:#25D366;border:none;border-radius:50%;padding:10px;cursor:pointer;margin:4px;}
.units-map-zap:hover{background:#1E8449;}
.units-map-insta{background:#d41e86;border:none;border-radius:50%;padding:10px;cursor:pointer;margin:4px;}
.units-map-insta:hover{background:#a73aa7;}
.units-map-dir{background:#2196F3;border:none;border-radius:50%;padding:10px;cursor:pointer;margin:4px;}
.units-map-dir:hover{background:#0B7EE6;}
.mapboxgl-popup-content{padding:12px 14px;border-radius:8px;}
a.units-map-zap,a.units-map-insta,a.units-map-dir{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:50%;text-decoration:none;}
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

/* ═══ FRANCHISE ═══ */
.fh-flags-bar{display:flex;justify-content:center;gap:6px;padding:8px 0;background:#fff;border-bottom:1px solid #eee;}
.fh-flags-bar span{font-size:22px;}
.fh-hero{position:relative;background:var(--red);min-height:560px;display:grid;grid-template-columns:1fr 480px;overflow:hidden;}
/* Hero visual — mesma Capa.png do site (seja-franqueado / Elementor overlay) */
.fh-hero-media{position:absolute;inset:0;z-index:0;background:var(--red) url('assets/img/franchise/capa.png') center right/cover no-repeat;pointer-events:none;}
.fh-left{position:relative;z-index:2;padding:60px 40px 60px 60px;display:flex;flex-direction:column;justify-content:center;}
.fh-left h1{font-family:'Cooper',sans-serif;font-size:40px;font-weight:800;color:#fff;line-height:1.15;margin-bottom:14px;text-shadow:0 0 10px rgba(0,0,0,.3);}
.fh-sub{font-size:16px;color:rgba(255,255,255,.92);line-height:1.65;margin-bottom:26px;font-family:'Cooper',sans-serif;text-shadow:0 0 10px rgba(0,0,0,.25);}
.fh-bullets{list-style:none;display:flex;flex-direction:column;gap:11px;margin-bottom:32px;}
.fh-bullets li{font-family:'Poppins',sans-serif;font-size:17px;font-weight:500;color:#fff;display:flex;align-items:center;gap:10px;text-shadow:0 0 10px rgba(0,0,0,.3);}
.fh-bullets li::before{content:'➜';color:var(--yellow);}
.fh-cta-btn{display:inline-block;background:#F72525;color:#fff;border:none;font-family:'COCON-BOLD',sans-serif;font-size:13px;letter-spacing:.3px;padding:13px 22px;border-radius:8px;cursor:pointer;transition:transform .2s,box-shadow .2s;width:fit-content;box-shadow:0 0 10px rgba(0,0,0,.5);text-align:center;}
.fh-cta-btn:hover{transform:scale(.97);box-shadow:0 4px 14px rgba(0,0,0,.35);}
.fh-right{position:relative;z-index:2;padding:30px 40px 30px 10px;display:flex;align-items:center;justify-content:center;}
.form-card{background:rgba(255,255,255,.97);border-radius:6px;padding:28px 26px;width:100%;max-width:400px;box-shadow:0 8px 36px rgba(0,0,0,.28);}
.fc-top{font-size:13px;color:#bbb;text-align:center;margin-bottom:6px;}
.fc-h{font-family:'Cooper',sans-serif;font-size:18px;font-weight:600;color:var(--red);text-align:center;line-height:1.3;margin-bottom:20px;}
.fc-f{width:100%;border:1px solid #ddd;border-radius:3px;padding:11px 13px;font-size:14px;font-family:Roboto,sans-serif;color:#444;background:#fff;margin-bottom:9px;outline:none;transition:border-color .18s;}
.fc-f:focus{border-color:var(--red);}
.fc-f::placeholder{color:#c0c0c0;}
.fc-row{display:flex;gap:8px;}
.fc-row .fc-f{flex:1;}
.fc-row select.fc-f{width:88px;flex:none;}
.fc-btn{width:100%;margin-top:4px;background:#7DC241;color:#fff;font-family:'COCON-BOLD',sans-serif;font-size:13px;letter-spacing:.5px;padding:14px;border:none;border-radius:3px;cursor:pointer;transition:background .2s;}
.fc-btn:hover{background:#6aad36;}
.fc-legal{font-size:9.5px;color:#aaa;line-height:1.5;margin-top:10px;text-align:justify;}
.fc-hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden;opacity:0;pointer-events:none;}
#franchise-feedback{position:fixed;bottom:78px;left:50%;transform:translateX(-50%);z-index:9997;max-width:min(420px,calc(100% - 32px));padding:12px 18px;border-radius:10px;font-family:'COCON-BOLD',sans-serif;font-size:13px;box-shadow:0 8px 28px rgba(0,0,0,.25);display:none;animation:toastIn .4s ease both;}
#franchise-feedback.ok{background:#1b5e20;color:#fff;}
#franchise-feedback.err{background:#6a1b1b;color:#fff;}

/* ═══ FOOTER ═══ */
#site-footer{background:var(--red-dark);height:50px;display:flex;align-items:center;justify-content:center;}
#site-footer p{font-family:'COCON-BOLD',sans-serif;font-size:11px;color:rgba(255,255,255,.4);letter-spacing:1.5px;}

/* ═══ LANG TOAST ═══ */
#lang-toast{
  position:fixed;bottom:22px;left:50%;transform:translateX(-50%);
  background:rgba(15,15,15,.96);color:#fff;
  padding:9px 18px;border-radius:40px;
  font-family:'COCON-BOLD',sans-serif;font-size:12px;letter-spacing:.4px;
  display:flex;align-items:center;gap:9px;
  border:1px solid rgba(255,0,0,.5);z-index:9998;
  box-shadow:0 6px 28px rgba(0,0,0,.4);
  animation:toastIn .4s ease both;
  transition:opacity .45s ease,transform .45s ease,visibility .45s;
  white-space:nowrap;
}
#lang-toast.hide{
  opacity:0;visibility:hidden;pointer-events:none;
  transform:translateX(-50%) translateY(12px);
}
#lang-toast button{background:rgba(255,255,255,.15);border:none;color:#fff;width:19px;height:19px;border-radius:50%;cursor:pointer;font-size:11px;display:flex;align-items:center;justify-content:center;}
@keyframes toastIn{from{opacity:0;transform:translateX(-50%) translateY(14px);}to{opacity:1;transform:translateX(-50%) translateY(0);}}

/* ═══ REVEAL ═══ */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .55s ease,transform .55s ease;}
.reveal.in{opacity:1;transform:none;}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1100px){.hdr-wordmark{left:50%;transform:translateX(-50%);}}
@media(max-width:900px){
  .products-grid{grid-template-columns:repeat(2,1fr);}
  .menu-g4{grid-template-columns:repeat(2,1fr);}
  .about-grid,.diff-grid{grid-template-columns:1fr;gap:32px;align-items:start;}
  .checklist{grid-template-columns:1fr;}
  .part-slide{padding:28px 40px;}
  .fh-hero{grid-template-columns:1fr;}
  .fh-right{padding:0 20px 40px;}
  .swiper-outer{height:56vw;}
  .swiper-slide{height:56vw;}
  .hdr-icon{display:none;}
}
@media(max-width:600px){
  .products-grid{grid-template-columns:1fr;}
  .menu-g4,.menu-g3{grid-template-columns:1fr;}
  .hdr-top{height:110px;}
  .hdr-icon{display:none;}
  .hdr-wordmark{left:50%;transform:translateX(-50%);width:180px;top:30px;}
  .swiper-outer{height:260px;}
  .swiper-slide{height:260px;}
  .fh-left{padding:40px 24px;}
  .fh-left h1{font-size:28px;}
  .about-wrap,.diff-wrap,.menu-wrap,.units-wrap{padding:32px 16px 48px;}
  .prod-img{width:100%;height:auto;}
}
