﻿/* ============================================
   ROTATRAC — Landing Page Styles
   Mobile First
   ============================================ */

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(21,46,61,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-lg); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 116px;
  gap: var(--space-sm);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.nav__wpp {
  display: none; /* oculto em mobile pequeno */
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color var(--ease);
  white-space: nowrap;
}
.nav__wpp:hover { color: var(--verde); }
.nav__wpp-icon { color: #25D366; font-size: 1.1rem; }
@media (min-width: 640px) { .nav__wpp { display: flex; } }
.nav__logo { display: flex; align-items: center; }
.nav__logo-img {
  height: 100px;
  width: auto;
  display: block;
}

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

/* Slideshow container */
.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Cada slide = imagem de fundo */
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  transform: scale(1.04);
  animation: ken-burns 10s ease-in-out infinite alternate;
}
.hero__slide.ativa {
  opacity: 1;
}

@keyframes ken-burns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

/* 4 cenas — imagens aéreas sem marca ou logo visível */

/* Cena 1: Vista aérea de dois caminhões em rodovia — sem marca visível */
.hero__slide--1 {
  background-image: url('https://images.unsplash.com/photo-1708193203896-ba0630862bb6?w=1600&q=85');
  background-position: center 40%;
}

/* Cena 2: Cruzamento de rodovias à noite — rastreamento */
.hero__slide--2 {
  background-image: url('https://images.unsplash.com/photo-1771335125869-032a6c257866?w=1600&q=85');
  background-position: center;
}

/* Cena 3: Malha viária aérea à noite — conectividade */
.hero__slide--3 {
  background-image: url('https://images.unsplash.com/photo-1563139894-b0a91636a9c6?w=1600&q=85');
  background-position: center;
}

/* Cena 4: Interseção de rodovias ao entardecer — resultado */
.hero__slide--4 {
  background-image: url('https://images.unsplash.com/photo-1758608307508-65f21a35cc75?w=1600&q=85');
  background-position: center;
}

/* Overlay azul escuro — igual ao TechSAT */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(21,46,61,0.82) 0%,
    rgba(21,46,61,0.65) 50%,
    rgba(34,78,102,0.55) 100%
  );
  z-index: 1;
}

/* Malha de mapa sutil sobre o overlay */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(165,205,25,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165,205,25,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* Radar animado (aparece na cena 2 — rodovia) */
.hero__radar {
  position: absolute;
  width: 300px;
  height: 300px;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero__radar.visivel { opacity: 1; }
.hero__radar-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 1.5px solid rgba(165,205,25,0.5);
  animation: radar-expand 3s ease-out infinite;
}
.hero__radar-ring:nth-child(1) { width: 60px;  height: 60px;  animation-delay: 0s; }
.hero__radar-ring:nth-child(2) { width: 130px; height: 130px; animation-delay: 0.8s; }
.hero__radar-ring:nth-child(3) { width: 210px; height: 210px; animation-delay: 1.6s; }
.hero__radar-ring:nth-child(4) { width: 290px; height: 290px; animation-delay: 2.4s; }
@keyframes radar-expand {
  0%   { opacity: 0.8; }
  100% { opacity: 0; }
}
.hero__radar-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--verde);
  box-shadow: 0 0 16px var(--verde);
  animation: pulse-center 2s ease-in-out infinite;
}
@keyframes pulse-center {
  0%,100% { box-shadow: 0 0 8px var(--verde); }
  50%      { box-shadow: 0 0 24px var(--verde); }
}

/* Conteúdo do hero sobre o slideshow */
.hero .container { position: relative; z-index: 3; padding-top: calc(64px + 2rem); padding-bottom: 2rem; }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  align-items: center;
}

/* badges do hero — neutras (branco/transparente, sem verde) */
.hero__badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}
.hero__headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--branco);
  margin-bottom: var(--space-md);
  max-width: 700px;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  max-width: 560px;
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}
.hero__actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.hero__hint {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Indicadores de slide (dots) */
.hero__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 4;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
.hero__dot.ativo {
  background: var(--verde);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--verde);
}

/* ---- STATS ---- */
.stats {
  background: var(--branco);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  text-align: center;
}
/* Card individual igual ao site institucional */
.stat-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cinza-200);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.stat-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}
.stat__number {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--azul-deep);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat__number span {
  color: var(--verde);
}
.stat__label {
  font-size: 0.875rem;
  color: var(--cinza-600);
  font-weight: 500;
}

/* ---- DORES ---- */
.dores {
  background: var(--branco);
  padding: var(--space-2xl) 0;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.dores .section-title { color: var(--preto); }
.dores .section-sub   { color: var(--cinza-600); }

.dores__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.dor-card {
  background: var(--cinza-100);
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.dor-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--verde);
}
.dor-card:hover {
  background: var(--cinza-200);
  border-color: rgba(165,205,25,0.5);
  transform: translateX(4px);
}
.dor-card__icon {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xs);
  color: var(--verde);
}
.dor-card__dor {
  font-size: 1rem;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 0.4rem;
}
.dor-card__solucao {
  font-size: 0.88rem;
  color: var(--azul-principal);
  font-weight: 600;
}

.dores__cta { text-align: center; }

/* ---- SOLUÇÕES ---- */
.solucoes {
  background: var(--azul-deep);
  padding: var(--space-2xl) 0;
}
.solucoes .section-title { color: var(--branco); }
.solucoes .section-sub   { color: rgba(255,255,255,0.55); }

.solucoes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.solucao-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--ease);
}
.solucao-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(165,205,25,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.solucao-card--destaque {
  border-color: rgba(165,205,25,0.4);
  background: rgba(165,205,25,0.06);
}
.solucao-card {
  position: relative;
}
.solucao-card__badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--verde);
  color: var(--preto);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.solucao-card__icon {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
  color: var(--verde);
}
.solucao-card__nome {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 0.5rem;
}
.solucao-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}
.solucao-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.solucao-card__feature {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.solucao-card__feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--verde);
  flex-shrink: 0;
}

/* ---- DIAGNÓSTICO CTA (dentro da LP) ---- */
.diag-cta {
  background: var(--azul-principal);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.diag-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(165,205,25,0.08) 0%, transparent 60%);
}
.diag-cta .container { position: relative; z-index: 1; text-align: center; }
.diag-cta__categorias {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin: var(--space-xl) 0;
}
.diag-cta__cat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  text-align: left;
}
.diag-cta__cat-icon {
  display: flex;
  align-items: center;
  margin-bottom: 0.4rem;
  color: var(--verde);
}
.diag-cta__cat-nome {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--branco);
}
.diag-cta__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--branco);
  margin-bottom: var(--space-sm);
}
.diag-cta__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  max-width: 540px;
  margin: 0 auto var(--space-xl);
  line-height: 1.65;
}

/* ---- CTA FINAL ---- */
.cta-final {
  background: var(--azul-deep);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(165,205,25,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--verde);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}
.cta-final__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}
.cta-final__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--branco);
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: var(--space-xl) 0 var(--space-lg);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer__logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: var(--space-sm);
}
.footer__slogan {
  font-size: 0.9rem;
  color: var(--cinza-600);
  font-weight: 500;
  line-height: 1.6;
}
.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--verde);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-sm);
}
.footer__link {
  display: block;
  font-size: 0.9rem;
  color: var(--cinza-600);
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--ease);
}
.footer__link:hover { color: var(--verde); }
.footer__link--wpp {
  color: #1a7a3a !important;
  font-weight: 700;
  font-size: 1rem;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--cinza-600);
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.footer__contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 0.1rem;
  color: var(--cinza-600);
}
.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  align-items: center;
  text-align: center;
}
.footer__copy {
  font-size: 0.8rem;
  color: var(--cinza-400);
  font-weight: 400;
}
.footer__autotrac {
  font-size: 0.78rem;
  color: var(--cinza-400);
}

/* ---- RESPONSIVO ---- */
@media (min-width: 640px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .dores__grid { grid-template-columns: repeat(2, 1fr); }
  .solucoes__grid { grid-template-columns: repeat(2, 1fr); }
  .diag-cta__categorias { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .hero__actions { flex-direction: row; align-items: center; }
  .hero__inner { grid-template-columns: 3fr 2fr; }
  .dores__grid { grid-template-columns: repeat(3, 1fr); }
  .solucoes__grid { grid-template-columns: repeat(4, 1fr); }
  .diag-cta__categorias { grid-template-columns: repeat(6, 1fr); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .depoimentos__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Hero: conteúdo ocupa largura total */
.hero__inner { display: block; }
.hero__right  { display: none; }

/* ---- PAINEL DE RASTREAMENTO ANIMADO ---- */
.tracker {
  background: var(--azul-deep);
  border: 1px solid rgba(165,205,25,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(165,205,25,0.1);
  position: relative;
  height: 440px;
  display: flex;
  flex-direction: column;
}

/* Grid de mapa ao fundo */
.tracker::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(165,205,25,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165,205,25,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Header do painel */
.tracker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.tracker__header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tracker__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 6px #25D366;
  animation: pulse-live 1.8s ease-in-out infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #25D366; }
  50%       { opacity: 0.5; box-shadow: 0 0 14px #25D366; }
}
.tracker__live-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #25D366;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.tracker__timestamp {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* Área do mapa */
.tracker__map {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Rotas (linhas SVG) */
.tracker__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.tracker__route {
  fill: none;
  stroke: rgba(60,119,199,0.35);
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
  animation: dash-move 3s linear infinite;
}
.tracker__route--active {
  stroke: rgba(165,205,25,0.5);
  stroke-width: 2;
  stroke-dasharray: 8 5;
  animation: dash-move 2s linear infinite;
}
@keyframes dash-move {
  to { stroke-dashoffset: -40; }
}

/* Veículos (pontos animados) */
.tracker__veiculo {
  position: absolute;
  width: 10px;
  height: 10px;
}
.tracker__veiculo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--verde);
  box-shadow: 0 0 8px var(--verde);
  position: relative;
  z-index: 2;
}
.tracker__veiculo-dot--azul {
  background: var(--azul-medio);
  box-shadow: 0 0 8px var(--azul-medio);
}
.tracker__veiculo-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--verde);
  animation: radar-pulse 2s ease-out infinite;
}
.tracker__veiculo-pulse--azul {
  border-color: var(--azul-medio);
}
@keyframes radar-pulse {
  0%   { transform: translate(-50%,-50%) scale(0.4); opacity: 0.8; }
  100% { transform: translate(-50%,-50%) scale(2.2); opacity: 0; }
}

/* Label do veículo */
.tracker__veiculo-label {
  position: absolute;
  top: -20px;
  left: 14px;
  background: rgba(21,46,61,0.9);
  border: 1px solid rgba(165,205,25,0.3);
  border-radius: 4px;
  padding: 0.15rem 0.4rem;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--verde);
  white-space: nowrap;
}

/* Animações de movimento dos veículos */
.v1 { animation: move-v1 8s ease-in-out infinite alternate; }
.v2 { animation: move-v2 11s ease-in-out infinite alternate; }
.v3 { animation: move-v3 9s ease-in-out infinite alternate; }
.v4 { animation: move-v4 13s ease-in-out infinite alternate; }
.v5 { animation: move-v5 7s ease-in-out infinite alternate; }

@keyframes move-v1 { 0%{top:20%;left:15%} 100%{top:55%;left:72%} }
@keyframes move-v2 { 0%{top:60%;left:60%} 100%{top:25%;left:30%} }
@keyframes move-v3 { 0%{top:75%;left:20%} 100%{top:40%;left:80%} }
@keyframes move-v4 { 0%{top:10%;left:55%} 100%{top:65%;left:45%} }
@keyframes move-v5 { 0%{top:45%;left:85%} 100%{top:80%;left:10%} }

/* Tooltip flutuante */
.tracker__tooltip {
  position: absolute;
  top: 18%;
  right: 8%;
  background: rgba(21,46,61,0.95);
  border: 1px solid rgba(165,205,25,0.3);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  min-width: 160px;
  animation: float-tooltip 4s ease-in-out infinite;
}
@keyframes float-tooltip {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.tracker__tooltip-title {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}
.tracker__tooltip-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--verde);
  line-height: 1;
}
.tracker__tooltip-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* Footer com KPIs */
.tracker__footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.tracker__kpi {
  padding: 0.65rem 0.75rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.tracker__kpi:last-child { border-right: none; }
.tracker__kpi-valor {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--branco);
  line-height: 1;
}
.tracker__kpi-label {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
}

/* ---- IMPACTO FINANCEIRO NOS CARDS DE DOR (item 5) ---- */
.dor-card__impacto {
  font-size: 0.8rem;
  color: var(--azul-deep);
  font-weight: 700;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(21,46,61,0.15);
  line-height: 1.4;
}

/* ---- SEÇÃO DEPOIMENTOS (item 2) ---- */
.depoimentos {
  background: var(--azul-escuro);
  padding: var(--space-2xl) 0;
}
.depoimentos .section-title { color: var(--branco); }
.depoimentos .section-sub   { color: rgba(255,255,255,0.55); }
.depoimentos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 640px) {
  .depoimentos__grid { grid-template-columns: repeat(2, 1fr); }
}
.depo-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: border-color var(--ease);
}
.depo-card:hover { border-color: rgba(165,205,25,0.3); }
.depo-card--placeholder {
  border-style: dashed;
  opacity: 0.5;
}
.depo-card__aspas {
  font-size: 3.5rem;
  line-height: 0.8;
  color: var(--verde);
  font-family: Georgia, serif;
  font-weight: 700;
}
.depo-card__texto {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.7;
  flex: 1;
}
.depo-card__estrelas {
  color: var(--verde);
  font-size: 1rem;
  letter-spacing: 2px;
}
.depo-card__autor-nome {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--branco);
}
.depo-card__autor-cargo {
  font-size: 0.82rem;
  color: var(--cinza-400);
  font-weight: 500;
  margin-top: 0.15rem;
}

/* ---- MOCK PREVIEW DO RELATÓRIO (item 9) ---- */
.diag-mock {
  background: rgba(12,17,21,0.6);
  border: 1px solid rgba(165,205,25,0.35);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  max-width: 520px;
  margin: 0 auto var(--space-xl);
  text-align: left;
}
.diag-mock__title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--verde);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(165,205,25,0.2);
}
.diag-mock__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.diag-mock__item:last-child { border-bottom: none; }
.diag-mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--verde);
  flex-shrink: 0;
}
.diag-mock__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  flex: 1;
}
.diag-mock__valor {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--verde);
}
.diag-mock__disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: var(--space-sm);
  font-style: italic;
}

/* ---- CATEGORIAS ESTÁTICAS (item 11 — remove interatividade) ---- */
.diag-cta__cat {
  cursor: default;
}
.diag-cta__cat-sub {
  font-size: 0.7rem;
  color: var(--verde);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
  opacity: 0.8;
}

/* ---- WHATSAPP FLUTUANTE ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}
.whatsapp-float::before {
  content: 'Fale conosco';
  position: absolute;
  right: calc(100% + 12px);
  background: var(--preto);
  color: var(--branco);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.whatsapp-float:hover::before {
  opacity: 1;
}
