/* =========================================
   LIMPA MAIS — Design System
   ========================================= */
:root {
  --primary: #2b59ff;
  --primary-dark: #1e40af;
  --secondary: #00b4d8;
  --accent: #0077b6;
  --green-wa: #25d366;
  --green-wa-dark: #1da851;
  --text-main: #0d1b2a;
  --text-muted: #4b5f78;
  --text-light: #8899aa;
  --bg-body: #f4f7ff;
  --bg-white: #ffffff;
  --bg-alternate: #fcfdfe;
  --border: #dde4f0;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(43, 89, 255, 0.08);
  --shadow-lg: 0 12px 40px rgba(43, 89, 255, 0.14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

/* Lenis smooth scroll support */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis-stopped {
  overflow: hidden;
}

.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='rotate(-45 200 200)'%3E%3Cpath d='M-100,50 Q-50,0 0,50 T100,50 T200,50 T300,50 T400,50 T500,50' stroke='%232b59ff' stroke-width='2' fill='none' opacity='0.04'/%3E%3Cpath d='M-100,150 Q-50,100 0,150 T100,150 T200,150 T300,150 T400,150 T500,150' stroke='%232b59ff' stroke-width='2' fill='none' opacity='0.04'/%3E%3Cpath d='M-100,250 Q-50,200 0,250 T100,250 T200,250 T300,250 T400,250 T500,250' stroke='%232b59ff' stroke-width='2' fill='none' opacity='0.04'/%3E%3Cpath d='M-100,350 Q-50,300 0,350 T100,350 T200,350 T300,350 T400,350 T500,350' stroke='%232b59ff' stroke-width='2' fill='none' opacity='0.04'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}

.caustics-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  /* Over everything but pointer-events: none */
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  overflow: hidden;
}

.caustic-layer {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='caustics'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.02' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 10 -5'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23caustics)' opacity='0.5'/%3E%3C/svg%3E");
  animation: causticMove 20s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.caustic-layer:nth-child(2) {
  animation: causticMove 15s linear infinite reverse;
  opacity: 0.5;
  transform: rotate(45deg) translate3d(0, 0, 0);
  will-change: transform;
}

@keyframes causticMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(100px, 100px, 0);
  }
}

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

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

/* ── Utilities ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.container-full {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--secondary);
  margin-bottom: 10px;
}

.highlight {
  color: var(--primary);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.section-sub {
  color: var(--text-muted);
  margin-top: 10px;
  font-size: 1rem;
}

/* ── Waves ── */
.waves-divider {
  position: absolute;
  width: 100%;
  height: 120px;
  min-height: 80px;
  max-height: 160px;
  z-index: -1;
  pointer-events: none;
}

.waves-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.waves-divider.bottom {
  bottom: -1px;
  left: 0;
}

.waves-divider.top {
  top: -1px;
  left: 0;
  transform: rotate(180deg);
}

.parallax>use {
  animation: move-forever 30s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 12s;
  opacity: 0.25;
}

.parallax>use:nth-child(2) {
  animation-delay: -4s;
  animation-duration: 16s;
  opacity: 0.45;
}

.parallax>use:nth-child(3) {
  animation-delay: -6s;
  animation-duration: 22s;
  opacity: 0.65;
}

.parallax>use:nth-child(4) {
  animation-delay: -8s;
  animation-duration: 28s;
  opacity: 1;
  filter: drop-shadow(0 -10px 15px rgba(0, 0, 0, 0.04));
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

@media (max-width: 768px) {
  .waves-divider {
    height: 70px;
    min-height: 70px;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  z-index: 11;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(26, 79, 196, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 79, 196, 0.35);
}

.btn-whatsapp {
  background: var(--green-wa);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--green-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  padding: 7px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  min-width: 0;
  overflow: hidden;
}

.logo-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(43, 89, 255, 0.2);
}

.logo-icon-svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  color: #fff;
  line-height: 1;
}

.logo-text-main {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-text-slogan {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  opacity: 0.9;
  white-space: nowrap;
}

/* Wavy lines animation */
.wave-path {
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  animation: waveMove 3s infinite linear;
}

@keyframes waveMove {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -20;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  /* Transparent state */
  transition: var(--transition);
}

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

/* Scrolled state links */
.navbar.scrolled .nav-links a {
  color: var(--text-main);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--primary);
  background: rgba(43, 89, 255, 0.08);
}

.nav-whatsapp {
  background: var(--green-wa) !important;
  color: #fff !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.nav-whatsapp:hover {
  background: var(--green-wa-dark) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--text-main);
}

/* =========================================
   HERO — PREMIUM
   ========================================= */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 64px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #040c1e 0%, #071528 45%, #0a1f3e 75%, #050e20 100%);
}

/* Animated glowing orbs */
.hero-bg-premium {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  animation: orbFloat 14s ease-in-out infinite alternate;
}

.hero-orb-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #2b59ff 0%, transparent 70%);
  top: -200px;
  right: -80px;
  animation-duration: 16s;
}

.hero-orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #00b4d8 0%, transparent 70%);
  bottom: -80px;
  left: -100px;
  animation-duration: 11s;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #7b2fff 0%, transparent 70%);
  top: 45%;
  left: 38%;
  animation-duration: 19s;
  animation-delay: -7s;
  opacity: 0.18;
}

@keyframes orbFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(30px, -40px) scale(1.1);
  }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  bottom: -20px;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  animation: particleDrift linear infinite;
  will-change: transform;
}

.hero-particles span:nth-child(1) {
  left: 10%;
  width: 3px;
  height: 3px;
  animation-duration: 18s;
  animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
  left: 25%;
  width: 2px;
  height: 2px;
  animation-duration: 22s;
  animation-delay: -4s;
  opacity: .4;
}

.hero-particles span:nth-child(3) {
  left: 40%;
  width: 4px;
  height: 4px;
  animation-duration: 16s;
  animation-delay: -8s;
}

.hero-particles span:nth-child(4) {
  left: 55%;
  width: 2px;
  height: 2px;
  animation-duration: 24s;
  animation-delay: -2s;
  opacity: .5;
}

.hero-particles span:nth-child(5) {
  left: 70%;
  width: 3px;
  height: 3px;
  animation-duration: 20s;
  animation-delay: -10s;
}

.hero-particles span:nth-child(6) {
  left: 85%;
  width: 2px;
  height: 2px;
  animation-duration: 14s;
  animation-delay: -5s;
  opacity: .3;
}

.hero-particles span:nth-child(7) {
  left: 15%;
  width: 5px;
  height: 5px;
  animation-duration: 28s;
  animation-delay: -12s;
  opacity: .15;
}

.hero-particles span:nth-child(8) {
  left: 60%;
  width: 3px;
  height: 3px;
  animation-duration: 19s;
  animation-delay: -7s;
}

.hero-particles span:nth-child(9) {
  left: 80%;
  width: 2px;
  height: 2px;
  animation-duration: 25s;
  animation-delay: -15s;
  opacity: .4;
}

.hero-particles span:nth-child(10) {
  left: 45%;
  width: 4px;
  height: 4px;
  animation-duration: 30s;
  animation-delay: -20s;
  opacity: .25;
}

.hero-particles span:nth-child(11) {
  left: 5%;
  width: 2px;
  height: 2px;
  animation-duration: 17s;
  animation-delay: -9s;
  opacity: .5;
}

.hero-particles span:nth-child(12) {
  left: 90%;
  width: 3px;
  height: 3px;
  animation-duration: 21s;
  animation-delay: -3s;
}

@keyframes particleDrift {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: .8;
  }

  100% {
    opacity: 0;
    transform: translate3d(50px, -115vh, 0) rotate(360deg);
  }
}

/* Hero inner — mobile-first single column */
.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px 40px;
  position: relative;
  z-index: 5;
  width: 100%;
}

/* Badge */
.hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(43, 89, 255, 0.12);
  border: 1px solid rgba(77, 139, 255, 0.35);
  backdrop-filter: blur(10px);
  color: #93b4ff;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 26px;
  animation: fadeDown .6s ease;
  width: fit-content;
}

.badge-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(37, 211, 102, 0);
  }

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

/* Hero title */
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  animation: fadeUp .6s .1s ease both;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #4d8bff 0%, #00e5ff 50%, #4d8bff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-title-sub {
  display: block;
  font-size: .55em;
  font-weight: 400;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .03em;
  margin-top: 6px;
}

/* Description */
.hero-description {
  color: rgba(255, 255, 255, .62);
  font-size: 1.05rem;
  max-width: 460px;
  line-height: 1.72;
  margin-bottom: 38px;
  animation: fadeUp .6s .2s ease both;
}

.hero-description strong {
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
}

/* CTA buttons */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp .6s .3s ease both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #2b59ff, #4d7eff);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 8px 32px rgba(43, 89, 255, .45), inset 0 1px 0 rgba(255, 255, 255, .12);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, .1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .45s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(43, 89, 255, .6);
}

.btn-hero-primary:hover::before {
  transform: translateX(100%);
}

.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: rgba(37, 211, 102, .12);
  border: 1.5px solid rgba(37, 211, 102, .45);
  color: #4dff91;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  backdrop-filter: blur(8px);
}

.btn-hero-whatsapp:hover {
  background: rgba(37, 211, 102, .25);
  border-color: rgba(37, 211, 102, .8);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .3);
}

/* Stats panel */
.hero-stats-premium {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px 8px;
  width: fit-content;
  animation: fadeUp .6s .4s ease both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 22px;
}

.hero-stat strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4d8bff, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 500;
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .08);
}

/* Visual / image */
.hero-visual {
  position: relative;
  animation: fadeUp .7s .2s ease both;
  z-index: 5;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: visible;
}

.hero-img-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(43, 89, 255, .35) 0%, transparent 68%);
  border-radius: 50%;
  filter: blur(18px);
  z-index: 0;
  animation: glowPulse 5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    opacity: .5;
    transform: scale(1);
  }

  to {
    opacity: .9;
    transform: scale(1.05);
  }
}

.hero-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, .6)) brightness(1.1) contrast(1);
}

/* Floating info cards — hidden on mobile by default */
.hero-fc {
  display: none;
  position: absolute;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 12px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.hero-fc-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #2b59ff, #00b4d8);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.hero-fc-1 {
  bottom: 30px;
  left: -24px;
  animation: floatCard 4s ease-in-out infinite alternate;
}

.hero-fc-2 {
  top: 150px;
  right: -24px;
  animation: floatCard 5s ease-in-out infinite alternate-reverse;
}

@keyframes floatCard {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

/* =========================================
   HERO MARQUEE
   ========================================= */
.hero-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 5;
  padding: 20px 0 30px;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
}

.marquee-item {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
  transition: all .3s ease;
}

.marquee-item:hover {
  border-color: rgba(77, 139, 255, .5);
  transform: scale(1.08);
}

.marquee-item.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
}

.marquee-item.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.marquee-item:hover.brand-logo img {
  transform: scale(1.1);
}

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

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


/* =========================================
   SOBRE
   ========================================= */
.sobre {
  padding: 64px 0;
  position: relative;
  z-index: 1;
}

.sobre::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-white);
  z-index: -2;
}

.sobre .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.sobre-img {
  position: relative;
}

.sobre-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.sobre-tag {
  position: absolute;
  top: 16px;
  right: 10px;
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.8rem;
  font-family: 'Outfit', sans-serif;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sobre-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.sobre-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.sobre-text .btn {
  margin-top: 8px;
}

/* =========================================
   PRODUTOS
   ========================================= */
.produtos {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.produtos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  z-index: -2;
}

/* Subtle gradients stay as a separate layer or on top of the bg-body */
.produtos::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  /* Above bg but below waves/content */
}

.produtos .section-header .label {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.produtos .section-header h2 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.produtos .section-header h2 .highlight {
  color: #e0f2fe;
  background: linear-gradient(120deg, #ffffff 0%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.produtos .section-header .section-sub {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.produtos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 10px;
}

.produto-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.produto-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}

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

.produto-info {
  padding: 22px;
}

.produto-cat {
  display: inline-block;
  background: var(--bg-body);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.produto-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.produto-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.btn-card {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.btn-card:hover {
  color: var(--primary-dark);
  gap: 8px;
}

.cta-card {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.cta-card-inner {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

.cta-icon {
  color: #fff;
  margin-bottom: 8px;
  opacity: 0.95;
  display: grid;
  place-items: center;
}

.cta-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.cta-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, .8);
}

/* =========================================
   DIFERENCIAIS
   ========================================= */
.diferenciais {
  padding: 64px 0;
  position: relative;
  z-index: 1;
}

.diferenciais::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-white);
  z-index: -2;
}

.dif-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.dif-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--bg-body);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.dif-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.dif-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(43, 89, 255, 0.1), rgba(0, 180, 216, 0.1));
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--primary);
  transition: var(--transition);
}

.dif-card:hover .dif-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  transform: scale(1.05);
}

.dif-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.dif-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* =========================================
   DEPOIMENTOS
   ========================================= */
.depoimentos {
  padding: 64px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
}

.depoimentos .section-header .label {
  color: rgba(255, 255, 255, 0.9);
}

.depoimentos .section-header h2 {
  color: #ffffff;
}

.depoimentos .section-header h2 .highlight {
  color: #a5f3fc;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.depoimento-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.depoimento-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.depoimento-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.depoimento-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.depoimento-user-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.depoimento-user-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-top: 2px;
}

.depoimento-stars {
  color: #ffb703;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.depoimento-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-style: italic;
  position: relative;
}

.depoimento-text::before {
  content: '“';
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.15);
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  padding: 64px 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  z-index: -2;
}

.cta-banner-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-banner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, .9);
  margin-bottom: 28px;
  font-size: 1.1rem;
}

/* =========================================
   LOCALIZAÇÃO
   ========================================= */
.localizacao {
  padding: 64px 0;
  position: relative;
  z-index: 1;
}

.localizacao::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-body);
  z-index: -2;
}

.localizacao::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.1;
}

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

.loc-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.loc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.loc-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
  color: var(--primary);
}

.loc-item strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.loc-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.loc-map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  position: relative;
  background: linear-gradient(135deg, #040c1e 0%, #071528 45%, #0a1f3e 75%, #050e20 100%);
  color: #fff;
  padding: 80px 0 0;
  overflow: hidden;
}

.footer .container {
  position: relative;
  z-index: 2;
}

/* Animated glowing orbs for Footer */
.footer-bg-premium {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  animation: orbFloat 14s ease-in-out infinite alternate;
}

.footer-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #2b59ff 0%, transparent 70%);
  top: -100px;
  right: -50px;
  animation-duration: 16s;
}

.footer-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #00b4d8 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  animation-duration: 11s;
  animation-delay: -3s;
}

.footer-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #7b2fff 0%, transparent 70%);
  top: 30%;
  left: 45%;
  animation-duration: 19s;
  animation-delay: -7s;
  opacity: 0.12;
}

/* Footer particles */
.footer-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.footer-particles span {
  position: absolute;
  bottom: -20px;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  animation: particleDrift linear infinite;
  will-change: transform;
}

/* Distribute particles across the footer width */
.footer-particles span:nth-child(1) {
  left: 8%;
  width: 2.5px;
  height: 2.5px;
  animation-duration: 16s;
}

.footer-particles span:nth-child(2) {
  left: 22%;
  width: 2px;
  height: 2px;
  animation-duration: 20s;
  animation-delay: -3s;
  opacity: .4;
}

.footer-particles span:nth-child(3) {
  left: 38%;
  width: 3px;
  height: 3px;
  animation-duration: 15s;
  animation-delay: -6s;
}

.footer-particles span:nth-child(4) {
  left: 52%;
  width: 1.5px;
  height: 1.5px;
  animation-duration: 22s;
  animation-delay: -1s;
  opacity: .5;
}

.footer-particles span:nth-child(5) {
  left: 68%;
  width: 2.5px;
  height: 2.5px;
  animation-duration: 18s;
  animation-delay: -8s;
}

.footer-particles span:nth-child(6) {
  left: 82%;
  width: 2px;
  height: 2px;
  animation-duration: 13s;
  animation-delay: -4s;
  opacity: .3;
}

.footer-particles span:nth-child(7) {
  left: 18%;
  width: 4px;
  height: 4px;
  animation-duration: 25s;
  animation-delay: -10s;
  opacity: .15;
}

.footer-particles span:nth-child(8) {
  left: 62%;
  width: 2.5px;
  height: 2.5px;
  animation-duration: 17s;
  animation-delay: -5s;
}

.footer-particles span:nth-child(9) {
  left: 78%;
  width: 2px;
  height: 2px;
  animation-duration: 23s;
  animation-delay: -12s;
  opacity: .4;
}

.footer-particles span:nth-child(10) {
  left: 48%;
  width: 3.5px;
  height: 3.5px;
  animation-duration: 27s;
  animation-delay: -18s;
  opacity: .25;
}

.footer-particles span:nth-child(11) {
  left: 4%;
  width: 2px;
  height: 2px;
  animation-duration: 15s;
  animation-delay: -8s;
  opacity: .5;
}

.footer-particles span:nth-child(12) {
  left: 92%;
  width: 2.5px;
  height: 2.5px;
  animation-duration: 19s;
  animation-delay: -2s;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.footer-brand p {
  color: rgba(255, 255, 255, .6);
  font-size: 0.875rem;
  margin-top: 8px;
  max-width: 260px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.footer-links a {
  color: rgba(255, 255, 255, .7);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .4);
}

.footer-bottom a {
  color: var(--secondary);
  font-weight: 600;
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--green-wa);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  background: var(--green-wa-dark);
}

.float-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #0d1b2a;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #0d1b2a;
}

.whatsapp-float:hover .float-tooltip {
  opacity: 1;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px)
  }

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

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  }

  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, .7);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

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

/* =========================================
   MODAL PRODUTO
   ========================================= */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, backdrop-filter 0.5s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-white);
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.1, 1), opacity 0.4s ease;
  position: relative;
}

.modal.open .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: var(--bg-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow);
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.modal-close:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}

.modal-img {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.modal-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-info .label {
  margin-bottom: 12px;
}

.modal-info h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 15px;
}

.brand-slider-container {
  margin-bottom: 24px;
  width: 100%;
}

.brand-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 10px;
  scrollbar-width: none;
  /* Firefox */
  cursor: grab;
  user-select: none;
}

.brand-slider-track:active,
.brand-slider-track.active {
  cursor: grabbing;
}

.brand-slider-track::-webkit-scrollbar {
  display: none;
  /* Safari/Chrome */
}

.brand-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
  background: var(--bg-body);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border);
}

.brand-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brand-card li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.brand-card li::before {
  content: '•';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.slider-hint {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: right;
  margin-top: 4px;
  font-style: italic;
}

@media (max-width: 768px) {
  .modal-content {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-img {
    min-height: 250px;
  }

  .modal-info {
    padding: 24px 20px;
  }

  .modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2100;
  }
}

/* =========================================
   MOBILE-FIRST RESPONSIVE
   Base styles above = mobile (320px+)
   Breakpoints scale UP with min-width
   ========================================= */

/* ── Mobile menu (nav-links open state) ── */
.nav-links {
  display: none;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 64px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  color: var(--text-main) !important;
  display: block;
  padding: 10px 16px;
  text-align: center;
  border-radius: 8px;
  width: 100%;
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-links a:hover {
  background: rgba(43, 89, 255, 0.08);
  color: var(--primary) !important;
}

/* ── Hero mobile base ── */
.hero-visual {
  order: -1;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 4.4rem);
}

.hero-ctas {
  flex-direction: column;
}

.hero-ctas .btn-hero-primary,
.hero-ctas .btn-hero-whatsapp {
  width: 100%;
  justify-content: center;
}

.hero-stats-premium {
  width: 100%;
  justify-content: center;
}

.hero-stat {
  padding: 0 12px;
}

.hero-stat strong {
  font-size: 1.2rem;
}

.hero-stat span {
  font-size: 0.65rem;
}

/* ── Section headers mobile ── */
.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 1.6rem;
}

/* ── Products mobile ── */
.produto-img {
  height: 180px;
}

.produto-info {
  padding: 16px;
}

/* ── CTA card ── */
.cta-card {
  grid-column: span 1;
}

/* ── Tablet: 560px+ ── */
@media (min-width: 560px) {
  .nav-inner {
    padding: 0 20px;
  }

  .hero-inner {
    padding: 48px 20px 40px;
  }

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

  .cta-card {
    grid-column: span 2;
  }

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

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .sobre {
    padding: 80px 0;
  }

  .produtos {
    padding: 80px 0;
  }

  .diferenciais {
    padding: 80px 0;
  }

  .depoimentos {
    padding: 80px 0;
  }

  .cta-banner {
    padding: 80px 24px;
  }

  .localizacao {
    padding: 80px 0;
  }

  .sobre-text h2 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.85rem;
  }
}

/* ── Tablet/Desktop: 860px+ ── */
@media (min-width: 860px) {
  /* Nav: show links, hide hamburger */
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    gap: 4px;
    border-radius: 0;
  }

  .nav-links a {
    padding: 8px 14px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85) !important;
    text-align: left;
    width: auto;
    display: inline-block;
  }

  .nav-links a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
  }

  .navbar.scrolled .nav-links a {
    color: var(--text-main) !important;
  }

  .navbar.scrolled .nav-links a:hover {
    color: var(--primary) !important;
    background: rgba(43, 89, 255, 0.08) !important;
  }

  .nav-inner {
    height: 68px;
    padding: 0 24px;
  }

  .logo-icon-svg {
    width: 40px;
    height: 40px;
  }

  .logo-text-main {
    font-size: 1.4rem;
  }

  .logo-text-slogan {
    font-size: 0.65rem;
  }

  .logo-container {
    padding: 8px 16px;
    gap: 12px;
  }

  /* Hero: two columns */
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 24px 60px;
  }

  .hero-visual {
    order: 0;
  }

  .hero-ctas {
    flex-direction: row;
  }

  .hero-ctas .btn-hero-primary,
  .hero-ctas .btn-hero-whatsapp {
    width: auto;
    justify-content: flex-start;
  }

  .hero-stats-premium {
    width: fit-content;
    justify-content: flex-start;
  }

  .hero-stat {
    padding: 0 22px;
  }

  .hero-stat strong {
    font-size: 1.5rem;
  }

  .hero-stat span {
    font-size: 0.72rem;
  }

  /* Hero floating cards visible */
  .hero-fc {
    display: flex;
  }

  /* Sobre: two columns */
  .sobre .container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .sobre-tag {
    right: -15px;
    font-size: 0.85rem;
    padding: 10px 18px;
  }

  .sobre-text h2 {
    font-size: 2rem;
  }

  /* Sections: full padding */
  .sobre {
    padding: 120px 0;
  }

  .produtos {
    padding: 120px 0;
  }

  .diferenciais {
    padding: 120px 0;
  }

  .depoimentos {
    padding: 120px 0;
  }

  .cta-banner {
    padding: 120px 24px;
  }

  .localizacao {
    padding: 120px 0;
  }

  /* Products: 3 columns */
  .produtos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .cta-card {
    grid-column: span 1;
  }

  .produto-img {
    height: 200px;
  }

  .produto-info {
    padding: 22px;
  }

  /* Diferenciais: 3 columns */
  .dif-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* Depoimentos: 3 columns */
  .depoimentos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
  }

  /* Location: two columns */
  .loc-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
  }

  /* Footer: full grid */
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 0;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 50px;
  }

  .section-header h2 {
    font-size: 2.1rem;
  }

  /* CTA Banner */
  .cta-banner h2 {
    font-size: 2.2rem;
  }

  /* Hero: correct navbar height */
  .hero {
    padding-top: 68px;
    min-height: 100vh;
  }
}