@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montenegrin+Gothic+One&display=swap');

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

:root {
  --red:       #064209;
  --red-glow:  #25d39f;
  --dark:      #0a0a0a;
  --dark2:     #111214;
  --dark3:     #1a1c1f;
  --steel:     #2a2d32;
  --muted:     #6b7280;
  --light:     #f0f0ee;
  --white:     #ffffff;
  --gold:      #c9a84c;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  
}


/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
}

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}

.logo-img {
  height: 50px;
  width: 110px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: lighten;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  border-left: 1px solid rgba(255,255,255,.15);
  padding-left: 10px;
}

.logo-nome {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: #2e7d32;
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

nav { display: flex; align-items: center; gap: 36px; }
nav a {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  position: relative; transition: color .2s;
}
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
nav a:hover { color: var(--white); }
nav a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.nav-phone .dot { width: 6px; height: 6px; border-radius: 50%; background: #25d366; animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.btn-outline {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--white);
  text-decoration: none; padding: 9px 22px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 2px;
  transition: border-color .2s, background .2s, color .2s;
}
.btn-outline:hover { border-color: var(--red); background: var(--red); }

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 700px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: flex-end;
  padding: 0 80px;
  padding-top: 72px;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;

}
.hero-bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
}


/* Vertical accent lines */
.hero-accent {
  position: absolute; top: 0; right: 100px; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--red) 50%, transparent 100%);
  opacity: .25; 
  display: none;
}
.hero-accent-2 {
  position: absolute; top: 0; left: 50%; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent 10%, rgba(255,255,255,.04) 50%, transparent 90%);

  display: none;
}

/* Large watermark text */
.hero-number {
  position: absolute; bottom: -60px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head); font-size: clamp(120px, 18vw, 260px); font-weight: 800;
  color: rgba(255,255,255,.025); line-height: 1;
  pointer-events: none; user-select: none;
  letter-spacing: -8px; white-space: nowrap;
}

.hero-badge {
  position: relative; z-index: 2;
  border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
  padding: 28px 32px;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,.04);
  align-self: center;
}
.hero-badge-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.hero-badge-value { font-family: var(--font-head); font-size: 52px; font-weight: 800; color: var(--white); line-height: 1; }
.hero-badge-sub { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* Extra info cards inside badge */
.hero-badge-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 20px 0; }
.hero-badge-row { display: flex; justify-content: space-between; gap: 20px; }
.hero-badge-mini-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.hero-badge-mini-val { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--white); margin-top: 2px; }

.hero-content { position: relative; z-index: 2; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.85) 45%, rgba(0,0,0,.4) 100%);
  z-index: 1;
}

.hero-eyebrow {
  display: none; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 24px;
}
.hero-eyebrow::before {
  background: rgba(255,255,255,.7);
}

.hero-title {
   font-family: "Montenegrin Gothic One", serif; font-size: clamp(9em, 7vw, 110px);
  font-weight: 800; line-height: .92;
  letter-spacing: -4px; color: rgb(247, 248, 255);
  margin-bottom: 28px;
  text-shadow: 2px 2px #173e58;
  letter-spacing: 5px;
  
}
.hero-title .line2 {
  -webkit-text-stroke: 1.5px rgba(250, 250, 250, 0.25);
   
}
.hero-title .line3 { color: var(--red); }

.hero-sub {
  font-size: 16px; color: rgba(254, 254, 255, 0.85);
  max-width: 480px; margin-bottom: 44px; font-weight: 300;
}

.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  padding: 16px 32px; border-radius: 2px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: transform .2s;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: translateX(-100%); transition: transform .4s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary svg { transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgb(42, 140, 231); text-decoration: none;
  text-shadow: white;
  font-size: 13px; letter-spacing: 1px;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--white); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 80px;
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted);
}
.hero-scroll::after {
  content: ''; width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--muted), transparent);
  animation: scroll-line 2s infinite;
}
@keyframes scroll-line { 0%,100%{transform:scaleX(0);transform-origin:left} 50%{transform:scaleX(1);transform-origin:left} }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--red); padding: 14px 0; overflow: hidden;
  display: flex; gap: 0;
}
.marquee-track {
  display: flex; gap: 0; animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--white);
  padding: 0 40px; opacity: .9;
}
.marquee-item::after { content: '✦'; margin-left: 40px; opacity: .5; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTION COMMONS ── */
section { position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red);
  margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--red); }
.section-title {
  font-family: var(--font-head); font-size: clamp(36px, 5vw, 58px);
  font-weight: 800; line-height: 1; letter-spacing: -2px;
  color: var(--white);
}
.section-title span { color: var(--red); }

/* ── PRODUCTS ── */
.products { padding: 120px 60px; }
.products-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; max-width: 1300px; margin-left: auto; margin-right: auto;
}
.products-header .right { color: var(--muted); font-size: 14px; max-width: 300px; line-height: 1.7; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
  max-width: 1300px; margin: 0 auto;
}

.product-card {
  position: relative; overflow: hidden;
  background: var(--dark3);
  aspect-ratio: 4/3;
  group: true;
}

.product-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.product-card:nth-child(2) { grid-column: 2; grid-row: 1 / 3; aspect-ratio: unset; }
.product-card:nth-child(3) { grid-column: 3; grid-row: 1 / 3; aspect-ratio: unset; }
.product-card:nth-child(4) { grid-column: 1; grid-row: 2; }
.product-card:nth-child(5) { grid-column: 1 / 4; grid-row: 3; aspect-ratio: unset; height: 180px; }

.product-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
  transition: background .4s;
}
.product-card:hover .product-inner {
   background: linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}

.product-icon {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: background .3s, transform .3s;
}
.product-card:hover .product-icon { background: var(--red); transform: scale(1.1); }

.product-bg { display: none; }

.product-card:hover .product-bg { opacity: .08; transform: scale(1.1); }

.product-num {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; color: rgba(255,255,255,.3); margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px; color: var(--white);
  line-height: 1.1; margin-bottom: 6px;
}
.product-arrow {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4);
  transform: translateX(-8px) translateY(4px); opacity: 0;
  transition: transform .25s, opacity .25s, color .25s;
}
.product-card:hover .product-arrow { transform: translateX(0) translateY(0); opacity: 1; color: var(--white); }

/* ── NUMBERS STRIP ── */
.numbers-strip {
  padding: 80px 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--steel); border-bottom: 1px solid var(--steel);
  max-width: 1300px; margin: 0 auto 0;
}
.number-item { padding: 40px; border-right: 1px solid var(--steel); text-align: center; }
.number-item:last-child { border-right: none; }
.number-big {
  font-family: var(--font-head); font-size: 58px; font-weight: 800;
  color: var(--white); letter-spacing: -3px; line-height: 1;
}
.number-big em { color: var(--red); font-style: normal; }
.number-label { font-size: 13px; color: var(--muted); margin-top: 8px; letter-spacing: .5px; }

/* ── CATALOG ── */
.catalog {
  padding: 120px 60px;
  background: var(--dark2);
  position: relative; overflow: hidden;
}
.catalog::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,58,92,.3) 0%, transparent 70%);
}

.catalog-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}

.catalog-visual {
  position: relative; height: 380px;
}
.cat-book {
  position: absolute;
  border-radius: 3px 8px 8px 3px;
  box-shadow: 8px 8px 40px rgba(0,0,0,.6);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  transition: transform .4s;
}
.cat-book:hover { transform: translateY(-8px) !important; }

.cat-book-1 {
  left: 0; top: 60px; width: 90px; height: 260px;
  background: linear-gradient(160deg, #2a2a2a, #1a1a1a);
  border-left: 4px solid var(--red);
  transform: rotate(-3deg);
}
.cat-book-2 {
  left: 80px; top: 20px; width: 100px; height: 300px;
  background: linear-gradient(160deg, #333, #222);
  border-left: 4px solid #1565c0;
  transform: rotate(-1deg);
}
.cat-book-3 {
  left: 180px; top: 0; width: 160px; height: 340px;
  background: linear-gradient(160deg, #f5f5f5, #ddd);
  border-left: 6px solid var(--red);
  transform: rotate(1deg);
  color: #333;
}
.cat-label {
  font-family: var(--font-head); font-weight: 800; font-size: 12px;
  letter-spacing: 1px; text-transform: uppercase; writing-mode: vertical-rl;
}
.cat-book-3 .cat-label { color: #333; }
.cat-book-1 .cat-label, .cat-book-2 .cat-label { color: var(--muted); }

.cat-logo { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--red); margin-top: 8px; }
.cat-book-1 .cat-logo, .cat-book-2 .cat-logo { color: rgba(255,255,255,.3); writing-mode: vertical-rl; }

.catalog-tabs-new {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px;
}
.ctab {
  padding: 7px 14px;
  border: 1px solid var(--steel); border-radius: 2px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.75);;
  cursor: pointer; transition: all .2s;
}
.ctab:hover, .ctab.active {
   border-color: #2e7d32; 
   color: #4caf50;
   background: rgba(46,125,50,.1); }

/* ── MASCOT / CTA ── */
.cta-band {
  padding: 100px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: 1300px; margin: 0 auto;
  align-items: center;
}

.mascot-card {
  background: var(--dark3);
  border: 1px solid var(--steel);
  border-radius: 16px;
  padding: 48px;
  position: relative; overflow: hidden;
}
.mascot-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,66,9,.2) 0%, transparent 70%);
}

.mascot-avatar-new {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; margin-bottom: 24px;
  box-shadow: 0 0 0 8px rgba(70, 75, 70, 0.2), 0 0 0 16px rgba(6,66,9,.1);

}

.mascot-card h3 {
  font-family: var(--font-head); font-size: 28px; font-weight: 800;
  color: var(--white); margin-bottom: 12px; line-height: 1.1;
}
.mascot-card p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: var(--white);
  padding: 14px 28px; border-radius: 4px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }

.cta-right-new .section-label { margin-bottom: 16px; }
.cta-right-new h2 {
   font-family: var(--font-head);
  font-size: clamp(26px, 2.6vw, 36px);  /* ✅ menor e equilibrado */
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.cta-right-new p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }

/* ── ABOUT ── */
.about {
  padding: 120px 60px;
  background: var(--dark2);
}
.about-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}

.about-visual {
  position: relative;
}
.about-img-frame {
   width: 100%; 
  aspect-ratio: 4/5;
  background: var(--dark3);
  border: 1px solid var(--steel);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--steel);
  position: relative;
  overflow: hidden; 
  padding: 0;
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-img-frame:hover img {
  transform: scale(1.05);
}

.about-img-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(208,28,36,.06) 100%);
}
.about-tag {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--red); padding: 20px 24px; border-radius: 4px;
}
.about-tag p { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7); }
.about-tag h4 { font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; font-size: 40px; font-weight: 800; color: var(--white); margin-top: 2px; }

.about-text .section-title { margin-bottom: 24px; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.about-text p:last-of-type { margin-bottom: 40px; }

/* ── FOOTER ── */
footer {
  background: var(--dark); border-top: 1px solid var(--steel);
  padding: 80px 60px 40px;
}
.footer-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 280px repeat(4, 1fr); gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo-mark { font-size: 28px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-top: 14px; max-width: 200px; }

.footer-col h5 {
  font-family: var(--font-head); font-weight: 700; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 1px solid var(--steel);
}
.footer-col a {
  display: block; font-size: 13px; color: var(--muted);
  text-decoration: none; margin-bottom: 10px;
  transition: color .2s, padding-left .2s;
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--steel); padding-top: 28px;
  font-size: 12px; color: var(--muted);
}
.footer-socials {
   display: flex;
  gap: 16px;
  margin-right: 150px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--steel);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.footer-socials a:hover { border-color: var(--red); color: var(--red); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  display: flex; align-items: center; gap: 12px;
  background: var(--dark2);
  border: 1px solid var(--steel);
  border-radius: 50px;
  padding: 12px 20px 12px 12px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,.5); border-color: #25d366; }
.wa-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center; font-size: 20px;
  animation: bounce-subtle 3s ease-in-out infinite;
}
@keyframes bounce-subtle { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-3px)} }
.wa-info {}
.wa-name { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--white); }
.wa-status { font-size: 11px; color: #25d366; display: flex; align-items: center; gap: 4px; }
.wa-status::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #25d366; }

/* ── FADE IN ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,.98);
  backdrop-filter: blur(20px);
  z-index: 400;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head); font-size: 32px; font-weight: 800;
  color: var(--white); text-decoration: none; letter-spacing: -1px;
  text-transform: uppercase; transition: color .2s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .mobile-cta {
  background: var(--red); padding: 14px 36px; border-radius: 4px;
  font-size: 18px;
}

/* ── TABLET: 1200px ── */
@media (max-width: 1200px) {
  header { padding: 0 40px; }
  .hero { grid-template-columns: 1fr 340px; padding: 0 48px; padding-top: 72px; }
  .hero-title { font-size: clamp(50px, 6vw, 78px); 
  font-family: ;}
}

/* ── TABLET: 1024px ── */
@media (max-width: 1024px) {
  header { padding: 0 32px; }
  nav { gap: 20px; font-size: 12px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 40px 60px;
    height: auto; min-height: 100svh;
    align-content: center;
    gap: 40px;
  }
  .hero-badge {
    position: relative; top: auto; right: auto;
    max-width: 480px;
  }
  .hero-number {  display: none; }

  .products { padding: 80px 40px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card:nth-child(n) { grid-column: auto; grid-row: auto; }
  .product-card:nth-child(2) { aspect-ratio: 4/3; }
  .product-card:nth-child(5) { grid-column: 1 / 3; height: 140px; }

  .numbers-strip { grid-template-columns: 1fr 1fr; padding: 60px 40px; }
  .number-item { border-right: none; border-bottom: 1px solid var(--steel); }
  .number-item:nth-child(odd) { border-right: 1px solid var(--steel); }
  .number-item:nth-last-child(-n+2) { border-bottom: none; }

  .catalog { padding: 80px 40px; }
  .catalog-inner { grid-template-columns: 1fr; gap: 56px; }
  .catalog-visual { height: 280px; }
  .cat-book-3 { width: 130px; height: 260px; }

  .cta-band { grid-template-columns: 1fr; gap: 36px; padding: 80px 40px; }

  .about { padding: 80px 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-tag { right: 0; bottom: -16px; }

  footer { padding: 60px 40px 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── MOBILE: 768px ── */
@media (max-width: 768px) {
  /* cursor custom desativado em touch */
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }

  header { padding: 0 20px; height: 64px; }
  nav { display: none; }
  .nav-phone { display: none; }
  .btn-outline { display: none; }
  .hamburger { display: flex; }

  .hero {
    padding: 84px 20px 48px;
    gap: 32px; min-height: 100svh;
  }
  .hero-title {
    font-size: clamp(44px, 11vw, 64px);
    letter-spacing: -2px;
  }
  .hero-sub { font-size: 15px; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .btn-primary { width: 100%; justify-content: center; padding: 15px 24px; }
  .btn-ghost { align-self: center; }
  .hero-badge { max-width: 100%; }
  .hero-badge-value { font-size: 40px; }
  .hero-number { display: none; }
  .hero-accent, .hero-accent-2 { display: none; }

  .marquee-item { font-size: 11px; padding: 0 24px; }

  .products { padding: 60px 20px; }
  .products-grid { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .product-card:nth-child(n) { grid-column: 1; grid-row: auto; }
  .product-card { width: 100%; aspect-ratio: 16/9; }
  .product-card:nth-child(2) { aspect-ratio: 16/9; }
  .product-card:nth-child(5) { height: auto; aspect-ratio: 16/9; }
  .products-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .products-header .right { max-width: 100%; }

  .numbers-strip {
    grid-template-columns: 1fr 1fr;
    padding: 40px 20px; max-width: 100%;
  }
  .number-item { padding: 20px 12px; border-right: none; border-bottom: 1px solid var(--steel); }
  .number-item:nth-child(odd) { border-right: 1px solid var(--steel); }
  .number-item:nth-last-child(-n+2) { border-bottom: none; }
  .number-big { font-size: 36px; }

  .catalog { padding: 60px 20px; }
  .catalog-visual { height: 220px; }
  .cat-book-1 { width: 64px; height: 180px; }
  .cat-book-2 { width: 72px; height: 210px; left: 58px; }
  .cat-book-3 { width: 110px; height: 230px; left: 140px; }
  .catalog-tabs-new { gap: 6px; }
  .ctab { font-size: 10px; padding: 6px 10px; }

  .cta-band { padding: 60px 20px; gap: 32px; }
  .mascot-card { padding: 32px 24px; }
  .btn-wa { width: 100%; justify-content: center; }

  .about { padding: 60px 20px; }
  .about-img-frame { aspect-ratio: 3/2; }
  .about-tag { position: static; margin-top: 16px; display: inline-block; }

  footer { padding: 48px 20px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer-socials { justify-content: center; }

  /* WhatsApp menor no mobile */
  .wa-float { bottom: 16px; right: 16px; padding: 10px 14px 10px 10px; }
  .wa-icon { width: 36px; height: 36px; font-size: 18px; }
  .wa-name { font-size: 12px; }
}

.product-img {
  position: absolute;
  inset: 0;
  width: 100%;          /* exatamente o tamanho do card */
  height: 100%;         /* exatamente o tamanho do card */
  object-fit: cover;    /* preenche tudo, sem faixas pretas */
  object-position: center;  /* 👈 centraliza a imagem */
  transition: transform .6s ease;
}
.product-card:hover .product-img {
  transform: scale(1.04);
}

/* ═══════════════════════════════════════════════════════
   AJUSTES EXCLUSIVOS DE RESPONSIVIDADE
   Mantém identidade visual, conteúdo e estrutura originais
═══════════════════════════════════════════════════════ */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, svg { max-width: 100%; }
.hero-content, .catalog-copy, .about-copy, .cta-copy,
.products-header > *, .footer-inner > * { min-width: 0; }
.product-name, .products-header .right, .about-copy p,
.footer-col a, .footer-brand p { overflow-wrap: anywhere; }

@media (max-width: 1200px) {
  .footer-socials { margin-right: 0; }
  .hero-content { max-width: 720px; }
}

@media (max-width: 1024px) {
  .hero-content { width: 100%; }
  .products-header { width: 100%; }
  .catalog-inner, .about-inner, .footer-inner { width: 100%; }
  .catalog-copy, .about-copy { max-width: 100%; }
  .footer-socials { margin-right: 0; }
}

@media (max-width: 768px) {
  .mobile-menu { top: 64px; padding: 32px 20px; gap: 28px; }
  .mobile-menu a { font-size: clamp(24px, 8vw, 32px); text-align: center; }

  .logo { min-width: 0; }
  .logo-img { max-width: 96px; object-fit: contain; }
  .logo-text { flex-shrink: 0; }

  .hero-content { width: 100%; }
  .hero-title { max-width: 100%; overflow-wrap: normal; }
  .hero-sub { max-width: 100%; }

  .products-header { margin-bottom: 36px; }
  .product-card { min-height: 220px; }
  .product-inner { width: 100%; min-width: 0; }
  .product-name { font-size: clamp(16px, 5vw, 22px); line-height: 1.15; }
  .product-arrow { flex-shrink: 0; }
  .product-card:nth-child(5) .product-inner {
    gap: 12px;
    align-items: flex-end !important;
  }

  .catalog-inner { width: 100%; }
  .catalog-visual { width: 100%; max-width: 360px; margin-inline: auto; }
  .catalog-tabs-new { flex-wrap: wrap; }

  .about-inner, .cta-band { width: 100%; }
  .about-img-frame img { width: 100%; height: 100%; object-fit: cover; }

  .footer-inner { width: 100%; }
  .footer-brand p { max-width: 100%; }
  .footer-socials { margin-right: 0; }

  .wa-float { max-width: calc(100vw - 32px); }
}

@media (max-width: 480px) {
  header { padding-inline: 14px; }
  .logo-img { width: 82px; height: 40px; }
  .logo-text { padding-left: 7px; }
  .logo-sub { font-size: 8px; letter-spacing: 2px; }

  .hero { padding-inline: 16px; }
  .hero-title { font-size: clamp(38px, 12vw, 54px); line-height: .98; }
  .hero-eyebrow { max-width: 100%; font-size: 9px; letter-spacing: 2px; }

  .numbers-strip { grid-template-columns: 1fr; padding-inline: 16px; }
  .number-item,
  .number-item:nth-child(odd),
  .number-item:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--steel);
  }
  .number-item:last-child { border-bottom: 0; }

  .products, .catalog, .about { padding-inline: 16px; }
  .product-card { aspect-ratio: auto; min-height: 240px; }
  .product-card:nth-child(2), .product-card:nth-child(5) {
    aspect-ratio: auto; min-height: 240px;
  }
  .product-card:nth-child(5) .product-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
  }
  .product-card:nth-child(5) .product-arrow { align-self: flex-start; }

  .catalog-visual { height: 200px; transform: scale(.9); transform-origin: center; }
  .catalog-tabs-new { align-items: stretch; }
  .ctab { flex: 1 1 calc(50% - 6px); text-align: center; }

  .cta-band { padding-inline: 16px; }
  .mascot-card { padding: 26px 18px; }

  .section-title { font-size: clamp(34px, 11vw, 52px); }

  .wa-float { padding-right: 10px; }
  .wa-info { display: none; }
  .wa-icon { width: 42px; height: 42px; }
}

@media (max-width: 360px) {
  .logo-text { display: none; }
  .hero { padding-inline: 12px; }
  .products, .catalog, .about, .cta-band { padding-inline: 12px; }
  .product-card { min-height: 225px; }
  .catalog-visual { transform: scale(.8); }
}

/* Correções pontuais para celular: catálogo e logo */
@media (max-width: 480px) {
  header .logo-img {
    width: 112px;
    height: 50px;
    max-width: 112px;
    object-fit: contain;
  }

  .cat-book-1 .cat-label {
    font-size: 9px;
    letter-spacing: .4px;
    line-height: 1;
  }

  .cat-book-3 .cat-label {
    font-size: 10px !important;
    line-height: 1.05;
    margin-bottom: 5px !important;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .cat-book-3 .cat-logo {
    font-size: 12px;
    line-height: 1.05;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  header .logo-img {
    width: 104px;
    height: 48px;
    max-width: 104px;
  }

  .cat-book-1 .cat-label { font-size: 8px; }
  .cat-book-3 .cat-label { font-size: 9px !important; }
  .cat-book-3 .cat-logo { font-size: 11px; }
}
