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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #374151;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button {
  font-family: 'Inter', sans-serif;
}

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

header.scrolled {
  background: rgba(7, 10, 24, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.hdr-logo img {
  height: 40px;
  width: auto;
}

.hdr-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Social icons — ocultos no header, visíveis só no overlay mobile */
.hdr-soc {
  display: none;
}

/* Nav desktop */
.hdr-nav {
  display: none;
  align-items: center;
  position: relative;
}

.nav-drop-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  padding: 8px 16px;
  border-radius: 7px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .2s, background .2s;
}

.nav-drop-btn:hover,
.nav-drop-btn.open {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.nav-drop-btn .caret {
  font-size: 0.65rem;
  transition: transform .25s ease;
}

.nav-drop-btn.open .caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 218px;
  background: rgba(7, 10, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .22s ease, transform .22s ease;
}

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

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.855rem;
  font-weight: 500;
  transition: background .18s, color .18s;
}

.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.nav-dropdown a i {
  color: #BA29A6;
  width: 16px;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* Botão CTA desktop */
.hdr-cta-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-left: 8px;
  transition: background .2s;
}

.hdr-cta-btn:hover {
  background: #1ebe5d;
}

/* Hamburger */
.ham {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px 6px;
  border: none;
  background: transparent;
  margin-left: 6px;
}

.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all .28s ease;
  transform-origin: center;
}

.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { transform: scaleX(0); opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile full-screen overlay */
.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.mob-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mob-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: #374151;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
}

.mob-close:hover { background: #f3f4f6; }

.mob-soc {
  display: flex;
  gap: 16px;
}

.mob-soc a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  color: #374151;
  font-size: 1.45rem;
  transition: background .2s;
}

.mob-soc a:hover { background: #e5e7eb; }

.mob-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 15px 36px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  transition: background .2s;
}

.mob-wa:hover { background: #1ebe5d; }

.mob-equip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 290px;
}

.mob-equip-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.mob-equip a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 18px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  color: #0f1c2e;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background .18s;
}

.mob-equip a:hover { background: #f3f4f6; }

.mob-equip a i {
  color: #BA29A6;
  width: 18px;
}

/* ─────────────────────────────────────────
   BOTÕES
───────────────────────────────────────── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .22);
}

.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.btn-wa.btn-wa-hero {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.75);
  box-shadow: none;
}

.btn-wa.btn-wa-hero:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn-wa-sm {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  padding: 11px 22px;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background .2s;
}

.btn-wa-sm:hover { background: #1ebe5d; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #BA29A6;
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 18px rgba(186, 41, 166, 0.28);
  transition: background .2s, transform .2s;
}

.btn-outline:hover {
  background: #a0218f;
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    url('./hero-bg.png') center/cover no-repeat;
  border-bottom: none;
  padding: 68px 0 90px;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.3rem;
  animation: bounce-arrow 2s ease-in-out infinite;
  transition: color .2s;
}

.hero-scroll:hover { color: rgba(255, 255, 255, 0.9); }

@keyframes bounce-arrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 auto 20px;
  letter-spacing: -0.5px;
  max-width: 680px;
}

.hero h1 .accent { color: #BA29A6; }

.hero-body {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.82;
  max-width: 580px;
  margin: 0 auto 32px;
}

.hero-body p + p { margin-top: 14px; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ─────────────────────────────────────────
   BANDA SECUNDÁRIA
───────────────────────────────────────── */
.band {
  background: #ffffff;
  padding: 56px 0;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.band h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f1c2e;
  line-height: 1.22;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.band p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.82;
  max-width: 660px;
  margin: 0 auto 28px;
}

/* ─────────────────────────────────────────
   CABEÇALHO DE SEÇÃO (compartilhado)
───────────────────────────────────────── */
.sec-hdr {
  margin-bottom: 44px;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #BA29A6;
  margin-bottom: 14px;
}

.sec-label::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: #BA29A6;
  flex-shrink: 0;
}

.sec-hdr h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f1c2e;
  line-height: 1.18;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
  max-width: 540px;
}

.sec-hdr p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.75;
  max-width: 560px;
}

/* ─────────────────────────────────────────
   PRODUTOS
───────────────────────────────────────── */
.products {
  padding: 72px 0 80px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.prod-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.prod-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border-color: #BA29A6;
}

.prod-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: fit-content;
}

.prod-tag i { color: #BA29A6; font-size: 0.7rem; }

.prod-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f1c2e;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.prod-card p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.75;
  flex: 1;
}

.prod-saiba {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #BA29A6;
  transition: gap .2s;
}

.prod-saiba:hover { gap: 10px; }

/* ─────────────────────────────────────────
   AVALIAÇÕES GOOGLE
───────────────────────────────────────── */
.reviews {
  padding: 72px 0 80px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.reviews-hdr {
  text-align: center;
  margin-bottom: 44px;
}

.reviews-score {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f1c2e;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #FBBC04;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.reviews-count {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 14px;
}

.reviews-count strong { color: #374151; }

.google-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
}

.g-blue   { color: #4285F4; }
.g-red    { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green  { color: #34A853; }

/* wrapper posiciona as setas sem cortar */
.reviews-wrap {
  position: relative;
  padding: 0 28px;
}

/* clipping só no track */
.reviews-carousel { overflow: hidden; }

.rev-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background .2s, border-color .2s, color .2s;
}

#revPrev { left: 0; }
#revNext { right: 0; }

.rev-btn:hover {
  background: #BA29A6;
  border-color: #BA29A6;
  color: #fff;
}

.reviews-track {
  display: flex;
  gap: 16px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.review-card {
  flex: 0 0 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 22px 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .22s, border-color .22s;
}

.review-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  border-color: #d1d5db;
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.rev-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
}

.rev-btn:hover {
  background: #BA29A6;
  border-color: #BA29A6;
  color: #fff;
}

.rev-dots { display: flex; gap: 6px; }

.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}

.rev-dot.active {
  background: #BA29A6;
  transform: scale(1.3);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-avatar.av-purple { background: #7c3aed; }
.review-avatar.av-blue   { background: #2563eb; }
.review-avatar.av-teal   { background: #0d9488; }
.review-avatar.av-orange { background: #ea580c; }

.review-meta { display: flex; flex-direction: column; gap: 1px; }

.review-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f1c2e;
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-name .verified {
  color: #4285F4;
  font-size: 0.7rem;
}

.review-time {
  font-size: 0.75rem;
  color: #9ca3af;
}

.review-g {
  color: #9ca3af;
  font-size: 1rem;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #FBBC04;
  font-size: 0.82rem;
}

.review-text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.68;
}

@media (min-width: 768px) {
  .review-card { flex: 0 0 calc((100% - 32px) / 3); }
}

.review-avatar.av-green  { background: #16a34a; }
.review-avatar.av-red    { background: #dc2626; }

/* ─────────────────────────────────────────
   SOBRE
───────────────────────────────────────── */
.about {
  background: #f9fafb;
  padding: 72px 0;
  border-bottom: 1px solid #e5e7eb;
}

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

.about-text h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f1c2e;
  line-height: 1.22;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.about-text p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.82;
}

.about-text p + p { margin-top: 14px; }

.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.09);
}

.about-img img { width: 100%; }

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq {
  padding: 72px 0;
  background: #ffffff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color .2s, box-shadow .2s;
}

.faq-item.open {
  border-color: #BA29A6;
  box-shadow: 0 2px 10px rgba(186, 41, 166, 0.1);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: #0f1c2e;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-q .ico {
  color: #BA29A6;
  font-size: 0.72rem;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.faq-item.open .faq-q .ico { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .28s ease;
  padding: 0 20px;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.78;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 20px 18px;
}

/* ─────────────────────────────────────────
   FOOTER  (dark — padrão B2B)
───────────────────────────────────────── */
footer {
  background: #070a18;
  padding: 64px 0 32px;
  min-height: 280px;
}

.ft-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
}

.ft-brand .ft-logo {
  height: 36px;
  margin-bottom: 14px;
}

.ft-brand p {
  font-size: 0.83rem;
  color: #94a3b8;
  line-height: 1.72;
  max-width: 290px;
  margin-bottom: 18px;
}

.ft-soc {
  display: flex;
  gap: 8px;
}

.ft-soc a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color .2s, background .2s;
}

.ft-soc a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.ft-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #64748b;
  margin-bottom: 14px;
}

.ft-col p,
.ft-col a {
  display: block;
  font-size: 0.83rem;
  color: #94a3b8;
  padding: 3px 0;
  line-height: 1.55;
  transition: color .2s;
}

.ft-contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 0;
}

.ft-col a:hover { color: #25D366; }

.ft-col .ft-icon {
  margin-right: 6px;
  color: #64748b;
}

.ft-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.76rem;
  color: #475569;
  text-align: center;
}

/* ─────────────────────────────────────────
   BOTÃO FLUTUANTE WHATSAPP
───────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.65rem;
  box-shadow: 0 4px 22px rgba(37, 211, 102, .38);
  transition: transform .2s;
}

.wa-fab:hover { transform: scale(1.1); }

.wa-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, .4);
  animation: wa-ring 2.4s ease-out infinite;
}

@keyframes wa-ring {
  0%   { transform: scale(1);    opacity: .7; }
  80%  { transform: scale(1.55); opacity: 0;  }
  100% { transform: scale(1.55); opacity: 0;  }
}

/* ─────────────────────────────────────────
   RESPONSIVO — tablet 768+
───────────────────────────────────────── */
@media (min-width: 768px) {
  .hdr-nav { display: flex; }
  .hdr-cta-btn { display: flex; }
  .ham { display: none; }

  .hero h1 { font-size: 2.5rem; }
  .hero-body { font-size: 0.95rem; }

  .band h2 { font-size: 1.7rem; }

  .sec-hdr h2 { font-size: 2rem; }

  .prod-grid { grid-template-columns: repeat(3, 1fr); }

  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-img  { order: 2; }
  .about-text { order: 1; }
  .about-text h2 { font-size: 1.7rem; }

  .faq .sec-hdr h2 { font-size: 1.7rem; }

  .ft-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .ft-bottom { flex-direction: row; justify-content: space-between; }
}

/* ─────────────────────────────────────────
   RESPONSIVO — desktop 1024+
───────────────────────────────────────── */
@media (min-width: 1024px) {
  .container { padding: 0 32px; }
  .hdr-inner  { padding: 0 32px; }
  .hero h1    { font-size: 3rem; }
}
