/* =============================================
   FABIAN CONTABILIDADE — style.css
   Cores: Azul #174889 | Dourado #ffa010 | Dark #0d1f3c
   ============================================= */

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

:root {
  --font-display: 'Metropolis', 'Outfit', 'Segoe UI', sans-serif;
  --blue:        #174889;
  --blue-dark:   #0d1f3c;
  --blue-mid:    #1a3d6e;
  --blue-light:  rgba(23, 72, 137, 0.08);
  --gold:        #ffa010;
  --gold-dark:   #e08a00;
  --gold-light:  rgba(255, 160, 16, 0.12);
  --white:       #ffffff;
  --off-white:   #f7f8fc;
  --gray:        #5a6a80;
  --gray-light:  #e8ecf2;
  --text:        #1a2a3a;
  --text-muted:  #5a6a80;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 12px rgba(23, 72, 137, 0.08);
  --shadow-md:   0 8px 32px rgba(23, 72, 137, 0.12);
  --shadow-lg:   0 20px 60px rgba(23, 72, 137, 0.18);

  --transition:  0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue-dark);
  letter-spacing: 0;
}

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

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

ul { list-style: none; }

svg {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
}

/* ===== SECTION HEADER ===== */
.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255, 160, 16, 0.3);
  background: var(--gold-light);
  border-radius: 99px;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

.section__title em {
  font-style: italic;
  color: var(--blue);
}

.section__desc {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn svg { width: 1.1em; height: 1.1em; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

.btn--gold {
  background: var(--gold);
  color: var(--blue-dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 160, 16, 0.35);
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

.navbar.scrolled {
  background: transparent;
  box-shadow: none;
}

.nav__inner {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1040px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 0.65rem 0.8rem 0.65rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(13, 31, 60, 0.95), rgba(23, 72, 137, 0.9));
  backdrop-filter: blur(20px);
  box-shadow:
    0 18px 44px rgba(5, 15, 31, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  min-height: 74px;
}

.nav__inner::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  background:
    linear-gradient(90deg, rgba(255, 160, 16, 0.18), transparent 24%, transparent 76%, rgba(255, 160, 16, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 54%);
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}

.navbar.scrolled .nav__inner {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(13, 31, 60, 0.98), rgba(23, 72, 137, 0.94));
  box-shadow:
    0 14px 34px rgba(5, 15, 31, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__brand-logo {
  display: block;
  width: clamp(126px, 15vw, 178px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.nav__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 160, 16, 0.24), rgba(255, 160, 16, 0.46));
  border: 1px solid rgba(255, 160, 16, 0.3);
  box-shadow: 0 12px 24px rgba(255, 160, 16, 0.18);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav__brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
}

.nav__brand-sub {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 0.15rem;
  list-style: none;
  padding: 0 0.35rem;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-size: 0.93rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.55rem 0.82rem;
  border-radius: 10px;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  text-decoration: none;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0.82rem;
  right: 0.82rem;
  bottom: 0.42rem;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition: opacity var(--transition), transform var(--transition);
}

.nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.nav__link.active {
  color: var(--white);
  background: rgba(255, 160, 16, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 160, 16, 0.2);
}

.nav__link:hover::after,
.nav__link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.15rem;
  border-radius: 10px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 10px 22px rgba(255, 160, 16, 0.26);
}

.nav__cta:hover {
  transform: translateY(-2px);
  border-color: var(--gold-dark);
  background: var(--gold-dark);
  box-shadow: 0 12px 28px rgba(255, 160, 16, 0.34);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.nav__hamburger:hover {
  background: rgba(255, 160, 16, 0.14);
  border-color: rgba(255, 160, 16, 0.28);
  transform: translateY(-1px);
}

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

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #02050a 0%, #08101d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: 8rem 0 5rem;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(23, 72, 137, 0.9) 0%,
    rgba(13, 31, 60, 0.85) 50%,
    rgba(23, 72, 137, 0.8) 100%
  ), url('../img/home.png') center / cover no-repeat fixed;
  z-index: 1;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.18;
}

.hero__shape--1 {
  width: 560px; height: 120px;
  top: 12%; left: -10%;
  background: rgba(255, 160, 16, 0.18);
  animation: float 16s ease-in-out infinite;
}

.hero__shape--2 {
  width: 520px; height: 100px;
  bottom: 8%; right: -8%;
  background: rgba(23, 72, 137, 0.18);
  animation: float 18s ease-in-out infinite reverse;
}

.hero__shape--3 {
  width: 420px; height: 90px;
  top: 35%; left: 42%;
  background: rgba(255, 160, 16, 0.16);
  animation: float 14s ease-in-out infinite 2s;
}

.hero__shape--4 {
  width: 220px; height: 70px;
  top: 18%; right: 18%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 12s ease-in-out infinite 1s;
}

.hero__shape--5 {
  width: 180px; height: 60px;
  bottom: 30%; left: 14%;
  background: rgba(71, 85, 105, 0.12);
  animation: float 17s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 160, 16, 0.12);
  border: 1px solid rgba(255, 160, 16, 0.3);
  border-radius: 99px;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__title-line {
  display: block;
  overflow: hidden;
  padding: 0.02em 0 0.1em;
}

.hero__title-line > span {
  display: block;
  color: var(--white);
  background: none;
  will-change: transform, opacity, filter;
}

.hero__title-line--accent > span {
  color: var(--gold);
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.75rem 3rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  background: var(--blue-dark);
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 60%);
  opacity: 0.9;
}

.page-hero__bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.07;
  filter: blur(80px);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  margin: 1rem 0 1.25rem;
  line-height: 1.1;
}

.page-hero__title em {
  font-style: normal;
  color: var(--gold);
}

.page-hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== SERVICES GRID ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
  transition: var(--transition);
}

.service-card__icon svg { width: 24px; height: 24px; }

.service-card:hover .service-card__icon {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.1) rotate(-3deg);
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.service-card__link:hover {
  color: var(--gold);
  gap: 0.75rem;
}

.services__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== CLIENTES CARROSSEL ===== */
.clients-carousel__wrapper {
  position: relative;
  margin-top: 2.5rem;
}

.clients-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 280px);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0 0.75rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.clients-carousel__track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

.client-card {
  width: 100%;
  aspect-ratio: 4 / 3;
  box-sizing: border-box;
  border-radius: 1.75rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 72, 137, 0.18);
  box-shadow: 0 12px 28px rgba(13, 31, 60, 0.08);
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.client-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .clients-carousel__wrapper {
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .clients-carousel__wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .carousel-control {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

.differentials__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.differentials__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.differentials__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.differentials__check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-dark);
}

.differentials__check svg { width: 14px; height: 14px; }

.differentials__item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.25rem;
}

.differentials__item p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

/* Stats cards grid */
.differentials__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.diff-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--blue-light);
  transition: var(--transition);
}

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

.diff-card--accent {
  background: var(--blue);
  color: var(--white);
}

.diff-card--dark {
  background: var(--blue-dark);
  color: var(--white);
}

.diff-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.diff-card--accent .diff-card__number,
.diff-card--dark .diff-card__number {
  color: var(--gold);
}

.diff-card__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue-dark);
  line-height: 1.4;
}

.diff-card--accent .diff-card__label,
.diff-card--dark .diff-card__label {
  color: rgba(255, 255, 255, 0.75);
}

/* ===== SWITCH CTA ===== */
.switch-cta {
  background: var(--gold-light);
  border-top: 1px solid rgba(255, 160, 16, 0.2);
  border-bottom: 1px solid rgba(255, 160, 16, 0.2);
  padding: 3rem 0;
}

.switch-cta__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.switch-cta__icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  flex-shrink: 0;
}

.switch-cta__icon svg { width: 30px; height: 30px; }

.switch-cta__text { flex: 1; min-width: 200px; }

.switch-cta__text h2 {
  font-size: 1.35rem;
  color: var(--blue-dark);
  margin-bottom: 0.4rem;
}

.switch-cta__text p {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: none;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

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

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--blue-dark);
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== FAQ HOME ===== */
.faq-home {
  background:
    linear-gradient(180deg, rgba(23, 72, 137, 0.04), rgba(255, 255, 255, 0.96));
}

.faq-home__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(23, 72, 137, 0.1);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 160, 16, 0.22);
}

.faq-item[open] {
  border-color: rgba(255, 160, 16, 0.24);
  box-shadow: 0 14px 36px rgba(23, 72, 137, 0.12);
}

.faq-item__question {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 3.5rem 1.35rem 1.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.45;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 160, 16, 0.12);
  color: var(--gold-dark);
  font-size: 1.15rem;
  font-weight: 700;
}

.faq-item[open] .faq-item__question::after {
  content: '-';
}

.faq-item__answer {
  padding: 0 1.35rem 1.35rem;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ===== CTA FINAL ===== */
.cta-final {
  position: relative;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.cta-final__bg::before,
.cta-final__bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.cta-final__bg::before {
  width: 500px; height: 500px;
  background: var(--gold);
  top: -150px; right: -100px;
}

.cta-final__bg::after {
  width: 350px; height: 350px;
  background: var(--gold);
  bottom: -100px; left: -80px;
}

.cta-final__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-final__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-final__content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.cta-final__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SERVICE DETAIL (Serviços page) ===== */
.service-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.service-detail:last-child { border-bottom: none; }

.service-detail--reverse {
  grid-template-columns: 1fr 280px;
}

.service-detail--reverse .service-detail__icon-wrap {
  order: 2;
}

.service-detail--reverse .service-detail__body {
  order: 1;
}

.service-detail__icon-wrap {
  width: 100%;
  aspect-ratio: 1;
  max-width: 220px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.service-detail__icon-wrap svg { width: 72px; height: 72px; }

.service-detail__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue-light);
  color: rgba(23, 72, 137, 0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-detail__body h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--blue-dark);
}

.service-detail__body p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-detail__list {
  list-style: none;
  margin-bottom: 2rem;
}

.service-detail__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray-light);
}

.service-detail__list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===== SIGNS GRID (Trocar) ===== */
.signs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.sign-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}

.sign-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(255, 80, 80, 0.2);
}

.sign-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.sign-card__icon--red {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

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

.sign-card h3 {
  font-size: 1.05rem;
  color: var(--blue-dark);
  margin-bottom: 0.6rem;
}

.sign-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

/* ===== STEPS GRID ===== */
.steps__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.step__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--blue-dark);
}

.step p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.step__arrow {
  font-size: 1.75rem;
  color: var(--gold);
  font-weight: 300;
  opacity: 0.6;
}

/* ===== GUARANTEES ===== */
.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.guarantee-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.guarantee-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 160, 16, 0.12);
}

.guarantee-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 2px solid rgba(255, 160, 16, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  transition: var(--transition);
}

.guarantee-card:hover .guarantee-card__icon {
  background: var(--gold);
  color: var(--blue-dark);
}

.guarantee-card__icon svg { width: 24px; height: 24px; }

.guarantee-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--blue-dark);
}

.guarantee-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

/* ===== ABOUT (Sobre) ===== */
.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story__text .section__tag { text-align: left; }
.about-story__text .section__title { text-align: left; }

.about-story__text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-story__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-stat {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--blue-light);
  transition: var(--transition);
}

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

.about-stat--gold { background: var(--blue); }
.about-stat--dark { background: var(--blue-dark); }

.about-stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.about-stat__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue-dark);
}

.about-stat--gold .about-stat__label,
.about-stat--dark .about-stat__label {
  color: rgba(255, 255, 255, 0.75);
}

/* MVV */
.mvv__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.mvv-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}

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

.mvv-card__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

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

.mvv-card h3 {
  font-size: 1.25rem;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}

.mvv-card p {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.75;
  margin: 0;
}

/* Team */
.team__grid {
  display: grid;
  grid-template-columns: minmax(280px, 520px);
  justify-content: center;
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.team-card__avatar {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 160, 16, 0.18), transparent 34%),
    linear-gradient(145deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(23, 72, 137, 0.14);
  overflow: hidden;
}

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

.team-card h3 {
  font-size: 1.25rem;
  color: var(--blue-dark);
  margin-bottom: 0.25rem;
}

.team-card__role {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-dark);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer .nav__brand {
  display: inline-flex;
  align-items: center;
}

.footer .nav__brand-logo {
  width: 178px;
  max-height: 62px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer__social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer__social-link svg { width: 16px; height: 16px; }

.footer__social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--blue-dark);
  transform: translateY(-2px);
}

.footer__nav h4,
.footer__contact h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer__nav a:hover {
  color: var(--white);
  padding-left: 0.4rem;
}

.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float svg { width: 28px; height: 28px; }

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

/* Pulsing ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2s ease-in-out infinite;
}

@keyframes wa-pulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: var(--transition);
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--blue-dark);
  border-right: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .differentials__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-story__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer { margin: 0 1rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 180px 1fr; gap: 2.5rem; }
  .service-detail--reverse { grid-template-columns: 1fr 180px; }
  .steps__grid { grid-template-columns: 1fr 1fr; }
  .step__arrow { display: none; }
  .nav__cta { display: none; }
  .nav__brand-sub { display: none; }
}

@media (max-width: 768px) {
  /* Navbar mobile */
  .navbar {
    padding: 0.85rem 0;
  }

  .nav__inner {
    width: min(100%, calc(100% - 1.2rem));
    min-height: 68px;
    padding: 0.65rem 0.75rem 0.65rem 0.9rem;
    border-radius: 16px;
  }

  .nav__inner::before {
    border-radius: 15px;
  }

  .nav__brand {
    gap: 0.7rem;
  }

  .nav__brand-logo {
    width: clamp(118px, 38vw, 156px);
    max-height: 48px;
  }

  .nav__brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 0.85rem;
  }

  .nav__brand-name {
    font-size: 1.15rem;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
    gap: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(7, 18, 36, 0.98), rgba(13, 31, 60, 0.94));
    backdrop-filter: blur(18px);
    box-shadow:
      0 26px 48px rgba(5, 15, 31, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav__link {
    width: 100%;
    justify-content: flex-start;
    min-height: 52px;
    padding: 0.95rem 1rem;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav__link::after {
    left: 1rem;
    right: auto;
    bottom: 0.62rem;
    width: 44px;
    transform-origin: left;
  }

  .nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav__link.active {
    color: var(--white);
    border-color: rgba(255, 160, 16, 0.22);
    background: rgba(255, 160, 16, 0.14);
    box-shadow: none;
  }

  .nav__hamburger { display: flex; }

  .nav__cta {
    display: none;
  }

  /* Hero */
  .hero {
    align-items: center;
    padding: 7rem 0 4rem;
  }

  .hero__content {
    padding: 0 1.15rem;
  }

  .hero__title {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
    line-height: 1;
  }

  .hero__desc {
    max-width: 34rem;
    margin-bottom: 2rem;
  }

  .hero__actions {
    margin-bottom: 2.4rem;
  }

  .hero__stats { gap: 1.25rem; padding: 1.1rem 1.35rem; }
  .hero__stat-divider { display: none; }
  .hero__stats { flex-wrap: wrap; justify-content: space-around; }

  /* Grids */
  .services__grid { grid-template-columns: 1fr; }
  .differentials__cards { grid-template-columns: 1fr 1fr; }
  .faq-home__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  /* Service detail */
  .service-detail,
  .service-detail--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem 0;
  }

  .service-detail--reverse .service-detail__icon-wrap { order: 0; }
  .service-detail--reverse .service-detail__body { order: 0; }

  .service-detail__icon-wrap { max-width: 140px; }

  /* Steps */
  .steps__grid { grid-template-columns: 1fr; }

  /* Switch CTA */
  .switch-cta__inner { flex-direction: column; text-align: center; }

  /* About */
  .about-story__stats { grid-template-columns: 1fr 1fr; }

  /* WhatsApp */
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.15rem, 12vw, 3.2rem); }
  .hero__badge { font-size: 0.68rem; padding: 0.5rem 0.9rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { width: 100%; }
  .cta-final__actions { flex-direction: column; }
  .cta-final__actions .btn { width: 100%; justify-content: center; }
  .differentials__cards { grid-template-columns: 1fr; }
  .about-story__stats { grid-template-columns: 1fr; }
  .whatsapp-float__tooltip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__shape,
  .hero__badge-dot,
  .hero__scroll-arrow {
    animation: none;
  }
}
