/* ============================================================
   FLEXVET — LANDING PAGE 2026
   Monocromático · vídeo hero · modais · conversão
   Paleta: #00CB95 (verde), #861498 (roxo), #ec8922 (laranja)
   Base: cinza escuro #111 / branco / cinza neutro
   ============================================================ */

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

:root {
  --green:      #00CB95;
  --green-d:    #00a87b;
  --green-l:    rgba(0,203,149,.12);
  --purple:     #861498;
  --orange:     #ec8922;

  --dark:       #000000;
  --dark-2:     #080808;
  --dark-3:     #0f0f0f;
  --dark-4:     #181818;
  --dark-5:     #222222;

  /* Seções claras */
  --light:      #f8f8f8;
  --light-2:    #ffffff;
  --light-border: rgba(0,0,0,.08);

  --white:      #ffffff;

  --text:       #c8c8c8;
  --text-muted: #7a7a7a;
  --text-dark:  #e8e8e8;
  /* Textos em seções claras */
  --text-on-light:       #1a1a1a;
  --text-muted-on-light: #555555;
  --border:     rgba(255,255,255,.07);

  --font-body:    'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.3);
  --shadow-md:  0 6px 30px rgba(0,0,0,.4);
  --shadow-lg:  0 16px 60px rgba(0,0,0,.5);
  --shadow-green: 0 6px 28px rgba(0,203,149,.25);
  --t:          all .25s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); outline: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem);   font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem);   font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: .9rem;  font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

p { color: var(--text); line-height: 1.7; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(0,203,149,.3);
  background: rgba(0,203,149,.07);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-label.light { color: var(--green); }

/* Alternating backgrounds — dark ↔ light */
.section-about    { background: var(--light); }
.section-dark     { background: var(--dark-2); }
.section-products { background: var(--light); }
.section-cta      { background: var(--dark-2); }
.section-contact  { background: var(--dark-3); }

/* Seções claras: sobrescreve cores de texto */
.section-about h2,
.section-about h3,
.section-about h4,
.section-about h5 { color: var(--text-on-light); }
.section-about p,
.section-about li { color: var(--text-muted-on-light); }
.section-about .about-tags span { background: #efefef; border-color: rgba(0,0,0,.1); color: var(--text-on-light); }
.section-about .section-label { background: rgba(0,203,149,.09); border-color: rgba(0,203,149,.25); }
.section-about .about-img-badge { background: rgba(255,255,255,.92); color: #111; border-color: rgba(0,203,149,.25); }

.section-products h2,
.section-products h3,
.section-products h4 { color: var(--text-on-light); }
.section-products p  { color: var(--text-muted-on-light); }
.section-products .section-header p { color: var(--text-muted-on-light); }
.section-products .section-label { background: rgba(0,203,149,.09); border-color: rgba(0,203,149,.25); }
.section-products .product-card { background: #fff; border-color: rgba(0,0,0,.08); }
.section-products .product-card:hover { border-color: rgba(0,203,149,.4); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.section-products .product-card-img { background: linear-gradient(135deg,#f0fdf8,#e6f7f1); border-bottom-color: rgba(0,0,0,.06); }
.section-products .product-card h3 { color: var(--text-on-light); }
.section-products .product-card p  { color: var(--text-muted-on-light); }
.section-products .product-card-btn { border-top-color: rgba(0,0,0,.08); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: .9rem;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  letter-spacing: .02em;
  transition: var(--t);
}
.btn-primary:hover { background: var(--green-d); box-shadow: var(--shadow-green); transform: translateY(-1px); }
.btn-primary.btn-lg { font-size: 1rem; padding: 16px 36px; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: .9rem;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2);
  transition: var(--t);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }
.btn-ghost.btn-lg { font-size: 1rem; padding: 16px 36px; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1db954;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  transition: var(--t);
}
.btn-whatsapp:hover { background: #17a349; transform: translateY(-1px); }

.btn-primary-sm {
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: .82rem;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  transition: var(--t);
}
.btn-primary-sm:hover { background: var(--green-d); }

.btn-ghost-sm {
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: .82rem;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--t);
}
.btn-ghost-sm:hover { border-color: rgba(255,255,255,.3); color: var(--white); }

.link-btn {
  background: none;
  border: none;
  color: var(--green);
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  transition: var(--t);
}
.link-btn:hover { color: var(--green-d); }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--t);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  height: 68px;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Nav esquerda — alinhada à direita da coluna (aproxima da logo) */
nav#main-nav {
  display: flex;
  justify-content: flex-end;
}
nav#main-nav ul,
nav#main-nav-right ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
nav#main-nav ul li a,
nav#main-nav-right ul li a {
  font-size: .84rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: var(--t);
  letter-spacing: .01em;
  white-space: nowrap;
}
nav#main-nav ul li a:hover,
nav#main-nav ul li a.active,
nav#main-nav-right ul li a:hover,
nav#main-nav-right ul li a.active {
  color: var(--green);
  background: var(--green-l);
}

/* Logo — coluna central, centrada */
.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0,203,149,.25));
}

/* Direita — alinhada à esquerda da coluna (aproxima da logo) */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.header-right .btn-header-cta { margin-left: 12px; }
.header-actions { display: flex; align-items: center; gap: 12px; }

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: .82rem;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  transition: var(--t);
  white-space: nowrap;
}
.btn-header-cta:hover { background: var(--green-d); box-shadow: var(--shadow-green); }

/* Hamburger */
#menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px; height: 44px;
  padding: 0;
  background: rgba(0,203,149,.12);
  border: 1px solid rgba(0,203,149,.35);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
#menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--t);
}
#menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-toggle.open span:nth-child(2) { opacity: 0; }
#menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
#mobile-nav {
  display: none;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
#mobile-nav.open { display: block; }
#mobile-nav ul li a {
  display: block;
  padding: 12px 24px;
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  transition: var(--t);
}
#mobile-nav ul li a:hover { color: var(--green); background: var(--green-l); }
#mobile-nav ul li .mobile-whatsapp { color: #1db954; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .65;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.28) 50%,
    rgba(0,0,0,.50) 100%
  );
}
/* Barra verde sutil na base */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 120px 24px 100px;
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}
.hero-label span {
  display: block;
  width: 28px; height: 1px;
  background: var(--green);
  opacity: .6;
}

.hero-content h1 {
  margin-bottom: 24px;
  color: var(--white);
}
.hero-content h1 em {
  font-style: normal;
  color: var(--green);
}
.hero-content > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  letter-spacing: .01em;
  transition: var(--t);
}
.btn-hero-primary:hover { background: var(--green-d); box-shadow: var(--shadow-green); transform: translateY(-2px); }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  transition: var(--t);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 20px 36px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  gap: 8px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 28px;
}
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.hero-stat span {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  animation: bounce 2s infinite;
  transition: var(--t);
}
.hero-scroll-indicator:hover { color: var(--green); }

/* ============================================================
   HERO FLOATING SIDEBAR
   ============================================================ */
.hero-sidebar {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-sidebar-btn {
  display: flex;
  align-items: center;
  gap: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

/* Ícone — sempre visível */
.hero-sidebar-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-right: none;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
  transition: var(--t);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.hero-sidebar-btn:nth-child(3) .hero-sidebar-icon {
  color: #861498;
}

/* Label — desliza para a esquerda no hover */
.hero-sidebar-label {
  display: flex;
  align-items: center;
  height: 52px;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 0 16px 0 12px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  line-height: 1.3;
  text-align: left;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width .35s cubic-bezier(.4,0,.2,1),
              opacity .25s ease,
              padding .35s ease;
  padding-left: 0;
  padding-right: 0;
}

.hero-sidebar-btn:hover .hero-sidebar-label {
  max-width: 140px;
  opacity: 1;
  padding: 0 16px 0 14px;
}
.hero-sidebar-btn:hover .hero-sidebar-icon {
  background: rgba(0,203,149,.18);
  border-color: rgba(0,203,149,.35);
}
.hero-sidebar-btn:nth-child(3):hover .hero-sidebar-icon {
  background: rgba(134,20,152,.18);
  border-color: rgba(134,20,152,.35);
}

.hero-sidebar-divider {
  width: 52px;
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 2px 0;
}

/* ---- Modal Sidebar (Assistência + SAC) ---- */
.modal-sidebar-box {
  width: min(480px, 100%);
}
.modal-sidebar-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.modal-sidebar-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--ic) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ic) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ic);
  flex-shrink: 0;
}
.modal-sidebar-header h2 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.modal-sidebar-sub {
  font-size: .82rem !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
.modal-sidebar-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.modal-sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: var(--text);
  line-height: 1.55;
}
.modal-sidebar-item i {
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.modal-sidebar-contact h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Responsivo — esconde label no mobile, mantém ícone */
@media (max-width: 768px) {
  .hero-sidebar {
    top: 35%;
  }
  .hero-sidebar-icon {
    width: 46px; height: 46px;
    font-size: 1.05rem;
  }
  .hero-sidebar-label { display: none; }
  .hero-sidebar-divider { width: 46px; }
}

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

/* ============================================================
   SOBRE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,13,13,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,203,149,.3);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 100px;
}
.about-img-badge i { color: var(--green); }

.about-text .section-label { display: inline-flex; margin-bottom: 16px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.about-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--dark-4);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 100px;
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.diff-card {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--t);
}
.diff-card:hover {
  border-color: rgba(0,203,149,.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.diff-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--c) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 25%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--c);
  margin-bottom: 20px;
}
.diff-card h4 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.diff-card p  { color: var(--text-muted); font-size: .88rem; line-height: 1.65; }

/* ============================================================
   CATEGORY TABS
   ============================================================ */
.cat-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.cat-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 2px solid rgba(0,0,0,.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  cursor: pointer;
  transition: var(--t);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.cat-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,203,149,.04), transparent);
  opacity: 0;
  transition: var(--t);
}
.cat-tab:hover {
  border-color: rgba(0,203,149,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.cat-tab:hover::before { opacity: 1; }

.cat-tab.active {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(0,203,149,.15);
}
.cat-tab.active::before { opacity: 1; }

.cat-tab-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(0,203,149,.1);
  border: 1px solid rgba(0,203,149,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green);
  flex-shrink: 0;
  transition: var(--t);
  --ic: #00CB95;
}
.cat-tab:nth-child(2) .cat-tab-icon {
  background: rgba(134,20,152,.1);
  border-color: rgba(134,20,152,.2);
  color: #861498;
}
.cat-tab.active .cat-tab-icon {
  background: rgba(0,203,149,.18);
}
.cat-tab:nth-child(2).active .cat-tab-icon {
  background: rgba(134,20,152,.18);
  border-color: rgba(134,20,152,.3);
}

.cat-tab-text {
  flex: 1;
  min-width: 0;
}
.cat-tab-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}
.cat-tab-text span {
  font-size: .78rem;
  color: #888;
}
.cat-tab.active .cat-tab-text strong { color: var(--green); }
.cat-tab:nth-child(2).active .cat-tab-text strong { color: #861498; }

.cat-tab-arrow {
  font-size: .75rem;
  color: #ccc;
  transition: var(--t);
  flex-shrink: 0;
}
.cat-tab.active .cat-tab-arrow,
.cat-tab:hover .cat-tab-arrow { color: var(--green); transform: translateX(3px); }
.cat-tab:nth-child(2).active .cat-tab-arrow { color: #861498; }

/* ============================================================
   PRODUTOS — GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  transition: opacity .22s ease, transform .22s ease;
}
.products-grid--exit {
  opacity: 0;
  transform: translateY(8px);
}
.products-grid--enter {
  animation: gridEnter .35s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes gridEnter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}
.product-card:hover {
  border-color: rgba(0,203,149,.5);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,.15);
}

/* Imagem quadrada — proporção 1:1 */
.product-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f0fdf8, #e6f7f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5rem;
  color: var(--green);
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,203,149,.1) 0%, transparent 70%);
}

.product-card-body {
  padding: 24px 28px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-cat {
  display: inline-block;
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.product-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-card p {
  font-size: .88rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .88rem;
  font-weight: 700;
  color: var(--green);
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.07);
  transition: var(--t);
}
.product-card-btn i { transition: var(--t); }
.product-card:hover .product-card-btn { color: var(--green-d); }
.product-card:hover .product-card-btn i { transform: translateX(4px); }

/* ============================================================
   ASSISTÊNCIA
   ============================================================ */
.assist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.assist-text h2 { margin-bottom: 16px; }
.assist-text > p { color: var(--text-muted); margin-bottom: 28px; }

.assist-list {
  list-style: none;
  margin-bottom: 32px;
}
.assist-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}

.assist-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--t);
}
.stat-card:hover { border-color: rgba(0,203,149,.25); }
.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card span {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { color: var(--text-muted); margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTATO
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--green-l);
  border: 1px solid rgba(0,203,149,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: .95rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-item a, .contact-item span {
  font-size: .95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-item a:hover { color: var(--green); }

/* Contact form */
.contact-form {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 11px 14px;
  font-size: .9rem;
  transition: var(--t);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,203,149,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
textarea { resize: vertical; min-height: 100px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.form-check input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-check label { font-size: .84rem; color: var(--text-muted); line-height: 1.5; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,203,149,.1);
  border: 1px solid rgba(0,203,149,.3);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--green);
  font-weight: 600;
  font-size: .88rem;
  margin-top: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 16px;
}
.footer-logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(0,203,149,.2));
  opacity: .9;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .9rem;
  transition: var(--t);
}
.footer-socials a:hover { color: var(--green); border-color: rgba(0,203,149,.3); }

.footer-links h5 {
  color: var(--white);
  font-size: .78rem;
  margin-bottom: 18px;
  letter-spacing: .1em;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a,
.footer-links ul li span {
  font-size: .87rem;
  color: var(--text-muted);
  transition: var(--t);
}
.footer-links ul li a:hover { color: var(--green); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .8rem;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal .link-btn { font-size: .8rem; }

/* ============================================================
   MODAIS — BASE
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
}

.modal-box {
  position: relative;
  z-index: 1;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalIn .25s cubic-bezier(.4,0,.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  width: 36px; height: 36px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .95rem;
  transition: var(--t);
}
.modal-close:hover { color: var(--white); border-color: rgba(255,255,255,.2); }

/* ---- Modal Produto ---- */
.modal-produto-box {
  width: min(1040px, 100%);
  max-height: 92vh;
}
.modal-produto-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 0;
  flex: 1;
  overflow: hidden; /* mantido para coluna direita */
}
.modal-produto-left {
  background: var(--dark-4);
  border-right: 1px solid var(--border);
  border-bottom-left-radius: var(--radius-lg);
  padding: 20px 20px 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0; /* permite shrink no grid */
}
.modal-produto-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 240px;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-5));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--green);
  margin-bottom: 0;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.modal-produto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.modal-produto-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,203,149,.1) 0%, transparent 70%);
}
.modal-produto-meta { margin-bottom: 20px; }
.badge-cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-l);
  border: 1px solid rgba(0,203,149,.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.modal-produto-meta h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.modal-produto-specs {
  margin-top: auto;
}
.modal-produto-specs h5 {
  font-size: .72rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: .1em;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row span:first-child { color: var(--text-muted); }
.spec-row span:last-child  { color: var(--white); font-weight: 600; }

.modal-produto-right {
  padding: 36px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal-produto-desc {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.75;
}
.modal-produto-diferenciais h5 {
  font-size: .72rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: .1em;
}
.modal-produto-diferenciais ul { display: flex; flex-direction: column; gap: 8px; }
.modal-produto-diferenciais li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: var(--text);
  line-height: 1.5;
}
.modal-produto-diferenciais li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 6px;
}
.modal-divider {
  height: 1px;
  background: var(--border);
}
.modal-form-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--white);
  margin-bottom: 4px;
}
.modal-form-title i { color: var(--green); }
.modal-form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* ============================================================
   GALERIA DE IMAGENS — MODAL PRODUTO
   ============================================================ */

/* Wrapper que envolve imagem principal + controles sobrepostos */
.gallery-main-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  flex-shrink: 0;
}

/* Imagem principal: sem margin-bottom próprio (quem controla é o wrap) */
.modal-produto-img {
  margin-bottom: 0 !important;
  cursor: zoom-in;
}

/* Botão lupa — canto superior direito da imagem */
.gallery-zoom-btn {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 5;
  width: 34px; height: 34px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: var(--t);
  opacity: 0;
}
.gallery-main-wrap:hover .gallery-zoom-btn { opacity: 1; }
.gallery-zoom-btn:hover {
  background: var(--green);
  color: #000;
  border-color: var(--green);
  transform: scale(1.08);
}

/* Setas de navegação na galeria */
.gallery-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 30px; height: 30px;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--white);
  font-size: .72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: var(--t);
  opacity: 0;
}
.gallery-main-wrap:hover .gallery-nav { opacity: 1; }
.gallery-nav--prev { left: 8px; }
.gallery-nav--next { right: 8px; }
.gallery-nav:hover {
  background: var(--green);
  color: #000;
  border-color: var(--green);
}

/* Contador "1 / 4" */
.gallery-counter {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.55);
  border-radius: 100px;
  padding: 3px 10px;
  backdrop-filter: blur(4px);
  pointer-events: none;
  letter-spacing: .04em;
}

/* Thumbnails strip */
.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px 2px 10px;
  margin-top: 8px;
  margin-bottom: 12px;
  height: 88px;
  min-height: 88px;
  flex-shrink: 0;
  align-items: center;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.gallery-thumbs::-webkit-scrollbar { height: 3px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.gallery-thumb {
  flex-shrink: 0;
  width: 68px; height: 68px;
  min-width: 68px; min-height: 68px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--dark-5);
  transition: var(--t);
  opacity: .8;
}
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumb:hover { opacity: .85; border-color: rgba(0,203,149,.4); }
.gallery-thumb.active {
  border-color: var(--green);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(0,203,149,.25);
}

/* Animações de fade da imagem principal */
@keyframes galleryFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; transform: scale(.97); }
}
@keyframes galleryFadeIn {
  from { opacity: 0; transform: scale(1.02); }
  to   { opacity: 1; transform: scale(1); }
}
.gallery-fade-out {
  animation: galleryFadeOut .15s ease forwards;
}
.gallery-fade-in {
  animation: galleryFadeIn .25s cubic-bezier(.4,0,.2,1) forwards;
}

/* ============================================================
   LIGHTBOX — ZOOM FULLSCREEN
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

/* Botão fechar */
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 10;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}
.lightbox-close:hover {
  background: rgba(255,255,255,.18);
  transform: rotate(90deg) scale(1.1);
}

/* Setas do lightbox */
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}
.lightbox-nav--prev { left: 24px; }
.lightbox-nav--next { right: 24px; }
.lightbox-nav:hover {
  background: var(--green);
  border-color: var(--green);
  color: #000;
  transform: translateY(-50%) scale(1.08);
}

/* Container da imagem */
.lightbox-img-wrap {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  display: block;
  transition: opacity .18s ease;
}
.lightbox-img--fade { opacity: 0; }

/* Legenda */
.lightbox-caption {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  background: rgba(0,0,0,.45);
  padding: 5px 16px;
  border-radius: 100px;
  letter-spacing: .04em;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* Keyboard hint */
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox:not([hidden]) .lightbox-img-wrap {
  animation: lightboxIn .22s cubic-bezier(.4,0,.2,1);
}

/* ---- Modal Legal ---- */
.modal-legal-box {
  width: min(660px, 100%);
  max-height: 88vh;
}
.modal-legal-content {
  padding: 48px 40px;
  overflow-y: auto;
}
.modal-legal-content h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.modal-legal-content h2 i { color: var(--green); }
.modal-legal-content > p:first-of-type {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.modal-legal-content h3 {
  font-size: .92rem;
  color: var(--green);
  margin: 20px 0 8px;
  font-weight: 700;
}
.modal-legal-content p {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.modal-legal-content a { color: var(--green); }

/* ============================================================
   LGPD BAR
   ============================================================ */
.lgpd-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1900;
  background: var(--dark-2);
  border-top: 1px solid rgba(0,203,149,.2);
  box-shadow: 0 -8px 40px rgba(0,0,0,.5);
}
.lgpd-bar[hidden] { display: none; }

.lgpd-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.lgpd-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.lgpd-text i { color: var(--green); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.lgpd-text p { font-size: .84rem; color: var(--text-muted); line-height: 1.6; }

.lgpd-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1800;
  width: 44px; height: 44px;
  background: var(--green);
  color: #000;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  box-shadow: var(--shadow-green);
  transition: var(--t);
}
#scroll-top[hidden] { display: none; }
#scroll-top:hover { background: var(--green-d); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .diff-grid     { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cat-tabs      { grid-template-columns: 1fr 1fr; }
  .assist-grid   { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .modal-produto-layout { grid-template-columns: 1fr; }
  .modal-produto-left { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
  nav#main-nav,
  nav#main-nav-right { display: none; }
  #menu-toggle { display: flex; }
  .header-right .btn-header-cta { display: none; }
  .section { padding: 72px 0; }
  .header-inner { padding: 0 20px; grid-template-columns: auto 1fr auto; }
  .logo-wrap { justify-content: center; }
  .header-right { justify-content: flex-end; }
  .hero-content { padding: 100px 20px 80px; }
  .hero-content > p { font-size: .95rem; }
  .hero-stats { padding: 16px 20px; }
  .hero-stat { padding: 4px 16px; }
  .hero-stat strong { font-size: 1.4rem; }
  .diff-grid     { grid-template-columns: 1fr; }
  .cat-tabs      { grid-template-columns: 1fr; gap: 10px; margin-bottom: 32px; }
  .cat-tab       { padding: 16px 18px; gap: 12px; }
  .cat-tab-icon  { width: 42px; height: 42px; font-size: 1.1rem; }
  .cat-tab-text strong { font-size: .9rem; }
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-top    { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .modal-produto-box { max-height: 95vh; }
  .modal-legal-content { padding: 32px 24px; }
  .lgpd-bar-inner { flex-direction: column; align-items: flex-start; }
  .hero-stat-div { display: none; }
  .hero-stats { justify-content: space-around; }
  .modal-form-actions { flex-direction: column; }
  .modal-form-actions .btn-primary,
  .modal-form-actions .btn-whatsapp { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-primary.btn-lg, .btn-ghost.btn-lg { width: 100%; justify-content: center; }
  .contact-form { padding: 24px; }
  .modal-produto-right { padding: 24px; }
  /* Galeria mobile */
  .gallery-thumb { width: 54px; height: 54px; }
  /* Lightbox mobile */
  .lightbox-nav { width: 40px; height: 40px; font-size: .85rem; }
  .lightbox-nav--prev { left: 10px; }
  .lightbox-nav--next { right: 10px; }
  .lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; }
  .lightbox-img { max-width: 96vw; max-height: 75vh; }
  .lightbox-caption { font-size: .7rem; padding: 4px 12px; white-space: normal; text-align: center; max-width: 80vw; }
}

/* ============================================================
   GALERIA — RESPONSIVO TABLET
   ============================================================ */
@media (max-width: 768px) {
  /* Galeria mobile: controles sempre visíveis (sem hover) */
  .gallery-zoom-btn { opacity: 1; }
  .gallery-nav { opacity: 1; }
  /* Setas menores no mobile */
  .gallery-nav { width: 26px; height: 26px; font-size: .65rem; }
  .gallery-zoom-btn { width: 30px; height: 30px; font-size: .85rem; }
  /* Thumbs scroll horizontal */
  .gallery-thumbs { flex-wrap: nowrap; padding-bottom: 6px; }
  /* Lightbox setas mais afastadas das bordas */
  .lightbox-nav--prev { left: 8px; }
  .lightbox-nav--next { right: 8px; }
}
