/* ============================================================
   NEW.UP! ELETRODOMÉSTICOS — Landing Page CSS (COMPLETO)
   Cores: Principal #520c7e | Secundária #e95a25
   Fonte: Montserrat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --primary:        #520c7e;
  --primary-dark:   #3a0858;
  --primary-light:  #7a1ab5;
  --secondary:      #e95a25;
  --secondary-dark: #c94a18;
  --white:          #ffffff;
  --light:          #f8f5ff;
  --text:           #1a1a2e;
  --text-muted:     #6b6b8a;
  --border:         #e8e0f0;
  --font-family:    'Montserrat', sans-serif;
  --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:      0 2px 12px rgba(82, 12, 126, 0.08);
  --shadow-md:      0 8px 32px rgba(82, 12, 126, 0.14);
  --shadow-lg:      0 20px 60px rgba(82, 12, 126, 0.2);
  --radius:         16px;
  --radius-sm:      8px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

/* ============================================================
   AOS — ANIMAÇÕES DE SCROLL
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="zoom-in"]    { transform: scale(0.9); }

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: 2px;
  margin: 0 auto 2rem;
}

.section-divider.align-left {
  margin: 0 0 2rem;
}

.section-header {
  margin-bottom: 1rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-wpp:hover {
  background: #1ebe5d;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(233, 90, 37, 0.4);
}

.btn-cta-main:hover {
  background: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(233, 90, 37, 0.5);
}

.btn-custom-primary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  font-family: var(--font-family);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  transition: var(--transition);
}

.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
  background-color: var(--secondary-dark) !important;
  border-color: var(--secondary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNavbar {
  background: transparent;
  backdrop-filter: none;
  padding: 1.25rem 0;
  transition:
    background var(--transition),
    backdrop-filter var(--transition),
    box-shadow var(--transition),
    padding var(--transition);
  z-index: 1050;
}

#mainNavbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
}

/* --- LOGO DUPLO (branco → colorido) --- */
.navbar-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition), height var(--transition);
}

/* Estado padrão: hero transparente */
.navbar-logo--white   { display: block; opacity: 1; }
.navbar-logo--colored { display: none;  opacity: 0; }

/* Estado scrollado: navbar branca */
#mainNavbar.scrolled .navbar-logo--white   { display: none;  opacity: 0; }
#mainNavbar.scrolled .navbar-logo--colored { display: block; opacity: 1; height: 38px; }

/* --- NAV LINKS --- */
.nav-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--white) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

#mainNavbar.scrolled .nav-link {
  color: var(--primary) !important;
}

.nav-link:hover {
  color: var(--secondary) !important;
}

.nav-link.nav-cta {
  background: var(--secondary);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(233, 90, 37, 0.3);
}

.nav-link.nav-cta:hover {
  background: var(--secondary-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* --- HAMBURGER --- */
.navbar-toggler {
  border: none;
  padding: 0.4rem;
  background: transparent;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

#mainNavbar.scrolled .hamburger-icon span {
  background: var(--primary);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(82, 12, 126, 0.88) 0%,
    rgba(58, 8, 88, 0.80) 45%,
    rgba(20, 0, 40, 0.65) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-subheadline {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.hero-trust i {
  color: var(--secondary);
  font-size: 1rem;
}

.hero-cnpj-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--secondary);
  border-radius: 0 6px 6px 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

.hero-cnpj-btn {
  background: #f97316;
  border-left: none;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.hero-cnpj-btn:hover {
  background: #ea6c0a;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.hero-cnpj-callout i {
  color: var(--secondary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-cnpj-btn i {
  color: #fff;
}

.hero-cnpj-callout strong {
  color: var(--white);
}

/* Hero Form Card */
.hero-form-col {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.hero-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--secondary);
}

.form-card-header {
  margin-bottom: 1.5rem;
}

.form-card-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.form-card-header p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 0;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  transition: var(--transition);
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(82, 12, 126, 0.12);
}

.hero-form-card .form-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.35rem;
}

/* ============================================================
   SEÇÃO 2 — DIFERENCIAIS
   ============================================================ */
.diferenciais-section {
  padding: 6rem 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.diferencial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.diferencial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.diferencial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.diferencial-card:hover::after {
  transform: scaleX(1);
}

.diferencial-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: var(--transition);
}

.diferencial-card:hover .diferencial-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary);
}

.diferencial-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.diferencial-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.diferencial-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   SEÇÃO 3 — GALERIA DE SOLUÇÕES
   FIX: imagens maiores, sem corte, aspect-ratio generoso
   ============================================================ */
.solucoes-section {
  padding: 6rem 0;
  background: var(--white);
}

.produto-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  background: var(--white);
}

.produto-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* FIX: aspect-ratio maior para não cortar imagens altas */
.produto-img-wrap {
  position: relative;
  background: var(--light);
  overflow: hidden;
  aspect-ratio: 4 / 3;   /* ratio generoso para produtos verticais */
  display: flex;
  align-items: center;
  justify-content: center;
}


.produto-img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
}

.produto-card:hover .produto-img {
  transform: scale(1.04);
}

.soon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
}

.produto-card--soon {
  opacity: 0.85;
}

/* FIX: border-top na .produto-body NÃO afeta a imagem acima */
.produto-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--primary);
}

.produto-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.produto-body p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin: 0;
}

/* ============================================================
   SEÇÃO 4 — SOBRE
   FIX: removida borda laranja da imagem
   ============================================================ */
.sobre-section {
  padding: 6rem 0;
  background: var(--light);
}

/* FIX: sem border, sem pseudo-elemento que gere linha colorida */
.sobre-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: none;          /* garante que não herde border de outro seletor */
}

.sobre-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border: none;           /* previne border inline herdado */
  outline: none;
}

/* Badge opcional dentro da imagem — vazio no HTML atual */
.sobre-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.sobre-text {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.sobre-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ============================================================
   SEÇÃO 5 — CTA FINAL
   FIX: imagem de fundo visível com z-index correto
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  isolation: isolate;   /* novo stacking context */
}

/* Container da imagem + overlay */
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* FIX: img precisa de position absolute para preencher .cta-bg */
.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay sobre a imagem */
.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(82, 12, 126, 0.82) 0%,
    rgba(233, 90, 37, 0.70) 100%
  );
}

/* Conteúdo acima do overlay */
.cta-container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-contact h6,
.footer-links h6 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact i {
  color: var(--secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin: 0;
  letter-spacing: 0.03em;
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 991px)
   ============================================================ */
@media (max-width: 991px) {

  /* Navbar mobile: menu dropdown com fundo branco */
  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-md);
  }

  /* Nos links do menu mobile, sempre cor primária (fundo branco) */
  .navbar-collapse .nav-link {
    color: var(--primary) !important;
    padding: 0.75rem 0.5rem !important;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .navbar-collapse .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-collapse .nav-link.nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    display: block;
    border-radius: 50px;
    border-bottom: none;
    color: var(--white) !important;
  }

  /* Hero */
  .hero-content {
    padding-top: 7rem;
    padding-bottom: 1.5rem;
    text-align: center;
  }

  .hero-subheadline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-form-col {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }

  /* Sobre */
  .sobre-img {
    height: 360px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 767px)
   ============================================================ */
@media (max-width: 767px) {

  /* Seções */
  .diferenciais-section,
  .solucoes-section,
  .sobre-section {
    padding: 4rem 0;
  }

  .cta-section {
    padding: 5rem 0;
  }

  /* Hero */
  .hero-content {
    padding-top: 6.5rem;
    padding-bottom: 1.5rem;
  }

  .hero-headline {
    font-size: 1.65rem;
  }

  .hero-subheadline {
    font-size: 0.9rem;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }

  .hero-form-card {
    padding: 1.5rem 1.25rem;
  }

  /* Produto cards: empilha em coluna única */
  .solucoes-section .col-md-4 {
    width: 100%;
  }

  /* Soluções: imagem menor em mobile */
  .produto-img-wrap {
    aspect-ratio: 16 / 10;
  }

  /* Sobre */
  .sobre-img {
    height: 240px;
  }

  .sobre-stats {
    gap: 1.25rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  /* CTA */
  .cta-title {
    font-size: 1.45rem;
  }

  .btn-cta-main,
  .btn-wpp {
    font-size: 0.9rem;
    padding: 0.85rem 1.5rem;
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom p {
    font-size: 0.68rem;
    padding: 0 1rem;
  }

  /* Tipografia */
  .section-title {
    font-size: 1.4rem;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {

  .hero-headline {
    font-size: 1.45rem;
  }

  .hero-badge {
    font-size: 0.65rem;
  }

  .diferencial-card {
    padding: 1.5rem 1rem;
  }

  .produto-body {
    padding: 1.25rem 1rem;
  }

  /* Formulário */
  .hero-form-card {
    padding: 1.25rem 1rem;
  }

  .form-card-header h3 {
    font-size: 1.05rem;
  }

  /* Seção sobre: stats em wrap */
  .sobre-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* CTA section menor */
  .cta-section {
    padding: 4rem 0;
  }

  .cta-title {
    font-size: 1.3rem;
  }
}

/* ============================================================
   FIXES MOBILE — NEW.UP (NÃO AFETA DESKTOP)
   ============================================================ */
@media (max-width: 767px) {

  /* =========================
     NAVBAR FIX
  ========================= */
  #mainNavbar {
    padding: 0.6rem 0;
  }

  .navbar-logo {
    height: 34px; /* menor no mobile */
  }

  .navbar-collapse {
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
  }

  /* evita "bug visual" do menu */
  .navbar-nav {
    gap: 0 !important;
  }

  /* =========================
     SOBRE (IMAGEM CORTADA)
  ========================= */
  .sobre-img {
    height: auto !important;
    max-height: 260px;
    object-fit: contain; /* evita corte */
    background: #fff; /* evita fundo feio */
  }

  .sobre-img-wrap {
    padding: 0.5rem;
  }

  /* =========================
     STATS (17+ ANOS etc)
  ========================= */
  .sobre-stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .stat-item {
    align-items: center;
    text-align: center;
    flex: 1;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.65rem;
    line-height: 1.2;
  }

  /* impede quebra feia */
  .stat-label br {
    display: none;
  }

  .site-footer {
    padding: 2.5rem 0 0;
  }

  .footer-grid {
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-logo {
    height: 38px;
    margin-bottom: 1rem;
  }

  .footer-contact li,
  .footer-links a {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .footer-contact h6,
  .footer-links h6 {
    margin-bottom: 0.75rem;
  }

  .social-link {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding: 0.8rem 0;
  }

  .footer-bottom p {
    font-size: 0.65rem;
  }
}

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.7;
}

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

/* NAVBAR */
#mainNavbar {
  background: transparent;
  padding: 1.25rem 0;
  transition: 0.35s;
}

#mainNavbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0.6rem 0;
}

/* HERO */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-bg,
.cta-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img,
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PRODUTOS (corrigido overflow) */
.produto-card {
  overflow: hidden;
}

.produto-img-wrap {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.produto-img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* SOBRE */
.sobre-img {
  width: 100%;
  object-fit: cover;
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
}

/* FOOTER */
.footer-grid {
  display: grid;
  gap: 3rem;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {

  .navbar-collapse {
    background: #fff;
    border-radius: 16px;
    padding: 1rem;
  }

  .navbar-collapse .nav-link {
    color: #520c7e !important;
    border-bottom: 1px solid #eee;
  }

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

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

/* =========================
   MOBILE (UNIFICADO)
========================= */
@media (max-width: 767px) {

  #mainNavbar {
    padding: 0.6rem 0;
  }

  .navbar-logo {
    height: 34px;
  }

  .hero-content {
    padding-top: 6.5rem;
    text-align: center;
  }

  .hero-headline {
    font-size: 1.65rem;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
  }

  .produto-img-wrap {
    aspect-ratio: 16/10;
  }

  .sobre-img {
    max-height: 260px;
    object-fit: contain;
    background: #fff;
  }

  .sobre-stats {
    display: flex;
    justify-content: space-between;
    text-align: center;
  }

  .stat-item {
    flex: 1;
  }

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

  .btn-cta-main,
  .btn-wpp {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

  .hero-headline {
    font-size: 1.45rem;
  }

  .cta-title {
    font-size: 1.3rem;
  }
}

.float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  transition: 0.5s;
}

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

.float img {
  max-width: 110%;
}

.hero-consumer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.hero-consumer-link i {
  font-size: 0.85rem;
  opacity: 0.7;
}

.hero-consumer-link:hover {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-consumer-link {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.cta-consumer-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.cta-consumer-link a i {
  font-size: 0.85rem;
  opacity: 0.75;
}

.cta-consumer-link a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
}