/* =========================================================
   IMPORTADOS LASTORIA — Design tokens
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Cormorant+Garamond:ital,wght@0,500;1,500;0,600&family=Poppins:wght@400;500;600;700&display=swap');

:root{
  /* Color */
  --red-deep:     #7a0f14;
  --red-darker:   #4a0a0d;
  --red-bright:   #b81d22;
  --red-line:     rgba(255,255,255,0.14);
  --gold:         #cf9f3f;
  --gold-light:   #f1d68c;
  --gold-soft:    #e8c468;
  --cream:        #faf4e6;
  --cream-2:      #f2e8d2;
  --cream-line:   #e4d5ae;
  --ink:          #2b1810;
  --ink-soft:     #5b463a;
  --white:        #ffffff;

  /* Type */
  --font-display: 'Cinzel', serif;
  --font-accent:  'Cormorant Garamond', serif;
  --font-body:    'Poppins', sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 40px rgba(74,10,13,0.16);
  --shadow-card: 0 10px 30px rgba(43,24,16,0.10);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 90px; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }

.container{ max-width: var(--container); margin:0 auto; padding: 0 28px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible{ outline: 3px solid var(--gold); outline-offset: 3px; }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--red-bright);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after{ content:""; width:26px; height:1px; background: var(--gold); display:inline-block; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--red-deep);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.section-title{
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.section-lede{
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 620px;
  line-height: 1.7;
}
.section-head{ margin-bottom: 46px; }
.section-head.center{ text-align:center; }
.section-head.center .section-lede{ margin-inline:auto; }

section{ padding: 96px 0; position:relative; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family: var(--font-body); font-weight:600; font-size: 0.95rem;
  padding: 15px 30px; border-radius: 100px; border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: var(--red-darker);
  box-shadow: 0 10px 26px rgba(207,159,63,0.38);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(207,159,63,0.48); }
.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover{ background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-dark-outline{
  background: transparent;
  border-color: var(--red-deep);
  color: var(--red-deep);
}
.btn-dark-outline:hover{ background: var(--red-deep); color: var(--white); }
.btn-block{ width:100%; }
.btn-sm{ padding: 10px 20px; font-size: 0.82rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 200;
  padding: 18px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:20px; }
.site-header.scrolled{
  background: var(--red-deep);
  padding: 10px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ width:52px; height:52px; object-fit:contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35)); transition: width .35s ease, height .35s ease; }
.site-header.scrolled .brand img{ width:42px; height:42px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-text strong{ font-family: var(--font-display); font-size: 1.02rem; letter-spacing:0.06em; color: var(--white); }
.brand-text span{ font-family: var(--font-body); font-size: 0.62rem; letter-spacing:0.18em; color: var(--gold-light); text-transform:uppercase; margin-top:2px; }

.nav-desktop{ display:flex; align-items:center; gap:6px; }
.nav-desktop > li{ position:relative; }
.nav-link{
  display:flex; align-items:center; gap:6px;
  padding: 10px 16px; border-radius: 100px;
  font-family: var(--font-body); font-weight:500; font-size: 0.9rem;
  color: rgba(255,255,255,0.92);
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover, .nav-link.active{ background: rgba(255,255,255,0.14); color: var(--white); }
.nav-link .chev{ width:9px; height:9px; border-right:2px solid currentColor; border-bottom:2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s ease; }
.has-dropdown:hover .chev{ transform: rotate(225deg) translateY(2px); }

.dropdown{
  position:absolute; top: calc(100% + 10px); left:50%; transform: translateX(-50%) translateY(6px);
  min-width: 260px; background: var(--cream);
  border-radius: var(--radius-md); box-shadow: var(--shadow-soft);
  padding: 10px; opacity:0; visibility:hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s;
  border: 1px solid var(--cream-line);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown{ opacity:1; visibility:visible; transform: translateX(-50%) translateY(0); }
.dropdown li a{
  display:flex; align-items:center; gap:12px;
  padding: 10px 12px; border-radius: 10px; color: var(--ink);
  font-size: 0.88rem; font-weight:500;
  transition: background .2s ease;
}
.dropdown li a:hover{ background: var(--cream-2); }
.dropdown .dot{ width:8px; height:8px; border-radius:50%; background: var(--gold); flex-shrink:0; }

.header-cta{ display:flex; align-items:center; gap:14px; }
.header-cta .btn{ padding: 11px 22px; font-size: 0.84rem; }

.burger{
  display:none; width:44px; height:44px; border-radius:50%; border:none;
  background: rgba(255,255,255,0.14); position:relative;
}
.burger span, .burger::before, .burger::after{
  content:""; position:absolute; left:12px; right:12px; height:2px; background: var(--white); border-radius:2px;
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.burger::before{ top:16px; }
.burger span{ top:21px; }
.burger::after{ top:26px; }
.burger.open::before{ top:21px; transform: rotate(45deg); }
.burger.open::after{ top:21px; transform: rotate(-45deg); }
.burger.open span{ opacity:0; }

.mobile-nav{
  position:fixed; inset:0; z-index:199; background: var(--red-deep);
  display:flex; flex-direction:column; padding: 110px 32px 40px;
  transform: translateY(-100%); transition: transform .4s cubic-bezier(.7,0,.2,1);
}
.mobile-nav.open{ transform: translateY(0); }
.mobile-nav a{
  display:block;
  font-family: var(--font-display); color: var(--white); font-size:1.4rem;
  padding: 16px 0; border-bottom: 1px solid var(--red-line); letter-spacing: 0.03em;
}
.mobile-nav .mobile-sub{ padding-left: 18px; }
.mobile-nav .mobile-sub a{ display:block; font-family: var(--font-body); font-size: 0.95rem; border-bottom:none; padding: 8px 0; color: var(--gold-light); }
.mobile-nav .btn{ margin-top: 26px; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 100vh;
  display:flex; align-items:center;
  background: radial-gradient(120% 100% at 15% 0%, #921419 0%, var(--red-deep) 45%, var(--red-darker) 100%);
  overflow:hidden;
  padding-top: 120px;
}
.hero canvas{ position:absolute; inset:0; width:100%; height:100%; pointer-events:none; }
.hero-inner{ position:relative; z-index:2; display:grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items:center; }
.hero-inner-centered{ grid-template-columns: 1fr; justify-items:center; text-align:center; max-width:760px; margin:0 auto; }
.hero-inner-centered .hero-sub{ margin-left:auto; margin-right:auto; }
.hero-inner-centered .hero-actions{ justify-content:center; }
.hero-copy{ display:flex; flex-direction:column; align-items:center; }
.hero-copy .eyebrow{ color: var(--gold-light); margin-bottom: 22px; }
.hero-copy .eyebrow::before, .hero-copy .eyebrow::after{ background: var(--gold-light); }
.hero-title{
  color: var(--white);
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
.hero-title em{
  font-style:normal;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  display:block;
  margin-top: 0.15em;
}
.hero-sub{
  font-family: var(--font-accent); font-style: italic;
  color: rgba(255,255,255,0.86); font-size: 1.25rem; max-width: 480px; margin: 32px 0 42px;
  line-height:1.7;
}
.hero-actions{ display:flex; gap:22px; flex-wrap:wrap; }
.hero-trust{ display:flex; gap:44px; margin-top:56px; flex-wrap:wrap; }
.hero-trust div{ display:flex; flex-direction:column; gap:6px; }
.hero-trust strong{ font-family: var(--font-display); color: var(--gold-light); font-size:1.5rem; }
.hero-trust span{ color: rgba(255,255,255,0.7); font-size:0.78rem; letter-spacing:0.04em; }

.hero-visual{ position:relative; display:flex; justify-content:center; }
.ticket-card{
  position:relative; width: 100%; max-width: 380px;
  background: linear-gradient(160deg, #fff7e0, var(--gold-light) 120%);
  border-radius: 24px; padding: 34px 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  transform: rotate(3deg);
  border: 2px dashed rgba(122,15,20,0.35);
}
.ticket-card::before, .ticket-card::after{
  content:""; position:absolute; width:34px; height:34px; background: var(--red-deep);
  border-radius:50%; top:50%; transform: translateY(-50%);
}
.ticket-card::before{ left:-17px; }
.ticket-card::after{ right:-17px; }
.ticket-star{ color: var(--red-bright); font-size:1.6rem; text-align:center; display:block; margin-bottom:10px; }
.ticket-card h3{ text-align:center; font-size:1.5rem; color: var(--red-deep); margin-bottom:6px; }
.ticket-card p{ text-align:center; font-family: var(--font-body); font-size:0.78rem; letter-spacing:0.14em; text-transform:uppercase; color: var(--ink-soft); margin:0 0 20px; }
.ticket-divider{ border-top: 2px dotted rgba(122,15,20,0.3); margin: 18px 0; }
.ticket-row{ display:flex; justify-content:space-between; font-size:0.9rem; color: var(--ink); padding:6px 0; }
.ticket-row strong{ color: var(--red-deep); }
.hero-badge{
  position:absolute; bottom:-22px; left:-22px;
  background: var(--white); border-radius:16px; padding:14px 18px;
  box-shadow: var(--shadow-card); display:flex; align-items:center; gap:12px;
  font-family: var(--font-display); font-size:0.85rem; color: var(--red-deep);
}
.hero-badge .pct{ font-size:1.6rem; color: var(--red-bright); }

.scroll-cue{
  position:absolute; bottom:26px; left:50%; transform: translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color: rgba(255,255,255,0.6); font-size:0.68rem; letter-spacing:0.2em; text-transform:uppercase;
  z-index:2;
}
.scroll-cue .line{ width:1px; height:34px; background: linear-gradient(var(--gold-light), transparent); animation: scrollpulse 2s ease-in-out infinite; }
@keyframes scrollpulse{ 0%,100%{ transform: scaleY(0.6); opacity:.5; } 50%{ transform: scaleY(1); opacity:1; } }

/* =========================================================
   MARQUEE STRIP
   ========================================================= */
.strip{
  background: var(--red-darker); padding: 18px 0; overflow:hidden;
  border-top: 1px solid var(--red-line); border-bottom: 1px solid var(--red-line);
}
.strip-track{ display:flex; gap:60px; width:max-content; animation: marquee 26s linear infinite; }
.strip-track span{
  font-family: var(--font-display); font-size:0.82rem; letter-spacing:0.22em; text-transform:uppercase;
  color: var(--gold-light); display:flex; align-items:center; gap:16px; opacity:0.9;
}
.strip-track span::after{ content:"✦"; color: var(--gold); }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* =========================================================
   SOBRE
   ========================================================= */
.sobre{ background: var(--cream); }
.sobre-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap:64px; align-items:center; }
.sobre-visual{ position:relative; }
.sobre-frame{
  border-radius: var(--radius-lg); overflow:hidden; position:relative;
  background: linear-gradient(160deg, var(--red-deep), var(--red-darker));
  aspect-ratio: 4/5; display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-soft);
}
.sobre-frame img{ width:64%; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4)); animation: floaty 5s ease-in-out infinite; }
@keyframes floaty{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
.sobre-frame::before{
  content:""; position:absolute; inset:14px; border: 1.5px solid rgba(241,214,140,0.35); border-radius: 16px; pointer-events:none;
}
.sobre-year{
  position:absolute; bottom:-22px; right:-18px; background: var(--gold);
  color: var(--red-darker); font-family: var(--font-display); text-align:center;
  border-radius:50%; width:110px; height:110px; display:flex; flex-direction:column; align-items:center; justify-content:center;
  box-shadow: var(--shadow-card); transform: rotate(-8deg);
  font-size:0.72rem; letter-spacing:0.05em;
}
.sobre-year strong{ font-size:1.5rem; display:block; }
.sobre-copy p{ color: var(--ink-soft); line-height:1.85; font-size:1.04rem; margin-bottom:20px; }
.sobre-copy blockquote{
  margin: 28px 0; padding: 22px 26px; border-left: 3px solid var(--gold);
  font-family: var(--font-accent); font-style:italic; font-size:1.3rem; color: var(--red-deep); background: var(--cream-2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.pillars{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px; margin-top:32px; }
.pillar{ background: var(--white); border: 1px solid var(--cream-line); border-radius: var(--radius-md); padding: 20px 16px; text-align:center; }
.pillar .icon{ font-size:1.6rem; margin-bottom:8px; display:block; }
.pillar strong{ display:block; font-family: var(--font-display); font-size:0.85rem; color: var(--red-deep); margin-bottom:4px; }
.pillar span{ font-size:0.78rem; color: var(--ink-soft); }

/* =========================================================
   CATÁLOGO
   ========================================================= */
.catalogo{ background: var(--cream-2); }
.product-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:26px; }
.product-card{
  background: var(--white); border-radius: var(--radius-lg); overflow:hidden;
  box-shadow: var(--shadow-card); border:1px solid var(--cream-line);
  display:flex; flex-direction:column; transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.product-media{
  position:relative; aspect-ratio: 1/1; overflow:hidden; cursor:pointer;
  background:#0e5fa8;
}
.product-media img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.product-card:hover .product-media img{ transform: scale(1.06); }
.product-badge{
  position:absolute; top:14px; left:14px; background: rgba(255,255,255,0.92);
  color: var(--red-deep); font-family: var(--font-display); font-size:0.62rem; letter-spacing:0.1em;
  padding: 6px 12px; border-radius:100px; text-transform:uppercase;
}
/* foil peel signature */
.foil-peel{
  position:absolute; top:0; right:0; width:78px; height:78px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform-origin: top right;
  transition: transform .45s cubic-bezier(.6,.1,.3,1);
  display:flex; align-items:flex-start; justify-content:flex-end;
  padding: 8px;
  box-shadow: -6px 6px 14px rgba(0,0,0,0.18);
}
.foil-peel span{ font-family: var(--font-display); font-size:0.62rem; color: var(--red-darker); transform: rotate(45deg) translate(-6px,10px); white-space:nowrap; }
.product-card:hover .foil-peel{ transform: rotate(-18deg) translate(6px,-6px); }
.product-body{ padding: 22px 22px 24px; display:flex; flex-direction:column; gap:12px; flex:1; }
.product-body h3{ font-size:1.12rem; margin:0; cursor:pointer; line-height:1.3; min-height:4.2em; display:flex; align-items:flex-start; }
.product-body h3:hover{ color: var(--red-bright); }
.product-desc{ font-size:0.86rem; color: var(--ink-soft); line-height:1.6; flex:1; }
.price-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
.price-box{ border: 1px solid var(--cream-line); border-radius: var(--radius-sm); padding:10px 8px; text-align:center; background: var(--cream); }
.price-box .g{ font-size:0.7rem; color: var(--ink-soft); letter-spacing:0.05em; }
.price-box .old{ font-size:0.76rem; color:#a6907a; text-decoration: line-through; display:block; margin-top:2px; }
.price-box .new{ font-family: var(--font-display); font-size:1.18rem; color: var(--red-bright); display:block; }
.product-body .btn{ margin-top:4px; }
.link-details{
  align-self:flex-start; font-size:0.78rem; font-weight:600; color: var(--red-deep);
  border-bottom: 1px solid var(--gold); padding-bottom:2px;
}

/* Add-to-cart row on product cards */
.add-cart-row{ display:flex; flex-direction:column; gap:10px; }
.variant-select{
  width:100%; padding:11px 14px; border-radius:100px; border:1px solid var(--cream-line);
  background: var(--cream); color: var(--ink); font-family: var(--font-body); font-size:0.86rem; font-weight:500;
}
.price-grid-single{ grid-template-columns: 1fr; }
.price-box.selected{ border-color: var(--gold); background: var(--cream-2); }
.modal-variant-box{ cursor:pointer; transition: border-color .2s ease, background .2s ease; }

/* Mimo product styling */
.product-card.is-mimo{ border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold-soft) inset, var(--shadow-card); }
.foil-peel-mimo{ background: linear-gradient(135deg, var(--red-bright), var(--red-deep)); }
.foil-peel-mimo span{ color: var(--gold-light); }
.modal-mimo-note{
  font-size:0.82rem; color: var(--red-deep); background: var(--cream-2); border: 1px dashed var(--gold);
  border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom:16px; line-height:1.55;
}

/* Modal image thumbnails */
.modal-thumbs{ display:flex; gap:8px; padding:10px; background: rgba(0,0,0,0.15); flex-shrink:0; }
.modal-thumbs img{
  width:52px; height:52px; object-fit:cover; border-radius:8px; cursor:pointer; opacity:0.6;
  border: 2px solid transparent; transition: opacity .2s ease, border-color .2s ease; flex-shrink:0;
}
.modal-thumbs img:hover{ opacity:0.85; }
.modal-thumbs img.active{ opacity:1; border-color: var(--gold-light); }

/* Testimonial attached photos */
.testi-photos{ display:flex; gap:8px; flex-wrap:wrap; }
.testi-photos img{ width:64px; height:64px; object-fit:cover; border-radius:10px; border:1px solid var(--cream-line); }

/* Modal */
.modal-overlay{
  position:fixed; inset:0; background: rgba(43,24,16,0.68); z-index:400;
  display:flex; align-items:center; justify-content:center; padding: 24px;
  opacity:0; visibility:hidden; transition: opacity .3s ease, visibility .3s;
  backdrop-filter: blur(2px);
}
.modal-overlay.open{ opacity:1; visibility:visible; }
.modal-card{
  background: var(--cream); max-width: 820px; width:100%; border-radius: var(--radius-lg);
  overflow:hidden; display:grid; grid-template-columns: 0.9fr 1.1fr; max-height: 88vh;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  transform: translateY(24px) scale(0.98); transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.modal-overlay.open .modal-card{ transform: translateY(0) scale(1); }
.modal-media{ background: var(--red-deep); position:relative; display:flex; flex-direction:column; overflow:hidden; }
.modal-media > img{ width:100%; height:100%; flex:1; min-height:0; object-fit:contain; }
.modal-body{ padding: 34px 32px; overflow-y:auto; }
.modal-close{
  position:absolute; top:16px; right:16px; width:38px; height:38px; border-radius:50%;
  background: rgba(255,255,255,0.92); border:none; font-size:1.1rem; color: var(--red-deep); z-index:2;
}
.modal-body .product-badge{ position:static; display:inline-block; margin-bottom:12px; background: var(--cream-2); }
.modal-body h3{ font-size:1.6rem; margin-bottom:10px; }
.modal-body p.modal-desc{ color: var(--ink-soft); line-height:1.75; margin-bottom:18px; }
.modal-note{ font-size:0.76rem; color: var(--ink-soft); background: var(--cream-2); border-radius: var(--radius-sm); padding:10px 14px; margin-bottom:20px; }
.modal-body .price-grid{ margin-bottom:20px; }

/* =========================================================
   PARCEIROS
   ========================================================= */
.parceiros{ background: var(--red-darker); color: var(--white); }
.parceiros .section-title{ color: var(--white); }
.parceiros .section-lede{ color: rgba(255,255,255,0.72); }
.parceiros .eyebrow{ color: var(--gold-light); }
.parceiros .eyebrow::before, .parceiros .eyebrow::after{ background: var(--gold-light); }
.partner-grid{ display:grid; grid-template-columns: repeat(5,1fr); gap:18px; }
.partner-card{
  position:relative; border-radius: var(--radius-md); overflow:hidden; aspect-ratio: 9/16;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.partner-card img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.partner-card:hover img{ transform: scale(1.08); }
.partner-overlay{
  position:absolute; inset:0; display:flex; align-items:flex-end; padding:16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.68), transparent 55%);
  opacity:0; transition: opacity .3s ease;
}
.partner-card:hover .partner-overlay{ opacity:1; }
.partner-overlay span{ font-family: var(--font-body); font-weight:600; font-size:0.82rem; display:flex; align-items:center; gap:8px; }

/* =========================================================
   DEPOIMENTOS
   ========================================================= */
.depoimentos{ background: var(--cream); }
.testi-track{ display:flex; gap:24px; overflow-x:auto; scroll-snap-type: x mandatory; padding-bottom: 12px; margin: 0 -4px; }
.testi-track::-webkit-scrollbar{ height:6px; }
.testi-track::-webkit-scrollbar-thumb{ background: var(--gold-soft); border-radius:10px; }
.testi-card{
  scroll-snap-align:start; flex: 0 0 340px; background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--cream-line); padding: 28px 26px; box-shadow: var(--shadow-card);
  display:flex; flex-direction:column; gap:14px;
}
.testi-stars{ color: var(--gold); letter-spacing:2px; font-size:0.95rem; }
.testi-card p{ font-family: var(--font-accent); font-style:italic; color: var(--ink); font-size:1.08rem; line-height:1.6; flex:1; }
.testi-person{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.testi-avatar{
  width:42px; height:42px; border-radius:50%; background: linear-gradient(160deg, var(--gold-light), var(--gold));
  display:flex; align-items:center; justify-content:center; font-family: var(--font-display); color: var(--red-darker); font-size:0.95rem;
}
.testi-person strong{ font-size:0.88rem; display:block; }
.testi-person span{ font-size:0.74rem; color: var(--ink-soft); }
.testi-note{ text-align:center; font-size:0.8rem; color: var(--ink-soft); margin-top:26px; }

/* =========================================================
   CONTATO
   ========================================================= */
.contato{
  background: radial-gradient(120% 100% at 85% 100%, #921419 0%, var(--red-deep) 45%, var(--red-darker) 100%);
  color: var(--white);
}
.contato .section-title{ color: var(--white); }
.contato .section-lede{ color: rgba(255,255,255,0.75); }
.contato .eyebrow{ color: var(--gold-light); }
.contato .eyebrow::before, .contato .eyebrow::after{ background: var(--gold-light); }
.contact-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; margin-bottom: 50px; }
.contact-card{
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg); padding: 30px 26px; text-align:center;
  transition: transform .3s ease, background .3s ease;
}
.contact-card:hover{ transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.contact-icon{
  width:58px; height:58px; margin: 0 auto 16px; border-radius:50%;
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  display:flex; align-items:center; justify-content:center; font-size:1.5rem;
}
.contact-card h4{ color: var(--white); font-size:1.05rem; margin-bottom:6px; }
.contact-card p{ color: rgba(255,255,255,0.68); font-size:0.86rem; margin-bottom:16px; }
.map-note{
  display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap;
  text-align:center; color: rgba(255,255,255,0.65); font-size:0.85rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--red-darker); color: rgba(255,255,255,0.75); padding: 50px 0 26px; }
.footer-top{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; padding-bottom: 34px; border-bottom: 1px solid var(--red-line); margin-bottom: 24px; }
.footer-brand{ display:flex; align-items:center; gap:14px; max-width: 340px; }
.footer-brand img{ width:50px; height:50px; }
.footer-brand strong{ font-family: var(--font-display); color: var(--white); font-size:1.05rem; letter-spacing:0.05em; display:block; }
.footer-brand p{ font-size:0.82rem; margin-top:6px; line-height:1.5; }
.footer-cols{ display:flex; gap:60px; flex-wrap:wrap; }
.footer-col h5{ font-family: var(--font-display); color: var(--gold-light); font-size:0.78rem; letter-spacing:0.12em; text-transform:uppercase; margin-bottom:14px; }
.footer-col a, .footer-col span{ display:block; font-size:0.86rem; margin-bottom:10px; color: rgba(255,255,255,0.72); }
.footer-col a:hover{ color: var(--gold-light); }
.footer-social{ display:flex; gap:10px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,0.25); display:flex; align-items:center; justify-content:center; }
.footer-social a:hover{ background: var(--gold); border-color: var(--gold); color: var(--red-darker); }
.footer-bottom{ display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; font-size:0.76rem; }
.footer-credit{ text-align:center; font-size:0.72rem; color: rgba(255,255,255,0.45); margin-top:18px; }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.wa-float{
  position:fixed; bottom:26px; right:26px; z-index:300;
  width:62px; height:62px; border-radius:50%;
  background: #25D366; display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 28px rgba(37,211,102,0.5);
  animation: wafloat 2.6s ease-in-out infinite;
}
.wa-float svg{ width:30px; height:30px; }
.wa-float::before{
  content:""; position:absolute; inset:-6px; border-radius:50%; border:2px solid #25D366; opacity:0.6;
  animation: waring 2.6s ease-out infinite;
}
@keyframes wafloat{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-6px);} }
@keyframes waring{ 0%{ transform: scale(0.9); opacity:0.6;} 100%{ transform: scale(1.5); opacity:0;} }

/* =========================================================
   CARRINHO
   ========================================================= */
.cart-fab{
  position:relative; flex-shrink:0;
  width:44px; height:44px; border-radius:50%; border:none;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 6px 16px rgba(207,159,63,0.4);
}
.cart-fab svg{ width:22px; height:22px; }
.cart-fab.pulse{ animation: cartpulse .5s ease; }
@keyframes cartpulse{ 0%{ transform: scale(1);} 40%{ transform: scale(1.18);} 100%{ transform: scale(1);} }
.cart-fab-count{
  position:absolute; top:-2px; right:-2px; min-width:22px; height:22px; padding:0 5px;
  border-radius:50%; background: var(--red-bright); color: var(--white);
  font-family: var(--font-body); font-size:0.72rem; font-weight:700;
  display:none; align-items:center; justify-content:center; border:2px solid var(--cream);
}

.cart-overlay{
  position:fixed; inset:0; background: rgba(43,24,16,0.6); z-index:398;
  opacity:0; visibility:hidden; transition: opacity .3s ease, visibility .3s;
}
.cart-overlay.open{ opacity:1; visibility:visible; }

.cart-drawer{
  position:fixed; top:0; right:0; bottom:0; width:min(420px, 100%); background: var(--cream);
  z-index:399; display:flex; flex-direction:column;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.7,0,.2,1);
  box-shadow: -20px 0 50px rgba(0,0,0,0.3);
}
.cart-drawer.open{ transform: translateX(0); }
.cart-drawer-head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 24px; background: var(--red-deep); color: var(--white);
}
.cart-drawer-head h3{ color: var(--white); margin:0; font-size:1.1rem; display:flex; align-items:center; gap:10px; }
.cart-drawer-head h3 span{
  background: var(--gold); color: var(--red-darker); font-family: var(--font-body); font-size:0.75rem;
  border-radius:100px; padding:2px 9px;
}
.cart-drawer-head .modal-close{ position:static; background: rgba(255,255,255,0.15); color:var(--white); }
.cart-drawer-body{ flex:1; overflow-y:auto; padding: 20px 24px; }
.cart-empty{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:12px; color: var(--ink-soft); padding: 40px 10px; }
.cart-empty span{ font-size:2.4rem; }
.cart-empty p{ font-size:0.88rem; line-height:1.6; margin:0; }
.cart-items{ display:flex; flex-direction:column; gap:14px; }
.cart-line{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  background: var(--white); border:1px solid var(--cream-line); border-radius: var(--radius-md); padding:14px 16px;
}
.cart-line.is-mimo{ border-color: var(--gold); background: var(--cream-2); }
.cart-line-info{ display:flex; flex-direction:column; gap:3px; }
.cart-line-info strong{ font-size:0.9rem; color: var(--ink); }
.cart-line-info span{ font-size:0.76rem; color: var(--ink-soft); }
.cart-line-actions{ display:flex; align-items:center; gap:8px; flex-shrink:0; }
.qty-btn{
  width:26px; height:26px; border-radius:50%; border:1px solid var(--cream-line); background: var(--cream);
  color: var(--red-deep); font-weight:700; font-size:0.95rem; display:flex; align-items:center; justify-content:center;
}
.qty-value{ min-width:16px; text-align:center; font-weight:600; font-size:0.88rem; }
.cart-remove{
  width:26px; height:26px; border-radius:50%; border:none; background:transparent; color: var(--ink-soft);
  font-size:0.9rem; margin-left:4px;
}
.cart-remove:hover{ color: var(--red-bright); }
.cart-mimo-banner{
  margin: 0 24px 14px; padding: 12px 14px; background: var(--cream-2); border: 1px dashed var(--gold);
  border-radius: var(--radius-sm); font-size:0.82rem; color: var(--red-deep); line-height:1.5;
  display:flex; align-items:flex-start; gap:8px;
}
.cart-drawer-foot{ padding: 18px 24px 26px; border-top:1px solid var(--cream-line); background: var(--white); }
.cart-total-row{ display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
.cart-total-row span{ font-size:0.86rem; color: var(--ink-soft); }
.cart-total-row strong{ font-family: var(--font-display); font-size:1.4rem; color: var(--red-deep); }
.cart-drawer-foot .btn[disabled]{ opacity:0.5; pointer-events:none; }
.cart-note{ font-size:0.72rem; color: var(--ink-soft); text-align:center; margin: 10px 0 0; line-height:1.5; }

@media (max-width: 620px){
  .cart-fab{ width:38px; height:38px; }
  .cart-fab svg{ width:19px; height:19px; }
  .wa-float{ bottom:20px; right:20px; }
}

/* Reveal on scroll */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px){
  .product-grid{ grid-template-columns: repeat(2,1fr); }
  .partner-grid{ grid-template-columns: repeat(3,1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; max-width:340px; margin: 0 auto 20px; }
  .sobre-grid{ grid-template-columns: 1fr; }
  .sobre-visual{ max-width:340px; margin:0 auto; }
}
@media (max-width: 860px){
  .nav-desktop, .header-cta .btn-outline{ display:none; }
  .burger{ display:block; }
  .partner-grid{ grid-template-columns: repeat(2,1fr); }
  .modal-card{ grid-template-columns: 1fr; }
  .modal-media{ aspect-ratio: 16/10; }
  section{ padding: 70px 0; }
}
@media (max-width: 620px){
  .product-grid{ grid-template-columns: 1fr; }
  .partner-grid{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-top{ flex-direction:column; }
  .footer-cols{ gap:30px; }
  .pillars{ grid-template-columns: 1fr; }
  .hero-title{ font-size: 2.4rem; }
}
