/* =====================================================
   AMÉLIA SARAIVA ADVOGADAS — Landing Page
   Design: Luxury Minimal | Preventive Legal Counsel
   Palette: Dark Green · White · Gold
   Font: Poppins
   ===================================================== */

/* ──────────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES (Design Tokens)
────────────────────────────────────────────────────── */
:root {
  /* Color System */
  --c-green: #0a0a0a;
  /* Dominant — black */
  --c-green-mid: #1c1c1c;
  /* Mid-tone grey/black */
  --c-green-light: #2a2a2a;
  /* Light grey/black for accents */
  --c-green-muted: #f2f2f2;
  /* Very light grey tint */
  --c-gold: #d4af37;
  /* Gold accent - solid */
  --c-gold-light: #e2c261;
  /* Lighter gold - solid fallback */
  --c-gold-dark: #a98522;
  /* Dark gold gradient color */
  --c-gold-pale: #fcf8ee;
  /* Pale gold tint */
  --c-white: #ffffff;
  --c-off-white: #fafaf8;
  --c-gray-50: #f7f7f5;
  --c-gray-100: #eeede8;
  --c-gray-200: #dddbd2;
  --c-gray-400: #9a9588;
  --c-gray-600: #6b6760;
  --c-text: #1c1a17;
  --c-text-soft: #5a5750;
  --c-dark: #000000;
  /* Very dark for dark sections */

  /* Typography */
  --f-title: 'Cinzel', serif;
  --f-main: 'Poppins', sans-serif;

  /* Spacing rhythm */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 6rem;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(26, 64, 48, .06);
  --shadow-md: 0 8px 32px rgba(26, 64, 48, .10);
  --shadow-lg: 0 20px 60px rgba(26, 64, 48, .15);
  --shadow-gold: 0 8px 24px rgba(184, 150, 62, .20);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ──────────────────────────────────────────────────────
   RESET & BASE
────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-main);
  background: var(--c-white);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ──────────────────────────────────────────────────────
   SCROLL REVEAL
────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.10s;
}

.reveal-delay-2 {
  transition-delay: 0.20s;
}

.reveal-delay-3 {
  transition-delay: 0.30s;
}

.reveal-delay-4 {
  transition-delay: 0.40s;
}

/* ──────────────────────────────────────────────────────
   LAYOUT UTILITIES
────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.section-heading {
  font-family: var(--f-title);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-green);
  letter-spacing: -0.02em;
}

.section-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-gold);
}

/* ──────────────────────────────────────────────────────
   BUTTONS
────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-main);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
  /* Fully rounded */
  padding: 0.9rem 2rem;
  text-decoration: none;
}

/* Shine reflection effect */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg) translateX(-100%);
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover::after {
  transform: skewX(-25deg) translateX(100%);
}

/* Primary: Dark Green to Light Green Gradient */
.btn-primary {
  background: linear-gradient(135deg, #0f3d29 0%, #1b6e4b 100%);
  color: var(--c-white);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0a291c 0%, #134f36 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Secondary: WhatsApp Green Gradient */
.btn-whatsapp {
  background: linear-gradient(135deg, #075e54 0%, #25d366 100%);
  color: var(--c-white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #054d44 0%, #1ebe5d 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .35);
}

/* Ghost: outlined */
.btn-ghost {
  background: transparent;
  color: var(--c-green);
  border: 1.5px solid var(--c-green);
}

.btn-ghost:hover {
  background: var(--c-green);
  color: var(--c-white);
}

/* Icon badge inside button */
.btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ──────────────────────────────────────────────────────
   HEADER / NAV
────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-gray-100);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

/* Logo image */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  height: 36px;
  /* standard height to fit nicely inside the 60px navbar */
  width: auto;
  display: block;
}

.site-logo__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-green);
  letter-spacing: 0.04em;
}

.site-logo__tagline {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: 2px;
}

/* Nav links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-text-soft);
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-gold);
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: var(--c-green);
}

.site-nav a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--c-green);
  transition: all 0.3s ease;
  display: block;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-gray-100);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--c-gray-100);
  letter-spacing: 0.04em;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--c-green);
}

/* ──────────────────────────────────────────────────────
   HERO SECTION
────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  background: url('../imagens/backg02.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero .container {
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
}

/* Hero text side */
.hero-text {
  max-width: 720px;
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.9rem;
  background: var(--c-gold-pale);
  border: 1px solid rgba(184, 150, 62, .25);
  border-radius: 100px;
}

.hero-eyebrow .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero-heading {
  font-family: var(--f-title);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 400;
  /* Light weight for white text */
  line-height: 1.15;
  color: var(--c-dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  text-align: left;
}

.hero-heading-gold {
  font-weight: 700;
  /* Heavier font weight for highlighted gold text */
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
  /* Softer, lighter gold gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--c-gold);
  /* Fallback */
}

.hero-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-dark);
  background: none;
  -webkit-text-fill-color: var(--c-dark);
  background-clip: initial;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--c-text-soft);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 54ch;
  font-weight: 400;
  text-align: left;
  margin-left: 0;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-mobile-img,
.about-mobile-img {
  display: none;
}

@media (max-width: 1024px) {
  .hero-mobile-img {
    display: block;
    position: absolute;
    bottom: -100px; /* Offset the 100px padding of .hero */
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 75%; /* Slightly larger for better mobile presence */
    max-width: 300px;
    z-index: 10; /* Behind the ticker (z-index: 20) */
    pointer-events: none;
  }
  
  .hero-mobile-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .hero .container {
    padding-bottom: 250px; /* Reduced space to bring button closer to image */
  }
}

/* Trust strip */
.hero-trust {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-gray-100);
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-trust-item .trust-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-green-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-green);
  flex-shrink: 0;
}

/* Hero image side */
.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  left: 1.5rem;
  top: 1.5rem;
  border: 2px solid var(--c-gold-light);
  border-radius: var(--r-md);
  opacity: 0.5;
  z-index: 0;
}

.hero-img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

/* Floating card over image */
.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -2rem;
  z-index: 20;
  background: var(--c-white);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--c-gray-100);
  min-width: 200px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-green-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-green);
  flex-shrink: 0;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-green);
}

.hero-badge-text span {
  font-size: 0.65rem;
  color: var(--c-gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* OAB badge top-right */
.hero-oab {
  position: absolute;
  top: 1.5rem;
  right: -0.5rem;
  z-index: 20;
  background: var(--c-green);
  color: var(--c-white);
  border-radius: var(--r-sm);
  padding: 0.6rem 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

.hero-oab span {
  display: block;
  color: var(--c-gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* Ticker Bar (Marquee) at the bottom of Hero */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 64, 48, 0.6);
  /* Vibrant green with more transparency */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1.5px solid rgba(212, 175, 97, 0.25);
  /* Subtle gold top border */
  padding: 0.85rem 0;
  overflow: hidden;
  z-index: 20;
}

.hero-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 50s linear infinite;
}

.hero-ticker:hover .hero-ticker-track {
  animation-play-state: paused;
  /* Pause on hover */
}

.hero-ticker-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
}

.hero-ticker-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-ticker-item strong {
  color: var(--c-gold-light);
  font-weight: 600;
}

.hero-ticker-item svg {
  color: var(--c-gold-light);
  flex-shrink: 0;
  opacity: 0.85;
}

.hero-ticker-separator {
  color: rgba(212, 175, 97, 0.4);
  font-weight: 300;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* About section ticker overrides — white background, dark green + gold text */
.about-ticker {
  background: var(--c-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: 1.5px solid var(--c-gray-100);
}

.about-ticker .hero-ticker-item {
  color: var(--c-green); /* Dark green text */
}

.about-ticker .hero-ticker-item strong {
  color: var(--c-gold); /* Gold for bold text */
}

.about-ticker .hero-ticker-item svg {
  color: var(--c-gold);
}

.about-ticker .hero-ticker-separator {
  color: rgba(199, 169, 116, 0.5); /* Muted gold separator */
}

/* ──────────────────────────────────────────────────────
   MODULES GRID SECTION
────────────────────────────────────────────────────── */
.modules-grid-section {
  background: var(--c-white);
  position: relative;
  z-index: 10;
  width: 100%;
}

.modules-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--c-gray-100);
  border-bottom: 1px solid var(--c-gray-100);
  background-color: var(--c-gray-100);
  gap: 1px;
}

.module-item {
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
  min-height: 180px;
  background: var(--c-white);
  transition: background-color 0.5s var(--ease-out);
  cursor: pointer;
}

.module-item:hover {
  background-color: var(--c-gray-50);
}

/* Watermark icon in background */
.module-watermark-icon {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 120px;
  height: 120px;
  color: var(--c-green);
  opacity: 0.015;
  pointer-events: none;
  user-select: none;
  transition: transform 0.7s var(--ease-out), opacity 0.5s var(--ease-out);
}

.module-watermark-icon svg {
  width: 100%;
  height: 100%;
}

.module-item:hover .module-watermark-icon {
  transform: scale(1.15) rotate(-5deg);
  opacity: 0.035;
}

.module-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--c-gold);
  background-clip: padding-box;
}

.module-icon-wrap svg {
  stroke: url(#gold-grad);
}

.module-item:hover .module-icon-wrap {
  background-image: linear-gradient(var(--c-gold-pale), var(--c-gold-pale)),
    linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-light) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transform: scale(1.08);
}

.module-content {
  position: relative;
  z-index: 10;
}

.module-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-green);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.module-item:hover .module-content h3 {
  color: var(--c-gold);
}

.module-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gray-400);
  font-style: italic;
}


/* Responsive grid for modules */
@media (max-width: 768px) {
  .modules-grid-container {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────────────────
   CLIENTS / NICHES STRIP
────────────────────────────────────────────────────── */
/* ──────────────────────────────────────────────────────
   PRESENTATION SECTION
────────────────────────────────────────────────────── */
.presentation-section {
  padding: 4.5rem 0;
  background: var(--c-white);
  position: relative;
  z-index: 10;
}

.presentation-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 5rem;
  align-items: center;
}

.presentation-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.presentation-text {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  line-height: 1.7;
  margin-top: 1.25rem;
  font-weight: 300;
  max-width: 60ch;
}

.presentation-image {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.presentation-img-wrap {
  width: 100%;
  max-width: 380px;
  height: 220px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-gray-100);
}

.presentation-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ──────────────────────────────────────────────────────
   SERVICES SECTION
────────────────────────────────────────────────────── */
.services-section {
  padding: var(--sp-xl) 0 var(--sp-lg);
  background: var(--c-white);
}

/* Centered header for services section */
.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
}

.services-header .section-label {
  justify-content: center;
}

.services-header .section-heading {
  margin-top: 1rem;
}

.services-header p {
  font-size: 0.95rem;
  color: var(--c-text-soft);
  line-height: 1.7;
  margin-top: 1.25rem;
  font-weight: 300;
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.services-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;
  padding: 0 3.5rem;
  /* Padding to keep navigation arrows outside the cards */
}

/* Fade gradient on left and right edges removed */
.services-carousel-wrapper::before,
.services-carousel-wrapper::after {
  display: none;
}

.services-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 1rem 0 2rem;
  /* Normal padding, contained within section */
}

.services-carousel::-webkit-scrollbar {
  display: none;
}


.service-card {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  position: relative;
  min-height: 280px;
  background-color: #FAF8F5;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2.5rem 2rem;
  cursor: grab;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:active {
  cursor: grabbing;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-color: var(--c-gold);
}

.service-icon {
  color: var(--c-gold);
  margin-bottom: 2rem;
  background: transparent;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--c-gold);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--c-gold);
  color: var(--c-white);
}

.service-card h3 {
  font-family: var(--f-title);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--c-text-soft);
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .service-card {
    flex: 0 0 calc(50% - 1rem);
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .service-card {
    flex: 0 0 calc(80% - 1rem);
    min-height: auto;
  }
}

/* AS ─── 01 label at bottom */
.service-card-num-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--c-gold-light);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: uppercase;
  margin-top: auto;
}

.service-card-num-line {
  height: 1px;
  width: 40px;
  background: currentColor;
}

/* Float icon at top of card */
.service-card-content .service-icon {
  color: var(--c-gold);
  margin-bottom: 2rem;
  background: transparent;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--c-gold);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--c-gold);
  color: var(--c-white);
}

.service-icon svg {
  stroke: currentColor;
}

.service-card:hover .service-icon {
  color: var(--c-gold);
  margin-bottom: 2rem;
  background: transparent;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--c-gold);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--c-gold);
  color: var(--c-white);
}

.service-card:hover .service-icon svg {
  stroke: var(--c-white);
}

/* Carousel Controls Styling: Absolute on left and right sides */
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  /* Let clicks pass through to cards */
  z-index: 10;
}

.carousel-btn {
  pointer-events: auto;
  /* Re-enable pointer events on the buttons */
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-gray-100);
  color: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
  transform: scale(1.08);
  /* Scale hover instead of vertical translation */
  box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
  .service-card {
    flex: 0 0 calc(50% - 0.75rem);
    /* 2 cards on tablet */
    padding: 2rem 1.25rem;
  }

  .services-carousel {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-carousel-wrapper {
    padding: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .services-header {
    padding-left: 0;
  }

  .services-cta {
    padding-left: 0;
  }

  .service-card {
    flex: 0 0 100%;
    padding: 2rem 1.5rem;
  }

  .services-carousel {
    padding: 0 10px 0 10px;
    gap: 10px;
  }

  .carousel-controls {
    position: static;
    transform: none;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 0 0;
  }
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ──────────────────────────────────────────────────────
   PÚBLICO ATENDIDO SECTION
────────────────────────────────────────────────────── */
.publico-section {
  padding: var(--sp-lg) 0 var(--sp-xl);
  background: var(--c-white);
}

.publico-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
}

.publico-header .section-label {
  justify-content: center;
}

.publico-header .section-heading {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.publico-header .section-heading em {
  color: var(--c-gold);
  font-style: italic;
}

.publico-subtitle {
  font-size: 0.95rem;
  color: var(--c-text-soft);
  line-height: 1.7;
  font-weight: 300;
  max-width: 58ch;
  margin: 0 auto;
}

/* Carousel layout */
.publico-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 1rem;
}

.publico-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 1rem 0 2rem;
  cursor: grab;
}

.publico-carousel::-webkit-scrollbar {
  display: none;
}

.publico-card {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  background: var(--c-white);
  border: 1px solid var(--c-gray-100);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.publico-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--c-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease-out);
}

.publico-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--c-gold);
}

.publico-card:hover::before {
  transform: scaleY(1);
}

.publico-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-gold-pale);
  border: 1px solid rgba(199, 169, 116, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold-dark);
  margin-bottom: 1.25rem;
  transition: all 0.35s var(--ease-out);
}

.publico-card:hover .publico-icon {
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
}

.publico-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.publico-card p {
  font-size: 0.84rem;
  color: var(--c-text-soft);
  line-height: 1.65;
  font-weight: 300;
}



@media (max-width: 1024px) {
  .publico-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .publico-carousel-wrapper {
    padding: 0;
  }
  .publico-carousel {
    padding: 1rem 1rem 2rem 1rem;
    gap: 10px;
  }
  .publico-card {
    flex: 0 0 100%;
  }
}

/* ──────────────────────────────────────────────────────
   ABOUT / SOBRE SECTION
────────────────────────────────────────────────────── */

.about-section {
  min-height: 90vh;
  padding: var(--sp-xl) 0;
  background: url('../imagens/backg03.webp') top center/cover no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Make the container inside about-section explicitly left-anchor its content */
.about-section .container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* FORCE left alignment */
  justify-content: flex-start;
}

/* Text column anchored to left — same edge as all other sections */
.about-text {
  width: 100%;
  max-width: 580px;
  /* Keeps lines readable; anchored to the left */
  margin-left: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-text .section-label {
  margin-bottom: 0.75rem;
}

.about-text .section-heading {
  margin-bottom: 1.25rem;
  margin-top: 100px;
  text-align: left;
  width: 100%;
  color: var(--c-text);
}

.about-text .btn {
  align-self: flex-start;
  /* Force CTA button to align to the left */
}

.about-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-text-soft);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 52ch;
}

.about-quote {
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--c-text-soft);
  line-height: 1.75;
  padding-left: 1.5rem;
  border-left: 3px solid var(--c-gold);
  margin: 1.5rem 0 2rem;
}

.about-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--c-text-soft);
  line-height: 1.6;
  font-weight: 300;
}

.about-list li .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-green-muted);
  color: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.about-list li strong {
  color: var(--c-text);
  font-weight: 600;
}

/* ──────────────────────────────────────────────────────
   DIFFERENTIALS SECTION
────────────────────────────────────────────────────── */
.diferenciais-section {
  background: var(--c-white);
}

.diferenciais-section {
  height: 400vh;
}

.diferenciais-sticky-wrapper {
  position: sticky;
  top: 10vh;
  height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .diferencial-item {
    width: 85vw;
  }
  
  .diferenciais-header {
    margin-bottom: 2rem;
  }
}

.diferenciais-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.diferenciais-header h2.section-heading {
  margin: 0;
}

.diferenciais-list {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
}

.diferencial-item {
  background: var(--c-off-white);
  border: 1px solid var(--c-gray-100);
  border-radius: var(--r-md);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  width: 450px;
  flex-shrink: 0;
  white-space: normal;
}

.diferencial-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--c-gold-light), var(--c-gold-dark));
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  transition: width 0.3s ease;
}

.diferencial-item:hover::before {
  width: 6px;
}

.diferencial-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-color: var(--c-gold);
}

.diferencial-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-green-muted);
  color: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.diferencial-item:hover .diferencial-icon-wrap {
  background: var(--c-green);
  color: var(--c-white);
}

.diferencial-content {
  flex: 1;
}

.diferencial-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-green);
  margin-bottom: 0.4rem;
}

.diferencial-content p {
  font-size: 0.88rem;
  color: var(--c-text-soft);
  line-height: 1.7;
  font-weight: 300;
}

/* ──────────────────────────────────────────────────────
   REVIEWS / AVALIAÇÕES
────────────────────────────────────────────────────── */
.reviews-section {
  padding: var(--sp-xl) 0;
  background: #efefef;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reviews-header .section-label {
  color: var(--c-gold-light);
  justify-content: center;
}

.reviews-header .section-label::before {
  display: none;
}

.reviews-header .section-label::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.reviews-header .section-heading {
  color: var(--c-green);
  margin-top: 0.5rem;
}

.reviews-header .section-heading em {
  color: var(--c-gold-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-100);
  border-radius: var(--r-md);
  padding: 2rem;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.review-card:hover {
  background: var(--c-white);
  transform: translateY(-3px);
  border-color: var(--c-gold);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--c-gold-light);
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.review-text {
  font-size: 0.88rem;
  color: var(--c-text-soft);
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text::before {
  content: '\201C';
  font-size: 3rem;
  line-height: 0.5;
  color: var(--c-gold-light);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-gray-100);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-green-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-white);
  flex-shrink: 0;
}

.review-author-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text);
}

.review-author-info span {
  font-size: 0.68rem;
  color: var(--c-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ──────────────────────────────────────────────────────
   CTA WHATSAPP SECTION
────────────────────────────────────────────────────── */
.cta-section {
  padding: var(--sp-xl) 0;
  background: var(--c-white);
}

.cta-inner {
  background: url('../imagem/backg02.webp') center/cover no-repeat;
  border-radius: var(--r-lg);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}



.cta-pulse-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--c-green);
  border: 1px solid var(--c-gold);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.cta-pulse-badge .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, .4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
  }
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--c-dark);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-inner h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-gold-dark);
}

.cta-inner p {
  color: var(--c-text-soft);
  font-size: 1rem;
  font-weight: 300;
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ──────────────────────────────────────────────────────
   FAQ SECTION
────────────────────────────────────────────────────── */
.faq-section {
  padding: var(--sp-xl) 0;
  background: var(--c-white);
}

.faq-section .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.faq-sidebar .section-heading {
  margin-bottom: 1rem;
}

.faq-sidebar p {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 300;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--c-gray-100);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--c-off-white);
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--c-green-muted);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-main);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-green);
  transition: background 0.2s;
}

.faq-toggle:hover {
  background: rgba(26, 64, 48, .03);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-green-muted);
  color: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.open .faq-chevron {
  background: var(--c-green);
  color: var(--c-white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.85rem;
  color: var(--c-text-soft);
  line-height: 1.75;
  font-weight: 300;
}

/* ──────────────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-green);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.footer-logo-col p {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 30ch;
  font-weight: 300;
}

.footer-logo-col blockquote {
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  border-left: 2px solid var(--c-gold);
  padding-left: 0.75rem;
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--c-white);
}

.footer-contact p {
  font-size: 0.82rem;
  line-height: 1.8;
  font-weight: 300;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--c-gold-light);
}

.footer-bottom {
  padding: 1.5rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-credit a {
  transition: opacity 0.2s;
}

.footer-credit a:hover {
  opacity: 0.85;
}

.footer-credit img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

/* ──────────────────────────────────────────────────────
   WHATSAPP FLOATING BUTTON
────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

/* Balloon */
.wa-balloon {
  background: var(--c-white);
  border-radius: var(--r-md) var(--r-md) 0 var(--r-md);
  box-shadow: var(--shadow-lg);
  width: 270px;
  overflow: hidden;
  transform: scale(0.85) translateY(10px);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
  pointer-events: none;
  border: 1px solid var(--c-gray-100);
}

.wa-balloon.show,
.wa-float:hover .wa-balloon {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.wa-balloon-header {
  background: #075E54;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.wa-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wa-avatar-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-gold), var(--c-green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-white);
}

.wa-sender-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-white);
}

.wa-online {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
}

.wa-online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-green 1.5s infinite;
}

.wa-balloon-body {
  padding: 0.9rem 1rem;
}

.wa-balloon-body p {
  font-size: 0.75rem;
  color: var(--c-text);
  line-height: 1.55;
  font-weight: 400;
  background: #dcf8c6;
  padding: 0.6rem 0.75rem;
  border-radius: 4px 12px 12px 12px;
}

.wa-balloon-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  line-height: 1;
}

.wa-balloon-close:hover {
  color: var(--c-white);
}

.wa-balloon-close svg {
  width: 12px;
  height: 12px;
}

/* Float button itself */
.wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f3d29 0%, #1b6e4b 100%);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  animation: wa-bounce 0.6s 3s ease both;
}

.wa-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0a291c 0%, #134f36 100%);
  box-shadow: var(--shadow-lg);
}

.wa-btn svg {
  width: 30px;
  height: 30px;
}

@keyframes wa-bounce {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.15);
  }

  60% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

/* ──────────────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero .container {
    gap: 2.5rem;
  }

  .faq-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    background-image: url('../imagens/backg01mobile.webp');
    padding-top: 160px; /* Increased padding-top for mobile */
  }

  .about-section {
    background-color: #e1e1e1;
    background-image: radial-gradient(circle at top center, rgba(255,255,255,0.8) 0%, #e1e1e1 70%);
  }
  
  .about-text .section-heading {
    margin-top: 0;
  }

  .hero .container {
    text-align: left;
  }

  .hero-sub {
    margin-inline: 0;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  .hero-trust {
    justify-content: flex-start;
  }

  .presentation-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .presentation-image {
    justify-content: center;
  }

  .presentation-img-wrap {
    max-width: 100%;
    height: 180px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .diferencial-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .diferenciais-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-inner {
    padding: 3rem 1.5rem;
  }

  .niches-strip .container {
    gap: 0.75rem;
  }

  .niches-divider {
    display: none;
  }
  
  .about-mobile-img {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    width: 85%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-mobile-img img {
    width: 100%;
    height: auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    justify-content: center;
  }
}
/* ──────────────────────────────────────────────────────
   ATENDIMENTO SECTION
────────────────────────────────────────────────────── */
.atendimento-section {
  padding: var(--sp-xl) 0;
  background: var(--c-white);
}

.atendimento-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.atendimento-content {
  flex: 1;
  max-width: 500px;
}

.atendimento-content .section-heading {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  line-height: 1.2;
}

.atendimento-text p {
  color: var(--c-text-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.atendimento-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.atendimento-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .atendimento-container {
    flex-direction: column;
  }
  .atendimento-image {
    justify-content: center;
    margin-top: 3rem;
  }
  .atendimento-content {
    max-width: 100%;
  }
}

/* ──────────────────────────────────────────────────────
   ABOUT CONTAINER (IMAGE + TEXT)
────────────────────────────────────────────────────── */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.about-image-left {
  flex: 1;
  max-width: 450px;
}

.about-image-left img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

.about-section .about-text {
  flex: 1;
  max-width: 600px;
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }
  .about-image-left {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

/* Google Reviews Carousel */
.reviews-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}
.reviews-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 1rem 10px 2rem 10px;
  text-align: left;
}
/* Removendo a ocultação da scrollbar para ficar óbvio que é um carrossel */
.reviews-carousel::-webkit-scrollbar {
  height: 8px;
}
.reviews-carousel::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius: 4px;
}
.reviews-carousel::-webkit-scrollbar-thumb {
  background: var(--c-gold); 
  border-radius: 4px;
}
.reviews-carousel::-webkit-scrollbar-thumb:hover {
  background: var(--c-gold-dark); 
}
.review-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--c-white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  position: relative;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transform: translateY(-2px);
  border-color: #e0e0e0;
}
.review-author {
  border: none !important;
  padding: 0 !important;
  margin-bottom: 0.75rem !important;
}
.review-author-info strong {
  font-size: 0.95rem;
  letter-spacing: 0;
  color: #202124;
}
.review-author-info span {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8rem;
  color: #70757a;
}
.review-stars {
  margin-bottom: 0.75rem;
}
.review-stars span {
  color: #70757a !important;
  font-size: 0.8rem !important;
}
.review-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #202124;
  font-weight: 300;
  font-style: normal;
  flex-grow: 1;
}
.review-text::before {
  display: none;
}
@media (max-width: 900px) {
  .review-card {
    flex: 0 0 300px;
  }
}
@media (max-width: 600px) {
  .review-card {
    flex: 0 0 280px;
  }
}
