/* ========================================================================
   MANGAI DISTRIBUIDORA — Design System
   Professional institutional website
   ======================================================================== */

/* ── Google Fonts ─────────────────────────────────────────────────────── */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap'); */

/* ── CSS Variables ────────────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --green-900: #0D1B0E;
  --green-800: #14261A;
  --green-700: #1B5E20;
  --green-600: #2E7D32;
  --green-500: #4CAF50;
  --green-400: #66BB6A;
  --green-100: #E8F5E9;

  --orange-700: #E65100;
  --orange-600: #F57C00;
  --orange-500: #FF9800;
  --orange-400: #FFB74D;
  --orange-100: #FFF3E0;

  /* Neutrals */
  --dark-bg: #0A0F0B;
  --dark-surface: #111A13;
  --dark-card: #1A2A1C;
  --cream: #F5F0E8;
  --cream-light: #FAF8F3;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #6B7B6E;
  --text-light: #E8EDE9;
  --text-cream: #D4CFC6;

  /* Glass */
  --glass-bg: rgba(13, 27, 14, 0.72);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 24px;

  /* Spacing */
  --section-py: 120px;
  --container-max: 1280px;
  --container-px: 24px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
  --shadow-glow-green: 0 0 40px rgba(76, 175, 80, 0.15);
  --shadow-glow-orange: 0 0 40px rgba(255, 152, 0, 0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-base: 400ms var(--ease-out);
  --transition-slow: 600ms var(--ease-out);
}

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

::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

html,
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.back-to-top {
  position: fixed;
  bottom: 108px;
  right: 40px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 12px, 0);
  transition: opacity var(--transition-base), visibility var(--transition-base),
    transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.back-to-top.visible:hover {
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 8px 28px rgba(46, 125, 50, 0.45);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: clip;
}

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

video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* ── Typography ───────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange-500);
  display: inline-block;
}

.section-title {
  margin-bottom: 20px;
}

.section-desc {
  max-width: 640px;
  font-size: 1.1rem;
}

.bubble-tail-mobile {
  display: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* ── Container ────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-fast);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #98ee05, var(--green-700));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--green-600);
  border: 2px solid var(--green-600);
}

.btn-secondary:hover {
  background: var(--green-600);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245, 124, 0, 0.3);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 124, 0, 0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  font-size: 1.05rem;
  padding: 16px 40px;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-gallery-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: var(--white);

  /* Liquid Glass */
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.06) 50%,
      rgba(255, 255, 255, 0.12) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 -1px 0 rgba(0, 0, 0, 0.1) inset;
  transition: all var(--transition-base);
}

/* Reflexo interno */
.btn-gallery-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.0) 100%);
  border-radius: 100px 100px 0 0;
  pointer-events: none;
}

/* Brilho no hover */
.btn-gallery-glass::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-gallery-glass:hover::after {
  opacity: 1;
}

.btn-gallery-glass:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 -1px 0 rgba(0, 0, 0, 0.15) inset;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-gallery-glass:active {
  transform: translateY(0) scale(0.98);
}

.btn-gallery-glass svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Header (Liquid Glass) ────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  background: linear-gradient(180deg, rgba(13, 27, 14, 0.65), rgba(10, 18, 12, 0.55));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
  will-change: transform;
  transform: translateZ(0);
}

.header::after {
  content: '';
  position: absolute;
  inset: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03) 50%, transparent);
  pointer-events: none;
}

.header.scrolled {
  background: linear-gradient(180deg, rgba(13, 27, 14, 0.55), rgba(10, 18, 12, 0.45));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 45px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.header-logo span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.header-logo span em {
  font-style: normal;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--text-cream);
  display: block;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-cream);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-500);
  transition: width var(--transition-base);
  border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.portal-mobile {
  display: none;
}

/* Portal Dropdown */
.portal-dropdown {
  position: relative;
  display: inline-flex;
  width: fit-content;
}

.portal-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portal-btn:hover {
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.4);
  transform: translateY(-1px);
}

.portal-btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.portal-dropdown.open .portal-btn svg {
  transform: rotate(180deg);
}

.portal-menu {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-fast);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.portal-dropdown.open .portal-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.portal-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.portal-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.portal-menu a svg {
  width: 20px;
  height: 20px;
  color: var(--green-400);
}

.portal-menu-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 4px 0;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero Section ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-bg);
}

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

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.3);
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 15, 11, 0.5) 0%,
      rgba(10, 15, 11, 0.3) 50%,
      rgba(10, 15, 11, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: var(--container-max);
  padding: 100px var(--container-px) 60px;
  width: 100%;
}

.hero-text {
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}


.hero-maia {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}


.hero-maia-img {
  height: clamp(480px, 50vw, 650px);
  width: auto;
  max-width: 500px;
  object-fit: contain;
  aspect-ratio: 359 / 580;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
  animation: gentleFloat 6s ease-in-out infinite;
  flex-shrink: 0;
}


.speech-bubble {
  align-self: flex-start;
  margin-top: 60px;
  margin-right: -20px;
  order: -1;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-bottom-right-radius: 8px;
  padding: 20px 24px;
  max-width: clamp(200px, 20vw, 280px);
  box-shadow: var(--shadow-lg);
  animation: bubbleIn 0.8s var(--ease-spring) 1s both;
  position: relative;
}

.speech-bubble p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

.speech-bubble p strong {
  color: var(--green-700);
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: 24px;
  right: -12px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 14px solid var(--white);
  border-bottom: 10px solid transparent;
}

.hero-text {
  text-align: left;
  max-width: 500px;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  color: var(--text-cream);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-cream);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-cream), transparent);
}

/* ── About Section ────────────────────────────────────────────────────── */
.about {
  padding: var(--section-py) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

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

.about-content .section-title {
  color: #0D4D3C;
}

.about-narrative {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.9;
}

.about-narrative strong {
  color: var(--green-700);
  font-weight: 600;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}

.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.value-card-icon.green {
  background: var(--green-100);
  color: var(--green-700);
}

.value-card-icon.orange {
  background: var(--orange-100);
  color: var(--orange-700);
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--green-900);
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-maia {
  height: 500px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  animation: gentleFloat 6s ease-in-out infinite;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ── Section Divider ──────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════════
   AJUSTE DE POSIÇÃO DA BARRA DIVISÓRIA
   ═══════════════════════════════════════════════════════════════════════
   A barra usa margens negativas para sobrepor as duas seções vizinhas:
   metade dela entra na seção de cima (cream), metade na seção de baixo (dark).

   • --divider-lift  → quanto a barra entra na seção SUPERIOR (cream).
   • --divider-drop  → quanto a barra entra na seção INFERIOR  (dark).

   Para PUXAR PARA BAIXO (mais barra na seção escura): AUMENTE --divider-drop
                                                        e/ou diminua --divider-lift.
   Para PUXAR PARA CIMA  (mais barra na seção clara):   AUMENTE --divider-lift
                                                        e/ou diminua --divider-drop.
   Valores iguais = metade em cada seção (padrão atual).
   ═══════════════════════════════════════════════════════════════════════ */
.section-divider {
  --divider-lift: 1.2vw;
  --divider-drop: 2.03vw;

  width: 100%;
  margin-top: calc(var(--divider-lift) * -1);
  margin-bottom: calc(var(--divider-drop) * -1);
  padding: 0;
  line-height: 0;
  font-size: 0;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

/* Divisor específico do FAQ — ajuste aqui sem afetar o outro */
.section-divider--faq {
  --divider-lift: 0vw;
  --divider-drop: 3.1vw;
}

.section-divider img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
  user-select: none;
}

/* Mobile: dá "zoom" no padrão para não ficar fino demais */
@media (max-width: 768px) {
  .section-divider {
    --divider-lift: 6px;
    --divider-drop: 28px;
    height: 28px;
    overflow: hidden;
  }

  .section-divider--faq {
    --divider-lift: 0px;
    --divider-drop: 30px;
  }

  .section-divider img {
    width: auto;
    height: 100%;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .section-divider {
    height: 24px;
    --divider-lift: 0px;
    --divider-drop: 24px;
  }
}

/* ── Video Section ────────────────────────────────────────────────────── */
.video-section {
  background: #1B7059;
  padding: 80px 0;
  position: relative;
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16 / 9;
  max-width: 1000px;
  margin: 0 auto;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-section .section-label,
.video-section .section-title {
  text-align: center;
  color: var(--white);
}

.video-section .section-label {
  justify-content: center;
}

.video-section .section-desc {
  text-align: center;
  color: var(--text-cream);
  margin: 0 auto 40px;
}

/* ── Gallery Section ──────────────────────────────────────────────────── */
.gallery {
  padding: var(--section-py) 0;
  background: #013124;
  position: relative;
}

.gallery .section-label,
.gallery .section-title {
  color: var(--white);
}

.gallery .section-title {
  text-align: center;
}

.gallery .section-label {
  text-align: center;
  justify-content: center;
}

.gallery .section-desc {
  color: var(--text-cream);
  text-align: center;
  margin: 0 auto 50px;
}

.gallery-tabs {
  display: flex;
  gap: 4px;
  width: fit-content;
  margin: 0 auto 40px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 30px rgba(0, 0, 0, 0.4);
}

.gallery-tab {
  padding: 10px 26px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: none;
  transition: color 0.25s ease,
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.2s ease;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.gallery-tab:hover:not(.active) {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.05);
}

.gallery-tab.active {
  background: linear-gradient(135deg, #7EC304 0%, #4CAF50 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(126, 195, 4, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.gallery-tab:active {
  transform: scale(0.97);
}

/* Featured Video */
.gallery-featured {
  margin-bottom: 40px;
}

.featured-video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.featured-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-video-card .featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange-600);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

/* Photo / Video Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--dark-card);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--transition-fast);
}

.gallery-item:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--white);
}

.gallery-item .play-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green-700);
  margin-left: 3px;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── Lightbox ─────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  backdrop-filter: blur(20px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* ── Full Gallery Modal ───────────────────────────────────────────────── */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: #262626;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-modal-header {
  position: sticky;
  top: 0;
  background: rgba(1, 49, 36, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: 20px 0;
  z-index: 10;
}

.gallery-modal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-modal-header h3 {
  color: var(--white);
}

.gallery-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.gallery-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  padding: 40px 0 80px;
}

.gallery-modal-grid .gallery-item {
  aspect-ratio: 1;
}

/* ── Coverage Map Section ─────────────────────────────────────────────── */
.coverage {
  padding: var(--section-py) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

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

.coverage-content .section-title {
  color: #0D4D3C;
}

.coverage-states {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.state-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
}

.state-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}

.state-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-600);
  flex-shrink: 0;
}

.state-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-900);
}

.coverage-map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.brazil-map {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.brazil-map svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}

.brazil-map-accurate {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

.brazil-map .state {
  fill: #D4E6D5;
  stroke: var(--white);
  stroke-width: 1;
  transition: all var(--transition-fast);
  cursor: default;
}

.brazil-map .state.active {
  fill: var(--green-600);
  stroke: var(--green-700);
  stroke-width: 1.5;
  filter: drop-shadow(0 2px 8px rgba(46, 125, 50, 0.3));
  cursor: pointer;
}

.brazil-map .state.active:hover {
  fill: var(--orange-500);
  filter: drop-shadow(0 4px 16px rgba(245, 124, 0, 0.4));
}

.map-tooltip {
  position: absolute;
  background: var(--dark-card);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 5;
  white-space: nowrap;
}

.map-tooltip.visible {
  opacity: 1;
}

.coverage-maia {
  position: absolute;
  bottom: -10px;
  right: -20px;
  height: 280px;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

/* ── Products Section ─────────────────────────────────────────────────── */
.products {
  padding: var(--section-py) 0;
  background: #1B7059;
  position: relative;
  overflow: hidden;
}

.products .section-label,
.products .section-title {
  color: var(--white);
  text-align: center;
}

.products .section-label {
  justify-content: center;
}

.products .section-desc {
  text-align: center;
  color: var(--text-cream);
  margin: 0 auto 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.product-card {
  background: #072D22;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(126, 195, 4, 0.14);
  transition: all var(--transition-base);
  perspective: 1000px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.product-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 32px rgba(126, 195, 4, 0.12);
  border-color: rgba(126, 195, 4, 0.35);
}

.product-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-img img {
  transform: scale(1.1);
}

/* Selo de exclusividade Mangai (sobre imagens de produto) */
.product-card-img .product-exclusive-seal,
.product-exclusive-seal {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 52px;
  height: 52px;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: none;
}
.product-card:hover .product-exclusive-seal {
  transform: none;
}

/* Selo-alça — sobressai para fora do card no canto superior esquerdo.
   Aplica-se a qualquer .product-card.is-exclusive (landing e catálogo). */
.product-card.is-exclusive {
  overflow: visible;
  position: relative;
}
.product-card.is-exclusive > .product-exclusive-seal {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 72px;
  height: 72px;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
  transition: none;
}
/* Preserva o recorte arredondado da imagem, já que o card agora é overflow:visible */
.product-card.is-exclusive .product-card-img {
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

.product-card-body {
  padding: 20px;
}

.product-card-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #F0F5E8;
  margin-bottom: 4px;
}

.product-card-body p {
  font-size: 0.8rem;
  color: rgba(240, 245, 232, 0.65);
}

.products-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.products-maia {
  position: absolute;
  bottom: 0;
  right: 5%;
  height: 320px;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));

  pointer-events: none;
}

/* ── Social Proof Section ─────────────────────────────────────────────── */
.social-proof {
  padding: var(--section-py) 0;
  background: var(--cream);
  position: relative;
}

.social-proof-header {
  text-align: center;
  margin-bottom: 60px;
}

.social-proof-header .section-title {
  color: #0D4D3C;
}

.social-proof-header .section-label {
  justify-content: center;
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.rating-number {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
}

.rating-details {
  text-align: left;
}

.rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.rating-stars svg {
  width: 24px;
  height: 24px;
  color: var(--orange-500);
  fill: var(--orange-500);
}

.rating-stars svg.half {
  position: relative;
}

.rating-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Animação das estrelas ── */
.rating-stars {
  align-items: center;
}

.star-item {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.star-bg,
.star-fg {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
}

.star-bg polygon {
  fill: none;
  stroke: var(--orange-500);
  stroke-width: 1.5px;
}

.star-fg polygon {
  fill: var(--orange-500);
}

.star-fg {
  clip-path: inset(0 100% 0 0);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--green-100);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-card .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-card .stars svg {
  width: 16px;
  height: 16px;
  color: var(--orange-500);
  fill: var(--orange-500);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  overflow: hidden;
  border: 2px solid rgba(76, 175, 80, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-author-info h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-900);
}

.testimonial-author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Google Review Card */
.google-review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
  transition: all var(--transition-base);
}

.google-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.google-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.google-review-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 4px;
}

.google-review-info .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 6px;
}

.google-review-info .stars svg {
  width: 18px;
  height: 18px;
  color: var(--orange-500);
  fill: var(--orange-500);
}

.google-review-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.google-review-info a {
  color: var(--green-600);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.google-review-info a:hover {
  color: var(--green-700);
}

.clients-badge {
  text-align: center;
  margin-top: 48px;
}

.clients-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  padding: 16px 36px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 32px rgba(46, 125, 50, 0.3);
}

.clients-badge-inner svg {
  width: 24px;
  height: 24px;
}

/* ── Clients CTA Card (prova social + chamada unificadas) ────────────── */
.clients-cta-card-wrap {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

.clients-cta-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  max-width: 720px;
  padding: 22px 36px;
  border-radius: 100px;
  background: linear-gradient(135deg, #98ee05, var(--green-700));
  color: var(--white);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 8px 32px rgba(46, 125, 50, 0.3);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.clients-cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-fast);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent);
}

.clients-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(46, 125, 50, 0.42);
}

.clients-cta-card:hover::after {
  opacity: 1;
}

.clients-cta-card:hover .clients-cta-card__arrow {
  transform: translateX(6px);
}

.clients-cta-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.clients-cta-card__icon svg {
  width: 26px;
  height: 26px;
}

.clients-cta-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  line-height: 1.3;
}

.clients-cta-card__text strong {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.clients-cta-card__text span {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.95;
}

.clients-cta-card__arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
}

.clients-cta-card__arrow svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 640px) {
  .clients-cta-card-wrap {
    margin-top: 40px;
  }

  .clients-cta-card {
    gap: 14px;
    padding: 18px 22px;
    border-radius: 28px;
  }

  .clients-cta-card__icon {
    width: 40px;
    height: 40px;
  }

  .clients-cta-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .clients-cta-card__text strong {
    font-size: 1rem;
  }

  .clients-cta-card__text span {
    font-size: 0.85rem;
  }

  .clients-cta-card__arrow {
    width: 28px;
    height: 28px;
  }

  .clients-cta-card__arrow svg {
    width: 18px;
    height: 18px;
  }
}

/* ── Client Logo Slider ──────────────────────────────────────────────── */
.clients-slider-section {
  margin-top: 48px;
  text-align: center;
}

.clients-slider-section .section-label {
  justify-content: center;
  margin-bottom: 32px;
}

.clients-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.clients-slider-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: clientsScroll 40s linear infinite;
}

.clients-slider-track:hover {
  animation-play-state: paused;
}

.clients-slider-item {
  flex-shrink: 0;
  width: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.clients-slider-item:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.clients-slider-item--zoom img {
  transform: scale(1.8);
}

.clients-slider-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

.clients-slider-cta {
  margin-top: 40px;
}

@keyframes clientsScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .clients-slider-section {
    margin-top: 32px;
  }

  .clients-slider-track {
    gap: 24px;
    animation-duration: 30s;
  }

  .clients-slider-item {
    width: 130px;
    height: 80px;
    padding: 10px;
  }

  .clients-slider-cta {
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .clients-slider-item {
    width: 110px;
    height: 70px;
    padding: 8px;
  }

  .clients-slider-track {
    gap: 20px;
    animation-duration: 25s;
  }
}

/* ── Location Section ─────────────────────────────────────────────────── */
.location {
  padding: var(--section-py) 0;
  background: #013124;
  position: relative;
  overflow: hidden;
}

.location-maia {
  display: none;
  position: absolute;
  bottom: 17%;
  right: 12%;
  height: 380px;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

@media (min-width: 1025px) {
  .location-maia {
    display: block;
  }
}

.location .section-label,
.location .section-title {
  color: var(--white);
  text-align: center;
}

.location .section-label {
  justify-content: center;
}

.location .section-desc {
  color: var(--text-cream);
  text-align: center;
  margin: 0 auto 48px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16 / 10;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-brand-card {
  position: absolute;
  top: 16px;
  left: 16px;
  width: calc(100% - 32px);
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(13, 27, 14, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.08);
  color: #1a1a1a;
  z-index: 2;
}

.map-brand-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-brand-card-logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-brand-card-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: transparent;
}

.map-brand-card-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
  line-height: 1.25;
}

.map-brand-card-text strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #0D1B0E;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-brand-card-text span {
  font-size: 0.7rem;
  color: #5b6b5d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.map-brand-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 12px;
  background: rgba(27, 94, 32, 0.08);
  color: #1B5E20;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2px;
  text-decoration: none;
  border: 1px solid rgba(27, 94, 32, 0.18);
  border-radius: 8px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  cursor: pointer;
}

.map-brand-card-btn svg {
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.map-brand-card-btn:hover {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  border-color: rgba(27, 94, 32, 0.6);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(27, 94, 32, 0.35), 0 0 0 3px rgba(46, 125, 50, 0.12);
  transform: translateY(-1px);
}

.map-brand-card-btn:hover svg {
  opacity: 1;
  transform: translateX(2px);
}

.map-brand-card-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(27, 94, 32, 0.3);
}

@media (max-width: 480px) {
  .map-brand-card {
    top: 12px;
    left: 12px;
    max-width: 240px;
    padding: 10px 12px;
    gap: 8px;
  }
  .map-brand-card-logo,
  .map-brand-card-logo img {
    width: 34px;
    height: 34px;
  }
  .map-brand-card-text strong { font-size: 0.85rem; }
  .map-brand-card-text span   { font-size: 0.66rem; }
  .map-brand-card-btn {
    font-size: 0.74rem;
    padding: 8px 12px;
  }
}

.location-info {
  color: var(--text-light);
}

.location-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.location-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(76, 175, 80, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-400);
  font-size: 1.2rem;
}

.location-item-icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.location-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.location-item p {
  font-size: 0.9rem;
  color: var(--text-cream);
  line-height: 1.6;
}

/* ── Contact Section ──────────────────────────────────────────────────── */
.contact {
  padding: var(--section-py) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

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

.contact-content .section-title {
  color: #1B7059;
}

.contact-content p {
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-method:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon.whatsapp {
  background: #E8F5E9;
  color: #128C7E;
}

.contact-method-icon.instagram {
  background: linear-gradient(135deg, #F3E5F5, #FCE4EC);
  color: #E1306C;
}

.contact-method h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-900);
}

.contact-method p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.contact-maia {
  height: 460px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* ── FAQ Section ──────────────────────────────────────────────────────── */
.faq {
  padding: var(--section-py) 0;
  background: #1B7059;
}

.faq .section-label,
.faq .section-title {
  color: var(--white);
  text-align: center;
}

.faq .section-label {
  justify-content: center;
}

.faq .section-desc {
  color: var(--text-cream);
  text-align: center;
  margin: 0 auto 50px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #072D22;
  border: 1px solid rgba(126, 195, 4, 0.14);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.faq-item:hover {
  border-color: rgba(126, 195, 4, 0.28);
  transform: translateY(-1px);
}

.faq-item.active {
  border-color: rgba(126, 195, 4, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), 0 0 24px rgba(126, 195, 4, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #F0F5E8;
  transition: color var(--transition-fast);
}

.faq-item.active .faq-question h3 {
  color: #7EC304;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(126, 195, 4, 0.12);
  border: 1px solid rgba(126, 195, 4, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: #7EC304;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, #7EC304, #4CAF50);
  border-color: transparent;
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer-inner {
  padding: 0 28px 22px;
}

.faq-answer-inner p {
  font-size: 0.95rem;
  color: var(--text-cream);
  line-height: 1.8;
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.footer {
  background: #262626;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-brand-logo img {
  height: 70px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

.footer-brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-cream);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-cream);
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-social a:hover {
  background: var(--green-700);
  color: var(--white);
  transform: translateY(-2px);
  border-color: var(--green-600);
}

.footer-social a.social-instagram:hover {
  background: radial-gradient(circle at 30% 110%, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  border-color: transparent;
}

.footer-col h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #7EC304;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-cream);
  padding: 6px 0;
  transition: all var(--transition-fast);
}

.footer-col a:hover {
  color: var(--green-400);
  transform: translateX(4px);
}

/* ── Footer Seals ─────────────────────────────────────────────────────── */
.footer-seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(24px, 4vw, 36px) 0 clamp(20px, 3vw, 28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-seals-brand {
  flex-shrink: 0;
}

.footer-mangainamesa {
  height: clamp(72px, 10vw, 108px);
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-seals-certs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
  padding-right: 80px;
}

.seal {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 12px);
  padding: clamp(10px, 1.8vw, 14px) clamp(12px, 2vw, 18px);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  flex: 0 1 auto;
  min-width: 0;
}

.seal:hover {
  transform: translateY(-3px);
  border-color: rgba(76, 175, 80, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

/* ISO circular seals */
.seal-iso {
  position: relative;
  width: clamp(92px, 14vw, 120px);
  height: clamp(92px, 14vw, 120px);
  padding: 0;
  border: none;
  background: transparent;
  justify-content: center;
  border-radius: 50%;
  flex: 0 0 auto;
}

.seal-iso:hover {
  background: transparent;
  border: none;
  transform: translateY(-3px) rotate(4deg);
}

.seal-iso-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: seal-spin 24s linear infinite;
}

.seal-iso:hover .seal-iso-ring {
  animation-duration: 10s;
}

@keyframes seal-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.seal-ring-outer,
.seal-ring-inner {
  fill: none;
  stroke: var(--green-400, #4CAF50);
  stroke-width: 1.2;
  opacity: 0.75;
}

.seal-ring-inner {
  stroke-dasharray: 2 3;
  opacity: 0.55;
}

.seal-ring-text {
  fill: var(--green-400, #4CAF50);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: 'Inter', system-ui, sans-serif;
}

.seal-core {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  color: var(--text-primary, #fff);
}

.seal-core-top {
  font-size: clamp(0.58rem, 1.2vw, 0.7rem);
  font-weight: 600;
  letter-spacing: clamp(2px, 0.4vw, 3px);
  color: var(--green-400, #4CAF50);
}

.seal-core-main {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 800;
  margin: 4px 0;
  color: #fff;
}

.seal-core-bot {
  font-size: clamp(0.48rem, 1vw, 0.55rem);
  font-weight: 700;
  letter-spacing: clamp(1.2px, 0.3vw, 2px);
  color: #a8a8a8;
}

/* Google Safe seal */
.seal-google-shield {
  color: var(--green-400, #4CAF50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seal-google-shield svg {
  width: clamp(30px, 4.5vw, 38px);
  height: auto;
}

.seal-google-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.seal-google-brand {
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.g-blue {
  color: #4285F4;
}

.g-red {
  color: #EA4335;
}

.g-yellow {
  color: #FBBC05;
}

.g-green {
  color: #34A853;
}

.seal-google-label {
  font-size: clamp(0.72rem, 1.5vw, 0.85rem);
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
}

.seal-google-sub {
  font-size: clamp(0.56rem, 1.1vw, 0.65rem);
  color: #a8a8a8;
  letter-spacing: 0.5px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #a8a8a8;
}

.footer-legal-links {
  margin-top: 8px;
}
.footer-legal-links a {
  color: #a8a8a8;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover {
  color: var(--green-400);
}
.footer-legal-links span {
  opacity: 0.5;
}

/* ── WhatsApp Float ───────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #128C7E, #25D366);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: pulseGlow 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: var(--white);
  fill: var(--white);
}

/* ── Animations ───────────────────────────────────────────────────────── */
@keyframes bubbleIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes gentleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 1;
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 48px rgba(37, 211, 102, 0.6);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-out);
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 80ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 160ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 240ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: 320ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: 400ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible>*:nth-child(7) {
  transition-delay: 480ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible>*:nth-child(8) {
  transition-delay: 560ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible>*:nth-child(9) {
  transition-delay: 640ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible>*:nth-child(10) {
  transition-delay: 720ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible>*:nth-child(11) {
  transition-delay: 800ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible>*:nth-child(12) {
  transition-delay: 880ms;
  opacity: 1;
  transform: translateY(0);
}

/* Garante que todos os filhos além do 12º também ficam visíveis */
.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ── Products Page Specific ───────────────────────────────────────────── */
.products-page {
  background: #0D4D3C;
  min-height: 100vh;
}

.products-page-header {
  padding-top: 120px;
  padding-bottom: 40px;
  text-align: center;
}

.products-page-header h1 {
  color: var(--white);
}

.products-page-header p {
  color: var(--text-cream);
  max-width: 600px;
  margin: 16px auto 32px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9df309;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 32px;
  transition: all var(--transition-fast);
}

.back-link:hover {
  color: var(--green-500);
  transform: translateX(-4px);
}

.back-link svg {
  width: 20px;
  height: 20px;
}

.products-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding-bottom: 80px;
  min-width: 0;
}

.products-full-grid .product-card {
  transition: all var(--transition-base);
}

/* ── Filtros de categoria (chips) — harmonia com o verde Mangai ──────── */
.catalog-filters-public {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 28px;
  padding: 0 8px;
}
.filter-chip-public {
  padding: 9px 18px;
  background: rgba(126, 195, 4, 0.08);
  border: 1px solid rgba(126, 195, 4, 0.3);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}
.filter-chip-public:hover {
  background: rgba(126, 195, 4, 0.18);
  border-color: rgba(126, 195, 4, 0.55);
  color: #ffffff;
}
.filter-chip-public.active {
  background: linear-gradient(135deg, #98ee05, var(--green-600));
  color: #0D1B0E;
  border-color: #98ee05;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(152, 238, 5, 0.35);
}
.filter-chip-public-exclusive {
  background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
  color: #854d0e !important;
  border-color: #d4a017 !important;
  font-weight: 700 !important;
}
.filter-chip-public-exclusive:hover {
  background: linear-gradient(135deg, #fde68a, #facc15) !important;
  border-color: #b8860b !important;
  color: #713f12 !important;
}
.filter-chip-public-exclusive.active {
  background: linear-gradient(135deg, #d4a017, #b8860b) !important;
  color: #ffffff !important;
  border-color: #8b6914 !important;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.45) !important;
}

/* Empty state (quando filtro não retorna produtos) */
.products-empty-state {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

@media (max-width: 480px) {
  .catalog-filters-public { gap: 6px; }
  .filter-chip-public { padding: 7px 12px; font-size: 0.78rem; }
}

.catalog-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 900;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .header-inner {
    height: 70px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark-bg);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right var(--transition-base);
    z-index: 999;
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--white);
  }

  .menu-toggle {
    display: flex;
    z-index: 1000;
  }

  .portal-dropdown {
    display: none;
  }

  .nav-links .portal-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }

  .nav-links .portal-mobile a {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding-top: 100px;
    padding-bottom: 40px;
  }

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

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

  .hero-maia-img {
    width: min(55vw, 420px);
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .hero-maia {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
  }

  .speech-bubble {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 16px;
    max-width: min(280px, 70vw);
    order: -1;
  }

  .speech-bubble::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 20px solid var(--white);
  }

  .about-grid,
  .coverage-grid,
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual,
  .contact-visual {
    order: -1;
  }

  .about-maia,
  .contact-maia {
    height: 350px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

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

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .social-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .coverage-maia {
    display: none;
  }

  .products-maia {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --container-px: 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .header-logo span {
    display: block;
    font-size: 1rem;
  }

  .hero-maia-img {
    width: min(75vw, 420px);
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .hero-maia {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
  }

  .speech-bubble {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin: 0 auto 16px;
    max-width: min(260px, 80vw);
    padding: 14px 18px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    order: -1;
  }

  .speech-bubble p {
    font-size: 0.82rem;
  }

  .speech-bubble::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 20px solid var(--white);
  }

  .bubble-tail-mobile {
    display: none;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 20px 24px;
  }

  .stat-number {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 1;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .products-cta {
    flex-direction: column;
    align-items: center;
  }

  .social-proof-grid {
    grid-template-columns: 1fr;
  }

  .coverage-states {
    grid-template-columns: 1fr;
  }

  .google-review-card {
    flex-direction: column;
    text-align: center;
  }

  .rating-display {
    flex-direction: column;
  }

  .rating-details {
    text-align: center;
  }

  .rating-stars,
  .google-review-info .stars {
    justify-content: center;
  }

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

  .footer-seals {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 28px 0 24px;
  }

  .footer-seals-brand {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer-mangainamesa {
    height: clamp(64px, 14vw, 96px);
    max-width: 90%;
  }

  .footer-seals-certs {
    justify-content: center;
    padding-right: 0;
    width: 100%;
    gap: 16px;
  }

  .seal-iso {
    width: clamp(84px, 22vw, 108px);
    height: clamp(84px, 22vw, 108px);
  }

  .seal-google {
    flex: 0 1 auto;
    max-width: 100%;
  }

  .gallery-tabs {
    flex-wrap: wrap;
  }

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

  .map-container {
    aspect-ratio: 4 / 3;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .products-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {


  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .footer-seals {
    gap: 20px;
    padding: 24px 0 20px;
  }

  .footer-mangainamesa {
    height: clamp(56px, 16vw, 80px);
  }

  .footer-seals-certs {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .seal-iso {
    width: clamp(96px, 30vw, 120px);
    height: clamp(96px, 30vw, 120px);
  }

  .seal-google {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .btn-sm {
    width: auto;
  }

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

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

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .back-to-top {
    right: 24px;
    bottom: 84px;
  }

  .products-full-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .product-card-body {
    padding: 12px;
  }

  .product-card-body h3 {
    font-size: 0.8rem;
  }
}

/* ── Utility ──────────────────────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

/* ── Mobile Nav Overlay ───────────────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ══ Celebração 5.0 ══════════════════════════════════════════ */
@keyframes rating-bounce {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.4);
  }

  50% {
    transform: scale(0.88);
  }

  70% {
    transform: scale(1.15);
  }

  85% {
    transform: scale(0.97);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes number-gold {
  0% {
    color: var(--green-700);
    text-shadow: none;
  }

  10% {
    color: #d4a017;
    text-shadow: 0 0 18px rgba(212, 160, 23, .75), 0 0 40px rgba(212, 160, 23, .35);
  }

  65% {
    color: #f0bc1a;
    text-shadow: 0 0 28px rgba(240, 188, 26, .9), 0 0 60px rgba(240, 188, 26, .4);
  }

  100% {
    color: var(--green-700);
    text-shadow: none;
  }
}

@keyframes stars-gold {
  0% {
    filter: none;
  }

  10% {
    filter: drop-shadow(0 0 5px rgba(212, 160, 23, .85)) brightness(1.25);
  }

  65% {
    filter: drop-shadow(0 0 10px rgba(255, 200, 0, 1)) brightness(1.5);
  }

  100% {
    filter: none;
  }
}

.rating-celebrate {
  animation: rating-bounce 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform-origin: center;
}

.rating-number-gold {
  animation: number-gold 0.8s ease-in-out forwards;
}

.rating-stars-gold {
  animation: stars-gold 0.8s ease-in-out forwards;
}