/* =============================================
   NutriPet One — Design System v10
   ============================================= */

:root {
  --bg: #faf8f5;
  --card: #ffffff;
  --line: #ede8e0;
  --navy: #0f2044;
  --navy-mid: #1a3460;
  --orange: #f47a1f;
  --orange-dark: #df6b10;
  --teal: #0d9b8a;
  --teal-dark: #0a7a6e;
  --muted: #7a8494;
  --shadow: 0 4px 24px rgba(15,32,68,.08);
  --shadow-hover: 0 12px 40px rgba(15,32,68,.14);
  --radius: 20px;
  --font-main: 'Nunito', sans-serif;
}

* { box-sizing: border-box }
html { scroll-behavior: smooth }
body { margin: 0; font-family: var(--font-main); background: var(--bg); color: #2d3748 }
img { max-width: 100%; display: block }
a { text-decoration: none; color: inherit }
.container { width: min(1220px, calc(100% - 40px)); margin: 0 auto }

/* ── BARRA DE ANÚNCIO ── */
.topbar-announce {
  background: var(--navy);
  padding: 8px 0;
  text-align: center;
  font-size: .77rem; font-weight: 700; letter-spacing: .03em;
  color: rgba(255,255,255,.65);
}
.topbar-announce span { color: #ffb05a; }
.announce-short { display: none }
@media (max-width: 480px) {
  .announce-full { display: none }
  .announce-short { display: inline }
}

/* ── HEADER ── */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: #fff;
  border-bottom: 1.5px solid var(--line);
  box-shadow: 0 2px 16px rgba(15,32,68,.06);
}
.topbar-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 20px; padding: 13px 0;
}

/* logos */
.logos-left { display: flex; align-items: center; gap: 10px }
.logo-main {
  width: 128px; height: auto; object-fit: contain;
}
.logo-cedan-equal {
  width: 128px; height: auto;
  background: var(--bg); padding: 5px 9px;
  border-radius: 8px; border: 1px solid var(--line);
}
.logos-divider {
  width: 1px; height: 32px; background: var(--line); flex-shrink: 0;
}

/* ── NAV ── */
.nav {
  display: flex; align-items: center; justify-content: center;
  gap: 2px; font-weight: 700; color: #4a5568; font-size: .93rem;
}
.nav a {
  white-space: nowrap; padding: 8px 15px; border-radius: 10px;
  color: #4a5568; transition: color .18s, background .18s;
}
.nav a:hover { color: var(--orange); background: #fff7f0; }
.nav-center { justify-self: center }

/* ── TOPBAR RIGHT ── */
.topbar-right {
  display: flex; align-items: center; gap: 14px;
}
.topbar-meta-wrap { display: flex; align-items: center; gap: 10px }
.topbar-meta strong {
  display: block; color: var(--navy); font-size: .8rem; font-weight: 800;
  line-height: 1.3;
}
.topbar-meta small {
  display: block; color: var(--muted); font-size: .69rem; line-height: 1.4;
}

/* divisor entre meta e lang */
.topbar-divider {
  width: 1px; height: 28px; background: var(--line); flex-shrink: 0;
}

/* ── LANG SWITCH ── */
.lang-switch { display: flex; gap: 3px; }
.lang-btn {
  border: 1.5px solid var(--line); background: var(--bg);
  padding: 5px 10px; border-radius: 8px;
  font-family: inherit; font-weight: 800; font-size: .72rem;
  letter-spacing: .05em; color: var(--muted);
  cursor: pointer; transition: all .18s;
}
.lang-btn.active {
  background: var(--orange); color: #fff;
  border-color: var(--orange);
  box-shadow: 0 2px 8px rgba(244,122,31,.25);
}
.lang-btn:hover:not(.active) { border-color: var(--navy); color: var(--navy); background: #fff; }

/* ── MOBILE NAV ── */
.mobile-nav { display: none; gap: 8px; overflow-x: auto; overflow-y: hidden; padding: 10px 0 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.mobile-nav::-webkit-scrollbar { display: none; }
.mobile-nav .chip {
  display: inline-flex; align-items: center; padding: 8px 16px;
  border: 1.5px solid var(--line); border-radius: 999px;
  background: var(--bg); color: #4a5568; font-weight: 700; font-size: .86rem;
  white-space: nowrap; transition: all .18s;
}
.mobile-nav .chip:hover { border-color: var(--orange); color: var(--orange); background: #fff7f0; }

.chip {
  display: inline-flex; align-items: center; padding: 8px 14px;
  border: 1.5px solid var(--line); border-radius: 999px;
  background: #fff; color: var(--navy); font-weight: 700;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #f47a1f 0%, #e86d10 60%, #d45e0a 100%);
  position: relative; overflow: hidden;
}

/* patinhas decorativas */
.hero-paw {
  position: absolute; font-size: 3.5rem;
  opacity: .12; pointer-events: none; user-select: none;
  animation: pawFloat 6s ease-in-out infinite;
}
.hero-paw-1 { top: 10%; left: 4%;  animation-delay: 0s;   font-size: 4rem; }
.hero-paw-2 { top: 55%; left: 8%;  animation-delay: 1.5s; font-size: 2.5rem; transform: rotate(25deg); }
.hero-paw-3 { top: 15%; right: 6%; animation-delay: .8s;  font-size: 3rem;  transform: rotate(-20deg); }
.hero-paw-4 { bottom: 20%; right: 3%; animation-delay: 2s; font-size: 4.5rem; transform: rotate(15deg); }
@keyframes pawFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: .12 }
  50% { transform: translateY(-10px) rotate(8deg); opacity: .18 }
}

.hero-shell {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 500px; align-items: center;
  padding: 64px 0 104px; gap: 48px;
  position: relative; z-index: 1;
}

/* onda na base */
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  line-height: 0; pointer-events: none;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

.badge {
  display: inline-flex; padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.2); color: #fff; font-weight: 800; font-size: .82rem;
  border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(4px);
}
.eyebrow {
  display: inline-flex; padding: 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,.15); color: #fff; font-weight: 800; font-size: .84rem;
  border: 1px solid rgba(255,255,255,.25);
}
h1 {
  font-size: clamp(2.4rem, 4.2vw, 4.8rem); line-height: 1.05;
  color: #fff; margin: 18px 0 16px; font-weight: 900;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}
h1 .highlight { color: var(--navy); }
.hero-copy p { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.88); max-width: 500px }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 28px; border-radius: 999px; font-weight: 900;
  border: 2px solid transparent; cursor: pointer; transition: all .22s; font-family: inherit; font-size: .98rem;
}
.btn.primary { background: #fff; color: var(--orange); border-color: #fff; box-shadow: 0 6px 24px rgba(0,0,0,.15) }
.btn.primary:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }
.btn.secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.6) }
.btn.secondary:hover { background: rgba(255,255,255,.15); transform: translateY(-2px) }

.hero-image {
  position: relative; display: flex;
  justify-content: center; align-items: center;
}
.hero-image img {
  max-height: 420px; width: 100%; object-fit: contain;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,.25));
  animation: floatPet 5s ease-in-out infinite;
}
@keyframes floatPet {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-14px) }
}

/* ── STATS BAR ── */
.stats-bar { background: var(--bg); border-bottom: 1.5px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center }
.stat-item {
  padding: 28px 16px;
  border-right: 1.5px solid var(--line);
}
.stat-item:last-child { border-right: none }
.stat-num {
  font-size: 2.2rem; font-weight: 900; display: block; line-height: 1;
  color: var(--orange);
}
.stat-label { font-size: .87rem; color: var(--muted); margin-top: 6px; display: block; font-weight: 600; }

/* ── SECTIONS ── */
.section { padding: 52px 0 }

.grid-2 { display: grid; gap: 22px; grid-template-columns: 1fr 1fr }
.recommend-grid { display: grid; gap: 22px; grid-template-columns: 1fr 1.7fr; align-items: start }
.product-grid { display: grid; gap: 22px; grid-template-columns: 1fr 1fr }

/* ── CARDS ── */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.card.pad { padding: 32px; transition: transform .25s, box-shadow .25s }
.card.pad:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover) }

.title { font-size: clamp(1.5rem, 2.4vw, 2.3rem); line-height: 1.08; color: var(--navy); margin: 12px 0 14px; letter-spacing: -.02em }
.copy { font-size: 1.05rem; line-height: 1.75; color: var(--muted) }

.bullets { display: grid; gap: 14px }
.bullet { display: flex; gap: 12px; align-items: flex-start; color: #334155 }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); margin-top: 7px; flex-shrink: 0 }

.segment-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px }
.segment-chips .chip { background: #fff; color: var(--navy); border-color: var(--line) }

/* ── INSTAGRAM SECTION ── */
.instagram-section {
  background: var(--navy);
  padding: 52px 0 44px;
}
.instagram-header { text-align: center; margin-bottom: 32px }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; background: rgba(244,122,31,.15); color: #ffaa5e;
  border-radius: 999px; font-weight: 800; font-size: .9rem;
  border: 1px solid rgba(244,122,31,.28); margin-bottom: 14px;
}
.instagram-header h2 {
  color: #fff; font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 0; letter-spacing: -.025em;
}

/* ── SLIDERS ── */
.slider-window { overflow: hidden }
.slider-track {
  display: flex; gap: 16px; padding: 8px 0 4px;
  width: max-content; animation: slideX 30s linear infinite;
}
.slider-window:hover .slider-track { animation-play-state: paused }
.slide-card {
  width: 340px; flex: none;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.slide-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,.32) }
.slide-visual { position: relative; height: 240px; background: rgba(255,255,255,.04) }
.slide-visual img { width: 100%; height: 100%; object-fit: cover }
.play-tag {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(244,122,31,.94); color: #fff;
  padding: 8px 14px; border-radius: 999px; font-weight: 800; font-size: .88rem;
}
.slide-copy { padding: 14px 16px 18px }
.slide-copy strong { display: block; color: #fff; font-size: 1rem }
.slide-copy span { display: block; color: rgba(255,255,255,.58); margin-top: 4px; font-size: .93rem }

/* ── DIFERENCIAIS ── */
.diferenciais-section { padding: 44px 0; background: var(--bg); }
.diferenciais-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.dif-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 28px 24px;
  transition: transform .22s, box-shadow .22s;
}
.dif-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.dif-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: #eef1fb; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.dif-icon svg { width: 22px; height: 22px; color: var(--navy-mid); }
.dif-title {
  display: block; font-size: 1rem; font-weight: 800;
  color: var(--navy); margin-bottom: 8px;
}
.dif-text {
  font-size: .92rem; line-height: 1.6; color: var(--muted); margin: 0;
}

/* ── RECO LIST ── */

/* ── RECO LIST ── */
.reco-list { display: grid; gap: 10px; margin-top: 18px }
.reco-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 18px; border-radius: 16px;
  background: #fff; border: 1px solid var(--line);
  font-weight: 800; color: var(--navy);
  transition: background .2s, color .2s, transform .2s;
}
.reco-item:hover { background: var(--navy); color: #fff; transform: translateX(5px) }

/* ── PRODUCT CARDS ── */
.product-card {
  border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .28s, box-shadow .28s;
  overflow: hidden; display: block;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover) }
.product-dogs { background: linear-gradient(140deg, #d2f0ec 0%, #a2d9d2 100%); border-color: #88ccc4 }
.product-cats { background: linear-gradient(140deg, #fff0e0 0%, #fcd2a0 100%); border-color: #f5bb88 }
.product-card h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.5rem); color: var(--navy);
  margin: 8px 0; font-weight: 900; letter-spacing: -.02em;
}
.product-card p { font-size: 1.04rem; color: var(--muted); margin: 6px 0 20px }
.product-dogs .eyebrow { background: rgba(13,155,138,.18); color: var(--teal-dark) }
.product-cats .eyebrow { background: rgba(244,122,31,.18); color: var(--orange-dark) }
.product-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px;
  font-weight: 900; font-size: .95rem; color: #fff; margin-bottom: 24px;
}
.product-dogs .product-link { background: var(--teal) }
.product-cats .product-link { background: var(--orange) }
.product-card img {
  height: 280px; object-fit: contain; margin-left: auto;
  transition: transform .32s;
}
.product-card:hover img { transform: scale(1.05) }

/* ── CONTACT ── */
.contact-shell { display: grid; gap: 22px; grid-template-columns: .95fr 1.05fr }
.contact-wrapper {
  background: var(--navy); border-radius: var(--radius);
  padding: 40px; position: relative; overflow: hidden;
}
.contact-wrapper::before {
  content: ''; position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(244,122,31,.14) 0%, transparent 70%);
  right: -100px; bottom: -100px; pointer-events: none;
}
.contact-panel { position: relative; z-index: 1 }
.contact-panel .eyebrow { background: rgba(244,122,31,.15); color: #ffaa5e; border: 1px solid rgba(244,122,31,.28) }
.contact-panel .title { color: #fff }
.contact-panel .contact-detail { border-top: 1px solid rgba(255,255,255,.1); padding: 15px 0 }
.contact-panel .contact-detail:first-of-type { margin-top: 8px }
.contact-detail strong { display: block; color: rgba(255,255,255,.9) }
.contact-detail span { display: block; color: rgba(255,255,255,.58); line-height: 1.6 }

.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px }
.form-title-row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; align-items: center; margin-bottom: 16px }
.form-mascot { width: 130px }
.soft { color: var(--muted) }
.contact-form { display: grid; gap: 16px; margin-top: 14px }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
label { display: grid; gap: 9px }
label span { font-size: .8rem; font-weight: 900; letter-spacing: .14em; color: #64748b }
input, select, textarea {
  width: 100%; border: 1px solid #e2e8f0; background: #f8fafc;
  border-radius: 16px; padding: 17px 18px; font: inherit;
  color: #374151; outline: none; transition: border-color .2s, box-shadow .2s, background .2s;
}
textarea { min-height: 160px; resize: vertical }
select:focus, input:focus, textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,122,31,.13); background: #fff;
}
.submit-btn { width: 100%; font-size: 1.05rem }

/* ── WHATSAPP ── */
.whatsapp-float {
  position: fixed; right: 26px; bottom: 24px;
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  box-shadow: 0 10px 40px rgba(37,211,102,.42); z-index: 55;
  transition: transform .22s, box-shadow .22s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 16px 50px rgba(37,211,102,.55) }
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor }

/* ── CURSOR PERSONALIZADO ── */
* { cursor: none !important }

.cursor-dot {
  position: fixed; z-index: 99999; pointer-events: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%);
  transition: transform .12s ease, background .2s, opacity .2s;
  will-change: left, top;
}
.cursor-ring {
  position: fixed; z-index: 99998; pointer-events: none;
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid rgba(244,122,31,.55);
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0; transition: width .25s ease, height .25s ease,
    border-color .25s ease, background .25s ease, font-size .2s ease;
  will-change: left, top;
}

/* estado hover — anel cresce e aparece a patinha */
.cursor-dot.is-hover {
  transform: translate(-50%, -50%) scale(2.2);
  background: var(--orange);
}
.cursor-ring.is-hover {
  width: 56px; height: 56px;
  border-color: rgba(244,122,31,.85);
  background: rgba(244,122,31,.08);
  font-size: 1.4rem;
  line-height: 1;
}

/* estado clique */
.cursor-dot.is-click {
  transform: translate(-50%, -50%) scale(.5);
  background: var(--orange-dark);
}
.cursor-ring.is-click {
  width: 62px; height: 62px;
  border-color: var(--orange);
  background: rgba(244,122,31,.15);
}

/* esconde cursor padrão em todo lugar */
body, a, button, input, select, textarea, label { cursor: none !important }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 32px 0 48px }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,.45); font-size: .9rem; flex-wrap: wrap; gap: 8px;
}

/* ── PAGES (dogs.html / cats.html) ── */
.page-hero { padding: 24px 0 }
.page-shell { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px }
.page-intro { display: grid; grid-template-columns: 1fr .95fr; gap: 22px; align-items: center }
.pack-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 22px }
.pack-card {
  background: linear-gradient(180deg,#fff8f1,#f6efe6); border: 1px solid var(--line);
  border-radius: 22px; padding: 20px; text-align: center; box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.pack-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover) }
.pack-card img { height: 220px; object-fit: contain; margin: 0 auto 10px }
.pack-card strong { display: block; color: var(--navy) }
.pack-card small { display: block; color: var(--muted); line-height: 1.45; margin-top: 4px }
.specs { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 18px }
.spec { background: #f8fafc; border: 1px solid #e8eef7; border-radius: 20px; padding: 18px }
.spec strong { display: block; color: var(--navy) }
.spec span { display: block; color: var(--muted); margin-top: 4px }

/* ── ANIMATION ── */
@keyframes slideX { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ── CURSOR: desabilita em dispositivos touch ── */
@media (pointer: coarse) {
  * { cursor: auto !important }
  body, a, button, input, select, textarea, label { cursor: auto !important }
  .cursor-dot, .cursor-ring { display: none !important }
}

/* ── RESPONSIVE ── */
@media (max-width: 1180px) {
  .topbar-inner { grid-template-columns: 1fr }
  .logos-left, .topbar-right, .nav { justify-content: center }
  .topbar-right { align-items: center }
  .lang-switch { align-self: center }
}
@media (max-width: 1024px) {
  .nav { display: none }
  .mobile-nav { display: flex; justify-content: center }
  .grid-2, .recommend-grid, .contact-shell, .page-intro, .product-grid { grid-template-columns: 1fr }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .pack-grid, .specs { grid-template-columns: repeat(2,1fr) }
  .stats-grid { grid-template-columns: repeat(2,1fr) }
  .hero-shell { grid-template-columns: 1fr; min-height: auto; padding: 48px 0 96px; text-align: center }
  .hero-image { max-height: 300px; margin-top: 16px }
  .hero-image img { max-height: 300px }
  .hero-copy p { margin: 0 auto }
  .cta-row { justify-content: center }
  .hero-paw { display: none }
}
@media (max-width: 768px) {
  /* Esconde topbar-right (Distribuidor Exclusivo + lang switch) — economiza altura do header */
  .topbar-right { display: none }
  /* Nav chips ocupa full width com scroll lateral */
  .mobile-nav { justify-content: flex-start; padding: 8px 0 6px }
}
@media (max-width: 720px) {
  .container { width: min(100% - 20px, 1220px) }
  .logo-main { width: 110px }
  .logo-cedan-equal { width: 124px }
  .topbar-meta small { white-space: normal; text-align: center }
  .card.pad, .form-card, .contact-wrapper, .page-shell { padding: 22px }
  .slider-track { gap: 12px }
  .slide-card { width: 270px }
  .slide-visual { height: 186px }
  .mini-card { width: 224px; grid-template-columns: 78px 1fr }
  .mini-card img { width: 78px; height: 78px }
  .form-grid, .form-title-row, .pack-grid, .specs { grid-template-columns: 1fr }
  .form-mascot { width: 110px }
  .stats-grid { grid-template-columns: repeat(2,1fr) }
  .stat-item { padding: 22px 12px }
  .stat-num { font-size: 1.9rem }
  .hero-image img { max-height: 260px }
  .product-card { padding: 22px }
  .product-card img { height: 200px }
  .footer-inner { flex-direction: column; text-align: center }
  /* Botão WhatsApp menor e mais perto das bordas */
  .whatsapp-float { right: 16px; bottom: 16px; width: 56px; height: 56px }
  .whatsapp-float svg { width: 26px; height: 26px }
  /* Seção Instagram: padding menor */
  .instagram-section { padding: 36px 0 28px }
  /* Diferenciais: 1 coluna em telas pequenas */
  .diferenciais-grid { grid-template-columns: 1fr }
  .dif-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px }
  .dif-icon { flex-shrink: 0; margin-bottom: 0 }
}
@media (max-width: 480px) {
  /* Barra de anúncio: texto mais curto */
  .topbar-announce { font-size: .69rem; padding: 6px 0; }
  /* Logo ainda menor */
  .logo-main { width: 96px }
  .logo-cedan-equal { width: 108px }
  /* Hero mais compacto */
  .hero-shell { padding: 32px 0 76px; gap: 20px }
  h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); margin: 12px 0 10px }
  .hero-copy p { font-size: .93rem }
  /* CTAs: coluna, full width */
  .cta-row { flex-direction: column; align-items: stretch; gap: 10px }
  .cta-row .btn { width: 100%; text-align: center; padding: 14px 20px }
  /* Badge menor */
  .badge { font-size: .74rem; padding: 6px 12px }
  /* Stats: fonte menor */
  .stat-num { font-size: 1.6rem }
  .stat-label { font-size: .78rem }
  /* Seções: menos padding vertical */
  .section { padding: 36px 0 }
  .diferenciais-section { padding: 28px 0 }
  /* Form: padding reduzido */
  .form-card { padding: 18px }
  .contact-wrapper { padding: 24px }
  /* Produto: imagem menor */
  .product-card img { height: 160px }
  /* Footer */
  .footer { padding: 24px 0 36px }
}
