:root {
  --primary: #D10F2C;
  --primary-dark: #7A0A1C;
  --primary-hover: #A50D24;
  --primary-light: #FFEDEE;
  --yellow: #FFCB05;
  --yellow-dark: #E5A800;
  --yellow-light: #FFF5CC;
  --green: #25D366;
  --black: #0F0F0F;
  --bg-body: #FFF9F0;
  --bg-surface: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-gray: #5F6368;
  --text-muted: #9CA3AF;
  --border-color: #E5E7EB;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.18);
  --shadow-hard: 6px 6px 0 var(--black);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --font-display: "Bebas Neue", sans-serif;
  --font-impact: "Archivo Black", "Bebas Neue", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-dark);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.app-container {
  overflow-x: hidden;
}

.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.bg-light {
  background: var(--bg-surface);
}

.bg-dark {
  background: var(--black);
  color: #fff;
}

.bg-dark p,
.bg-dark .subtitle {
  color: #E5E7EB;
}

.text-center {
  text-align: center;
}

.text-yellow {
  color: var(--yellow);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.4rem, 8vw, 6rem);
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.9rem, 5.5vw, 4.2rem);
  overflow-wrap: break-word;
}

h3 {
  font-size: 2rem;
}

p {
  color: var(--text-gray);
  font-size: 1.05rem;
}

.subtitle {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: 12px;
}

.bg-dark .subtitle {
  background: var(--yellow);
  color: var(--black);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  border: 2.5px solid transparent;
  cursor: pointer;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--black);
  box-shadow: 4px 4px 0 var(--black);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--black);
  box-shadow: 4px 4px 0 var(--black);
}

.btn-secondary:hover {
  background: var(--yellow-dark);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
}

.btn-ghost {
  background: #fff;
  border: 2px solid var(--border-color);
  color: var(--text-gray);
}

.btn-large {
  height: 60px;
  padding: 0 34px;
  font-size: 1.1rem;
}

.btn-huge {
  height: 72px;
  padding: 0 40px;
  font-size: 1.35rem;
  font-family: var(--font-impact);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 4px 4px 0 var(--black), 0 0 0 0 rgba(255, 203, 5, 0.7); }
  50% { box-shadow: 4px 4px 0 var(--black), 0 0 0 16px rgba(255, 203, 5, 0); }
}

.btn-pulse {
  animation: pulse-glow 2s infinite;
}

/* MARQUEE TOPO */
.marquee {
  background: var(--black);
  color: var(--yellow);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-family: var(--font-impact);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  border-bottom: 3px solid var(--yellow);
}

.marquee-track {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  margin: 0 28px;
}

.marquee-track .dot {
  color: var(--primary);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--primary);
  transition: 0.25s;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.brand-logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  margin: -18px 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 64px;
  }
  .brand-logo {
    height: 76px;
    margin: -10px 0;
  }
}

@media (max-width: 380px) {
  .header-inner {
    min-height: 58px;
  }
  .brand-logo {
    height: 66px;
    margin: -8px 0;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: var(--yellow);
  transition: width 0.2s;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  padding: 8px;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.2s;
}

/* PROMO BAR */
.promo-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.25);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

@media (max-width: 560px) {
  .promo-bar { font-size: 0.82rem; padding: 8px 10px; gap: 8px; }
  .promo-bar .promo-text-long { display: none; }
  .status-pill { font-size: 0.74rem; padding: 3px 10px; }
}

.status-pill.open { background: #0f9d3c; }
.status-pill.closed { background: rgba(0, 0, 0, 0.55); }

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.status-pill.open .status-dot {
  background: #c6ff6e;
  animation: pulse-dot 1.6s infinite;
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(198, 255, 110, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(198, 255, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(198, 255, 110, 0); }
}


.promo-highlight {
  color: var(--yellow);
  font-family: var(--font-impact);
}

/* HERO — FOLHETOS */
.hero-folhetos {
  position: relative;
  padding: 54px 0 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  overflow: hidden;
}

.hero-folhetos::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 22px);
  pointer-events: none;
}

.hero-head {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.slogan-hero {
  display: inline-block;
  font-family: var(--font-impact);
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--black);
  text-shadow: 6px 6px 0 var(--black);
}

.slogan-hero span {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  -webkit-text-stroke: 0;
  text-shadow: none;
  padding: 4px 22px;
  margin-top: 10px;
  border: 3px solid var(--black);
  box-shadow: 6px 6px 0 var(--primary);
  transform: rotate(-2deg);
}

.hero-subtitle {
  color: #fff;
  opacity: 0.95;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

.folhetos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
  align-items: start;
}

.folheto-card {
  position: relative;
  background: #fff;
  border: 5px solid var(--yellow);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.folheto-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
}

.folheto-card img {
  width: 100%;
  height: auto;
  display: block;
}

.folheto-badge {
  position: absolute;
  top: 14px;
  left: -10px;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-impact);
  padding: 8px 18px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  transform: rotate(-6deg);
  z-index: 2;
  box-shadow: 3px 3px 0 var(--yellow);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.folheto-selo {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-impact);
  padding: 8px 16px;
  font-size: 0.9rem;
  border: 2px solid var(--black);
  z-index: 2;
}

.hero-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-cta .btn {
  font-family: var(--font-impact);
}

/* SELO CIRCULAR */
.selo-qualidade {
  position: absolute;
  top: 40px;
  right: 6%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-impact);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
  border: 4px dashed var(--black);
  animation: spin 14s linear infinite;
  z-index: 2;
  padding: 14px;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
  cursor: zoom-out;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 95vw;
  max-height: 92vh;
  object-fit: contain;
  border: 4px solid var(--yellow);
  box-shadow: 0 0 60px rgba(255, 203, 5, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  font-size: 1.4rem;
  font-weight: 800;
  cursor: pointer;
}

/* SECTION HEADER */
.section-header {
  margin-bottom: 34px;
}

.section-header h2 {
  -webkit-text-stroke: 1.5px var(--black);
  text-shadow: 4px 4px 0 var(--yellow);
  margin-top: 6px;
}

.bg-dark .section-header h2 {
  color: #fff;
  text-shadow: 4px 4px 0 var(--primary);
}

/* PROMO CARDS */
.promos {
  background: var(--bg-body);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.promo-card {
  background: linear-gradient(155deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  border: 3px solid var(--black);
  box-shadow: var(--shadow-hard);
  display: flex;
  flex-direction: column;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: 0.2s;
}

.promo-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--black);
}

.promo-card::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: var(--yellow);
  transform: rotate(45deg);
}

.promo-fita {
  position: absolute;
  top: 18px;
  left: -38px;
  width: 140px;
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  font-family: var(--font-impact);
  padding: 6px 0;
  transform: rotate(-45deg);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.promo-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: var(--radius-pill);
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 2px solid var(--black);
  z-index: 2;
}

.promo-tag.tag-blue {
  background: #fff;
}

.promo-tag.tag-gold {
  background: var(--yellow-dark);
}

.promo-content {
  margin-top: 12px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.promo-content h3 {
  font-size: 2.1rem;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 3px 3px 0 var(--black);
}

.promo-content p {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.promo-content ul {
  list-style: none;
}

.promo-content li {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.promo-footer {
  border-top: 2px dashed rgba(255, 255, 255, 0.3);
  margin-top: 14px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.promo-price-box span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-price-old {
  text-decoration: line-through;
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.9rem !important;
  font-weight: 700;
}

.promo-price-box strong {
  display: block;
  color: var(--yellow);
  font-family: var(--font-impact);
  font-size: 2.4rem;
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--black);
  text-shadow: 3px 3px 0 var(--black);
}

.btn-promo {
  height: 46px;
  padding: 0 22px;
  font-size: 0.95rem;
  background: var(--yellow);
  color: var(--black);
  border-color: var(--black);
  box-shadow: 3px 3px 0 var(--black);
  font-family: var(--font-impact);
}

.btn-promo:hover {
  background: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--black);
}

/* KITS */
.kits {
  background: var(--bg-surface);
}

.kits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.kit-card {
  position: relative;
  border: 4px solid var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  cursor: zoom-in;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kit-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--primary);
}

.kit-card img {
  width: 100%;
  height: auto;
  display: block;
}

.kit-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 22px 22px;
  background: linear-gradient(180deg, rgba(15,15,15,0) 0%, rgba(15,15,15,0.88) 60%, rgba(15,15,15,0.96) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.kit-selo {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-impact);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border: 2px solid var(--black);
}

.kit-overlay h3 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-shadow: 3px 3px 0 var(--black);
  -webkit-text-stroke: 1px var(--black);
}

.kit-overlay .btn {
  height: 46px;
  padding: 0 22px;
  font-size: 0.95rem;
  font-family: var(--font-impact);
}

/* DISK ENTREGA BANNER */
.disk-entrega {
  padding: 0;
  background: var(--yellow);
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
  overflow: hidden;
}

.disk-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.disk-content {
  padding: 50px 0 50px 6%;
}

.disk-content h2 {
  color: var(--primary);
  -webkit-text-stroke: 2px var(--black);
  text-shadow: 5px 5px 0 var(--black);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.disk-content p {
  color: var(--black);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 14px 0 22px;
  max-width: 420px;
}

.disk-img {
  position: relative;
  height: 100%;
  min-height: 280px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
  isolation: isolate;
}

.disk-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(circle at 50% 105%, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 35%);
}

/* CATEGORIAS */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.menu-item {
  background: #fff;
  border: 3px solid var(--black);
  border-radius: var(--radius-md);
  min-height: 200px;
  box-shadow: 5px 5px 0 var(--black);
  position: relative;
  overflow: hidden;
  transition: 0.2s;
}

.menu-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--black);
}

.cat-item {
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background-size: cover;
  background-position: center;
}

.cat-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(209,15,44,0) 20%, rgba(15,15,15,0.85) 100%);
}

.cat-item h4 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.55rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-shadow: 3px 3px 0 var(--black);
}

.cat-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-impact);
  font-size: 0.72rem;
  padding: 4px 10px;
  border: 2px solid var(--black);
  z-index: 2;
  letter-spacing: 0.04em;
}

/* DEPOIMENTOS */
.depoimentos {
  background: var(--black);
  color: #fff;
  padding: 80px 0;
  position: relative;
}

.depoimentos::before,
.depoimentos::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 16px, var(--black) 16px 32px);
}

.depoimentos::before { top: 0; }
.depoimentos::after { bottom: 0; }

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.depoimento-card {
  background: #1A1A1A;
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 26px;
  position: relative;
}

.depoimento-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.depoimento-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-impact);
  font-size: 1.3rem;
  border: 3px solid var(--yellow);
  flex-shrink: 0;
}

.depoimento-info strong {
  color: #fff;
  display: block;
  font-size: 1.05rem;
}

.depoimento-info span {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
}

.depoimento-stars {
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.depoimento-text {
  color: #E5E7EB;
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.depoimento-text::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 2.6rem;
  color: var(--primary);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}

/* ABOUT */
.about {
  background: var(--bg-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.about-content h2 {
  text-shadow: 4px 4px 0 var(--yellow);
  -webkit-text-stroke: 1.5px var(--black);
}

.features-list {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--yellow);
  border: 2px solid var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item h4 {
  margin-bottom: 3px;
  font-size: 1.05rem;
  font-weight: 800;
}

.feature-item span {
  color: var(--text-gray);
  font-size: 0.94rem;
}

.about-images {
  position: relative;
  height: 440px;
}

.img-main,
.img-sub {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.22)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
  isolation: isolate;
}

.img-main::before,
.img-sub::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 203, 5, 0.28) 0%, rgba(255, 203, 5, 0.10) 40%, rgba(255, 203, 5, 0) 70%);
}

.img-sub::before {
  background: radial-gradient(circle, rgba(209, 15, 44, 0.18) 0%, rgba(209, 15, 44, 0.06) 45%, rgba(209, 15, 44, 0) 70%);
}

.img-main {
  width: 86%;
  height: 340px;
  top: 0;
  right: 0;
}

.img-sub {
  width: 58%;
  height: 240px;
  left: 0;
  bottom: 0;
}

/* CONTACT */
.contact {
  background: var(--bg-body);
}

.contact-box {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
  border: 3px solid var(--black);
  overflow: hidden;
  display: flex;
  background: #fff;
}

.contact-info {
  width: 50%;
  padding: 44px;
}

.contact-info h3 {
  color: var(--primary);
  font-size: 2.2rem;
}

.contact-hours {
  background: var(--yellow-light);
  border: 2px solid var(--black);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 20px 0;
}

.contact-hours strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-impact);
  color: var(--primary);
}

.contact-map {
  width: 50%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 420px;
}

/* FOOTER */
.footer {
  background: var(--black);
  color: #fff;
  border-top: 4px solid var(--yellow);
  padding: 40px 0 30px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand img {
  height: 58px;
  width: auto;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-content > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  width: 100%;
  text-align: center;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 14px;
}

/* FLOAT WHATSAPP */
.float-wpp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  transition: transform 0.2s;
  border: 3px solid #fff;
  animation: pulse-wpp 2.2s infinite;
}

.float-wpp:hover {
  transform: scale(1.1);
}

@keyframes pulse-wpp {
  0%, 100% { box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.1s;
}

/* OFERTAS ESPECIAIS */
.ofertas-especiais {
  background: #fff;
}

.ofertas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.oferta-card {
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08), transparent 55%),
    linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 100%);
  border: 4px solid var(--yellow);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
  transition: transform 0.25s ease;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oferta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(255, 193, 7, 0.18), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(220, 38, 38, 0.15), transparent 40%);
  pointer-events: none;
}

.oferta-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
}

.oferta-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .ofertas-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
  }
  .oferta-card {
    border-width: 3px;
  }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .folhetos-grid,
  .kits-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .disk-grid {
    grid-template-columns: 1fr;
  }

  .disk-content {
    padding: 40px 6%;
    text-align: center;
  }

  .disk-content p { margin-left: auto; margin-right: auto; }

  .disk-img {
    min-height: 240px;
  }

  .about-images {
    height: 380px;
  }

  .contact-box {
    flex-direction: column;
  }

  .contact-info,
  .contact-map {
    width: 100%;
  }

  .selo-qualidade {
    width: 100px;
    height: 100px;
    font-size: 0.7rem;
    top: 16px;
    right: 4%;
  }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    display: grid;
    gap: 0;
    padding: 8px 4%;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 4px;
  }

  .mobile-toggle {
    display: block;
  }

  .header-actions .btn {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }

  .hero-folhetos {
    padding: 40px 0 54px;
  }

  .selo-qualidade {
    display: none;
  }

  .btn-large,
  .btn-huge {
    width: 100%;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cat-item h4 { font-size: 1.2rem; }

  .about-images {
    height: 320px;
  }

  .img-main {
    height: 260px;
  }

  .img-sub {
    height: 170px;
  }

  .contact-info {
    padding: 28px;
  }

  .footer {
    padding-bottom: 100px;
  }

  .depoimento-card { padding: 20px; }
}
