.elementor-1232 .elementor-element.elementor-element-fd845fd{--display:flex;}/* Start custom CSS for html, class: .elementor-element-b706bac *//*
 * ============================================================
 *  RODOVAR — CSS PERSONALIZADO COMPLETO
 *  Versão: 5.0  |  Data: Março 2026
 *  Cole em: Elementor > Configurações do Site > CSS Personalizado
 *           ou Aparência > Personalizar > CSS Adicional
 * ============================================================
 *
 *  ÍNDICE:
 *  01. Reset & Variáveis
 *  02. Tipografia Global
 *  03. Utilitários
 *  04. Header & Navegação
 *  05. Hero / Banner
 *  06. Barra de Estatísticas
 *  07. Sobre
 *  08. Serviços
 *  09. Vídeo
 *  10. Simulador de Cotação
 *  11. Parceiros (Marquee)
 *  12. Depoimentos
 *  13. Nossa Equipe
 *  14. Ticker de Notícias
 *  15. Notícias & Atualizações
 *  16. SAC / Ouvidoria
 *  17. CTA Banner
 *  18. Contato
 *  19. Mapa
 *  20. Footer
 *  21. Flutuante WhatsApp
 *  22. Animações & Acessibilidade
 *  23. RESPONSIVO — Desktop Large (1440px+)
 *  24. RESPONSIVO — Laptop (1024–1279px)
 *  25. RESPONSIVO — Tablet Large (768–1023px)
 *  26. RESPONSIVO — Tablet (600–767px)
 *  27. RESPONSIVO — Mobile Large (480–599px)
 *  28. RESPONSIVO — Mobile (360–479px)
 *  29. RESPONSIVO — Mobile Small (< 360px)
 *  30. RESPONSIVO — Landscape Mobile
 *  31. RESPONSIVO — Tablet Landscape
 * ============================================================
 */

/* ============================================================
   01. RESET & VARIÁVEIS
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:         #0a0a0a;
  --dark:          #111111;
  --surface:       #181818;
  --border:        rgba(255,255,255,.08);
  --yellow:        #F5C400;
  --yellow2:       #E0A800;
  --green:         #25D366;
  --red:           #E53935;
  --red2:          #C62828;
  --white:         #F5F5F0;
  --gray:          #999;
  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Barlow', sans-serif;
  --section-py:    100px;
  --container-max: 1280px;
  --container-px:  24px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ============================================================
   02. TIPOGRAFIA GLOBAL
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--yellow);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: .95;
  letter-spacing: .02em;
  color: #fff;
}
.section-title span { color: var(--yellow); }

.section-body {
  color: rgba(255,255,255,.65);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 20px;
}

/* ============================================================
   03. UTILITÁRIOS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* Botões */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--yellow2); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  border: 1.5px solid rgba(255,255,255,.35);
  transition: border-color .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-wa:hover { background: #128c7e; transform: translateY(-2px); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-dark:hover { background: #222; transform: translateY(-2px); }

.btn-wa-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-wa-dark:hover { background: #128c7e; transform: translateY(-2px); }

/* ============================================================
   04. HEADER & NAVEGAÇÃO
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.55);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--container-px);
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 16px;
}

.logo img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width .25s;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }

.header-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  letter-spacing: .06em;
  transition: background .2s, transform .2s !important;
  white-space: nowrap;
}
.header-cta::after { display: none !important; }
.header-cta:hover { background: var(--yellow2) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: .3s;
  border-radius: 1px;
}

.mobile-menu {
  display: none;
  background: rgba(10,10,10,.99);
  padding: 20px var(--container-px);
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .2s, padding-left .2s;
}
.mobile-menu a:hover { color: var(--yellow); padding-left: 6px; }
.mobile-menu a:last-child { border-bottom: none; }

/* ============================================================
   05. HERO / BANNER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,0,0,.84) 0%,
    rgba(0,0,0,.48) 55%,
    rgba(0,0,0,.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--container-px) 80px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 1px;
  width: fit-content;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  line-height: .95;
  letter-spacing: .02em;
  color: #fff;
  max-width: 760px;
  opacity: 0;
  animation: fadeUp .8s .4s forwards;
}
.hero-title span { color: var(--yellow); }

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  margin-top: 20px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp .8s .6s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .8s forwards;
}

.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: background .3s, transform .3s;
  border: none;
}
.hero-dot.active { background: var(--yellow); transform: scale(1.4); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: .4; }
  50%       { transform: scaleY(.6); opacity: .1; }
}

/* Mascote */
.hero-mascot {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: clamp(200px, 20vw, 340px);
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,.5));
  animation: mascotFloat 4s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes mascotFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ============================================================
   06. BARRA DE ESTATÍSTICAS
   ============================================================ */
.stats-bar { background: var(--yellow); padding: 0; }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.stat-item.visible { opacity: 1; transform: none; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(0,0,0,.12);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  color: var(--black);
  line-height: 1;
  letter-spacing: .02em;
}
.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0,0,0,.6);
  margin-top: 4px;
}

/* ============================================================
   07. SOBRE
   ============================================================ */
.section-about { padding: var(--section-py) 0; background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.about-carousel {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .9s;
}
.about-slide.active { opacity: 1; }
.about-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 20px 24px;
  text-align: center;
  z-index: 2;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
}
.about-badge-txt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ============================================================
   08. SERVIÇOS
   ============================================================ */
.section-services { padding: var(--section-py) 0; background: var(--black); }
.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 24px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--dark);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--yellow);
  transition: width .4s;
}
.service-card:hover { background: var(--surface); }
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(245,196,0,.08);
  border: 1px solid rgba(245,196,0,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background .3s, border-color .3s, transform .3s;
}
.service-card:hover .service-icon {
  background: rgba(245,196,0,.16);
  border-color: rgba(245,196,0,.4);
  transform: translateY(-2px);
}
.service-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.service-arrow {
  position: absolute;
  top: 44px;
  right: 36px;
  font-size: 18px;
  color: rgba(255,255,255,.15);
  transition: color .3s, transform .3s;
}
.service-card:hover .service-arrow {
  color: var(--yellow);
  transform: translate(3px,-3px);
}

/* ============================================================
   09. VÍDEO
   ============================================================ */
.section-video { padding: var(--section-py) 0; background: var(--surface); }
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.video-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.video-feature {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 18px 20px;
}
.video-feature-icon { color: var(--yellow); font-size: 18px; margin-bottom: 8px; }
.video-feature-title { font-size: 13px; font-weight: 600; color: #fff; }

/* ============================================================
   10. SIMULADOR DE COTAÇÃO
   ============================================================ */
.section-simulator {
  padding: var(--section-py) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.section-simulator::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,196,0,.06), transparent 70%);
  pointer-events: none;
}
.simulator-head {
  text-align: center;
  margin-bottom: 56px;
}
.simulator-head .section-label { justify-content: center; }
.simulator-head .section-label::before { display: none; }
.simulator-head .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--yellow);
}
.simulator-box {
  max-width: 860px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px 48px 40px;
}
.sim-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sim-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.sim-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.sim-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sim-select,
.sim-input {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  padding: 13px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.sim-select:focus,
.sim-input:focus { outline: none; border-color: var(--yellow); }
.sim-select option { background: var(--surface); }
.sim-cta { margin-top: 36px; text-align: center; }
.sim-send-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  transition: background .2s, transform .2s, opacity .2s;
  cursor: pointer;
}
.sim-send-btn.disabled { opacity: .45; pointer-events: none; }
.sim-send-btn:not(.disabled):hover {
  background: #128c7e;
  transform: translateY(-2px);
}
.sim-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-top: 16px;
}

/* ============================================================
   11. PARCEIROS (MARQUEE)
   ============================================================ */
.section-partners {
  padding: 60px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.partners-head { text-align: center; margin-bottom: 40px; }
.partners-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: .02em;
  color: #fff;
}
.partners-head p { color: var(--gray); font-size: 14px; margin-top: 6px; }
.marquee-wrap { position: relative; overflow: hidden; }
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--black), transparent); }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-logo {
  height: 48px;
  width: auto;
  display: block;
  filter: grayscale(100%) brightness(1.4);
  opacity: .7;
  transition: filter .3s, opacity .3s, transform .3s;
  flex-shrink: 0;
}
.partner-logo:hover { filter: none; opacity: 1; transform: translateY(-2px); }

/* ============================================================
   12. DEPOIMENTOS
   ============================================================ */
.section-testimonials { padding: var(--section-py) 0; background: var(--surface); }
.testimonials-head { text-align: center; margin-bottom: 60px; }
.testimonials-head .section-label { justify-content: center; }
.testimonials-head .section-label::before { display: none; }
.testimonials-head .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--yellow);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.testimonial-card { background: var(--dark); padding: 40px 36px; }
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--yellow);
  font-size: 14px;
  margin-bottom: 20px;
}
.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245,196,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: #fff; }
.testimonial-role { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ============================================================
   13. NOSSA EQUIPE
   ============================================================ */
.section-team { padding: 0; background: var(--dark); overflow: hidden; }
.team-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.team-photo-side { position: relative; overflow: hidden; }
.team-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s ease;
}
.team-photo-side:hover img { transform: scale(1.04); }
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0) 60%, rgba(10,10,10,.9) 100%);
  pointer-events: none;
}
.team-photo-tag {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--yellow);
  color: var(--black);
  padding: 10px 18px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.team-content-side {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
}
.team-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.team-stat {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-left: 3px solid var(--yellow);
  border-radius: 2px;
  padding: 18px 20px;
}
.team-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--yellow);
  line-height: 1;
}
.team-stat-num.emoji { font-family: sans-serif; font-size: 28px; }
.team-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.team-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

/* ============================================================
   14. TICKER DE NOTÍCIAS
   ============================================================ */
.news-ticker {
  background: var(--yellow);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.news-ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--black);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 0 20px;
  display: flex;
  align-items: center;
  z-index: 2;
  white-space: nowrap;
  text-transform: uppercase;
}
.news-ticker-viewport { overflow: hidden; margin-left: 190px; }
.news-ticker-track {
  display: flex;
  gap: 60px;
  width: max-content;
}
.news-ticker-track.running {
  animation: tickerMove var(--ticker-duration, 80s) linear infinite;
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.news-ticker-item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--black);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.news-ticker-item::before { content: '●'; font-size: 6px; color: rgba(0,0,0,.4); }
.ticker-source {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  background: rgba(0,0,0,.12);
  padding: 2px 6px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============================================================
   15. NOTÍCIAS & ATUALIZAÇÕES
   ============================================================ */
.section-news {
  padding: var(--section-py) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.section-news::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--yellow), transparent);
}
.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.news-card {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background .3s;
}
.news-card:hover { background: var(--surface); }
.news-card-img { position: relative; overflow: hidden; }
.news-card-img img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.7), transparent 50%);
}
.news-card-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 1px;
  margin-bottom: 10px;
  width: fit-content;
}
.news-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-date {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: .06em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.news-card-date i { color: var(--yellow); font-size: 10px; }
.news-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .02em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.news-card-excerpt {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  flex: 1;
}
.news-card--featured .news-card-img { aspect-ratio: 16/9; }
.news-card--featured .news-card-title { font-size: 30px; }
.news-card--featured .news-card-excerpt { font-size: 14px; }
.news-card--featured .news-card-body { padding: 28px 32px 32px; }
.news-card--small .news-card-img { aspect-ratio: 16/9; }
.news-card--small .news-card-title { font-size: 18px; }
.news-card--small .news-card-body { padding: 20px 24px 24px; }

/* ============================================================
   16. SAC / OUVIDORIA
   ============================================================ */
.section-sac {
  padding: var(--section-py) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.section-sac::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}
.section-sac::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,57,53,.05), transparent 70%);
  pointer-events: none;
}
.sac-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  align-items: start;
}
.sac-info { position: sticky; top: 100px; }
.sac-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.sac-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--red);
}
.sac-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: .95;
  letter-spacing: .02em;
  color: #fff;
}
.sac-title span { color: var(--red); }
.sac-desc {
  color: rgba(255,255,255,.6);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 20px;
}
.sac-commitments {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.sac-commit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 2px;
}
.sac-commit-icon { color: var(--red); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.sac-commit-text { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }
.sac-commit-text strong { display: block; color: #fff; font-weight: 600; font-size: 13px; margin-bottom: 2px; }
.sac-wa-alt {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(37,211,102,.05);
  border: 1px solid rgba(37,211,102,.18);
  border-radius: 4px;
}
.sac-wa-alt i { font-size: 26px; color: var(--green); flex-shrink: 0; }
.sac-wa-alt-text { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.5; }
.sac-wa-alt-text strong { display: block; color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.sac-wa-alt-text a { color: var(--green); font-weight: 700; transition: color .2s; }
.sac-wa-alt-text a:hover { color: #1aad57; }
.sac-form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  padding: 44px 44px 40px;
}
.sac-form-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 4px;
}
.sac-form-subtitle { font-size: 13px; color: var(--gray); margin-bottom: 28px; }
.sac-field { margin-bottom: 16px; }
.sac-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 7px;
}
.sac-input, .sac-select, .sac-textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  padding: 13px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}
.sac-input:focus, .sac-select:focus, .sac-textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(229,57,53,.04);
}
.sac-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.sac-select option { background: var(--surface); }
.sac-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sac-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.sac-privacy { font-size: 11px; color: rgba(255,255,255,.28); line-height: 1.5; max-width: 240px; }
.sac-privacy i { color: var(--gray); margin-right: 4px; }
.sac-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.sac-submit-btn:hover { background: var(--red2); transform: translateY(-2px); }
.sac-submit-btn.disabled { opacity: .4; cursor: not-allowed; }
.sac-success {
  display: none;
  margin-top: 20px;
  padding: 18px 22px;
  background: rgba(37,211,102,.06);
  border: 1px solid rgba(37,211,102,.22);
  border-radius: 4px;
}
.sac-success.show { display: flex; align-items: center; gap: 14px; }
.sac-success i { color: var(--green); font-size: 22px; flex-shrink: 0; }
.sac-success-text { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.5; }
.sac-success-text strong { color: #fff; display: block; margin-bottom: 2px; }

/* ============================================================
   17. CTA BANNER
   ============================================================ */
.section-cta {
  padding: var(--section-py) 0;
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23000' fill-opacity='.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; text-align: center; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  line-height: .95;
  letter-spacing: .02em;
  color: var(--black);
}
.cta-sub {
  font-size: 17px;
  color: rgba(0,0,0,.6);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ============================================================
   18. CONTATO
   ============================================================ */
.section-contact { padding: var(--section-py) 0; background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,196,0,.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.contact-value { font-size: 15px; color: #fff; line-height: 1.6; }
.contact-value a { color: var(--yellow); transition: color .2s; }
.contact-value a:hover { color: var(--yellow2); }
.contact-wa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.wa-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px 18px;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 500;
  transition: border-color .2s, background .2s;
}
.wa-card:hover { border-color: var(--green); background: rgba(37,211,102,.06); color: #fff; }
.wa-card i { color: var(--green); font-size: 20px; flex-shrink: 0; }

/* ============================================================
   19. MAPA
   ============================================================ */
.section-map { height: 380px; }
.section-map iframe { width: 100%; height: 100%; display: block; border: 0; }

/* ============================================================
   20. FOOTER
   ============================================================ */
.site-footer {
  background: #070707;
  padding: 72px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-logo img { height: 40px; margin-bottom: 18px; }
.footer-about { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.75; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 15px;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--yellow); color: var(--black); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.45); transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.25); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ============================================================
   21. FLUTUANTE WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.float-wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(.9); opacity: .8; }
  70%  { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* ============================================================
   22. ANIMAÇÕES & ACESSIBILIDADE
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s, transform .7s;
}
.reveal.visible { opacity: 1; transform: none; }

/* Focus visível */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   23. RESPONSIVO — DESKTOP LARGE (1440px+)
   ============================================================ */
@media (min-width: 1440px) {
  :root {
    --section-py: 120px;
    --container-px: 40px;
  }
  .main-nav { gap: 36px; }
  .main-nav a { font-size: 13px; }
  .about-grid { gap: 100px; }
  .team-content-side { padding: 100px 80px; }
}

/* ============================================================
   24. RESPONSIVO — LAPTOP (1024–1279px)
   ============================================================ */
@media (max-width: 1279px) {
  .main-nav { gap: 22px; }
  .main-nav a { font-size: 11.5px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; }
  .team-content-side { padding: 60px 48px; }
}

@media (max-width: 1100px) {
  .main-nav { gap: 14px; }
  .header-cta { padding: 8px 14px !important; font-size: 11px !important; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   25. RESPONSIVO — TABLET LARGE (768–1023px)
   ============================================================ */
@media (max-width: 1023px) {
  :root { --section-py: 80px; }

  /* Header → hamburger */
  .main-nav { display: none; }
  .hamburger { display: flex; }

  /* Layouts de 2 colunas → 1 */
  .about-grid,
  .video-grid,
  .contact-grid,
  .sac-grid { grid-template-columns: 1fr; gap: 48px; }

  .sac-info { position: static; }

  /* Serviços → 2 colunas */
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* Footer → 2 colunas */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Equipe */
  .team-split { grid-template-columns: 1fr; }
  .team-photo-side { height: 420px; }
  .team-photo-overlay {
    background: linear-gradient(to top, rgba(10,10,10,.8), transparent 60%);
  }
  .team-content-side { padding: 56px 44px; }

  /* Notícias → 2 colunas */
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--featured { grid-column: 1 / -1; }

  /* Depoimentos → 1 coluna */
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  /* Mascote menor */
  .hero-mascot { width: clamp(150px, 18vw, 250px); right: 3%; }
  .hero-content { padding: 100px 28px 80px; }

  /* About carousel menor */
  .about-carousel { aspect-ratio: 16/9; }
}

/* ============================================================
   26. RESPONSIVO — TABLET (600–767px)
   ============================================================ */
@media (max-width: 767px) {
  :root { --section-py: 72px; }

  .logo img { height: 36px; }
  .header-inner { padding: 14px 20px; }

  /* Hero */
  .hero-content { padding: 88px 20px 72px; }
  .hero-sub { max-width: 100%; }
  .hero-scroll { display: none; }
  .hero-actions { gap: 10px; }
  .hero-mascot { width: 150px; right: 2%; opacity: .92; }

  /* Stats → 2 colunas */
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { padding: 22px 16px; }

  /* Serviços → 1 coluna */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }

  /* Video features → 2 colunas */
  .video-features { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Simulador */
  .simulator-box { padding: 28px 20px; }
  .sim-grid-2 { grid-template-columns: 1fr; }
  .sim-grid-3 { grid-template-columns: 1fr 1fr; }
  .sim-sub-grid { grid-template-columns: 1fr 1fr; }
  .sim-send-btn { width: 100%; justify-content: center; }

  /* Depoimentos */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Equipe */
  .team-content-side { padding: 44px 24px; }
  .team-stats-row { grid-template-columns: 1fr 1fr; }
  .team-photo-side { height: 340px; }

  /* Ticker */
  .news-ticker-viewport { margin-left: 0; }
  .news-ticker-label { display: none; }

  /* Notícias → 1 coluna */
  .news-grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-column: auto; }
  .news-card--featured .news-card-title { font-size: 22px; }

  /* SAC */
  .sac-form-box { padding: 28px 20px; }
  .sac-grid-2 { grid-template-columns: 1fr 1fr; }
  .sac-form-footer { flex-direction: column; align-items: stretch; }
  .sac-submit-btn { width: 100%; justify-content: center; }

  /* Contato */
  .contact-wa-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Mapa */
  .section-map { height: 300px; }
}

/* ============================================================
   27. RESPONSIVO — MOBILE LARGE (480–599px)
   ============================================================ */
@media (max-width: 599px) {
  :root { --section-py: 64px; }

  .header-inner { padding: 12px 16px; }
  .logo img { height: 34px; }

  /* Hero */
  .hero-content { padding: 84px 16px 64px; }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-wa,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .hero-mascot { width: 124px; opacity: .88; }

  /* Serviços */
  .services-head { flex-direction: column; align-items: flex-start; }
  .services-head .btn-primary { width: 100%; justify-content: center; }

  /* Simulador */
  .sim-grid-2,
  .sim-grid-3,
  .sim-sub-grid { grid-template-columns: 1fr; }

  /* Equipe */
  .team-photo-side { height: 300px; }
  .team-stats-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .team-actions { flex-direction: column; }
  .team-actions a { width: 100%; justify-content: center; }

  /* Notícias */
  .news-grid { background: none; gap: 14px; }
  .news-card { border-radius: 4px; }

  /* SAC */
  .sac-grid-2 { grid-template-columns: 1fr; }

  /* Contato */
  .contact-wa-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-dark,
  .cta-actions .btn-wa-dark { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; gap: 16px; }

  /* Float WA */
  .float-wa { width: 52px; height: 52px; font-size: 22px; bottom: 20px; right: 20px; }
}

/* ============================================================
   28. RESPONSIVO — MOBILE (360–479px)
   ============================================================ */
@media (max-width: 479px) {
  :root { --container-px: 16px; }

  .hero-title { font-size: clamp(40px, 12vw, 60px); }
  .hero-sub { font-size: 14px; }
  .hero-mascot { width: 112px; right: 0; }
  .hero-dots { bottom: 24px; }

  .stat-number { font-size: 26px; }
  .stat-label { font-size: 10px; }

  .section-title { font-size: clamp(32px, 10vw, 52px); }

  .about-actions,
  .team-actions { flex-direction: column; }
  .about-actions a,
  .team-actions a { width: 100%; justify-content: center; }

  .service-card { padding: 28px 20px; }
  .service-title { font-size: 22px; }

  .video-features { grid-template-columns: 1fr; }

  .team-stat-num { font-size: 26px; }
  .team-content-side { padding: 36px 20px; }

  .news-card--featured .news-card-title { font-size: 20px; }
  .news-card--small .news-card-title { font-size: 15px; }

  .section-map { height: 260px; }

  .footer-grid { gap: 22px; }
  .footer-social { gap: 8px; flex-wrap: wrap; }
  .mobile-menu a { font-size: 13px; }
}

/* ============================================================
   29. RESPONSIVO — MOBILE SMALL (< 360px) — iPhone SE, Galaxy A
   ============================================================ */
@media (max-width: 359px) {
  :root { --container-px: 12px; }

  .logo img { height: 28px; }
  .header-inner { padding: 12px; }

  .hero-title { font-size: 36px; }
  .hero-badge { font-size: 9px; padding: 5px 10px; }
  .hero-mascot { display: none; }

  .section-title { font-size: 30px; }

  .btn-primary,
  .btn-wa,
  .btn-outline,
  .btn-dark,
  .btn-wa-dark { font-size: 12px; padding: 12px 18px; }

  .service-card { padding: 22px 16px; }
  .simulator-box,
  .sac-form-box { padding: 18px 12px; }

  .testimonial-card { padding: 24px 18px; }
  .wa-card { padding: 12px; font-size: 12px; }

  .footer-grid { gap: 18px; }
  .footer-col h4 { font-size: 10px; }
  .footer-links a { font-size: 12px; }

  .float-wa { width: 48px; height: 48px; font-size: 20px; bottom: 16px; right: 16px; }
}

/* ============================================================
   30. RESPONSIVO — LANDSCAPE MOBILE
   ============================================================ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { height: auto; min-height: 100vh; }
  .hero-content {
    padding: 80px var(--container-px) 40px;
    justify-content: flex-start;
  }
  .hero-title { font-size: clamp(34px, 6vw, 56px); }
  .hero-mascot { width: 100px; bottom: 0; }
  .hero-scroll { display: none; }
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   31. RESPONSIVO — TABLET LANDSCAPE (768–1023px landscape)
   ============================================================ */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
  .about-grid,
  .video-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }

  .news-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .news-card--featured { grid-column: auto; }

  .team-split { grid-template-columns: 1fr 1fr; }
  .team-photo-side { height: auto; }
  .team-photo-overlay {
    background: linear-gradient(to right, rgba(10,10,10,0) 55%, rgba(10,10,10,.9) 100%);
  }

  .hero-mascot { width: 180px; }
}

/* ============================================================
   REDUCED MOTION — Acessibilidade
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .hero-mascot { animation: none; }
  .marquee-track,
  .news-ticker-track { animation-play-state: paused; }
}

/*
 * ============================================================
 *  FIM DO CSS — RODOVAR v5.0
 *  Compatível com: WordPress 6.x + Elementor 3.x
 *  Testado em: Chrome, Firefox, Safari, Edge
 *  Breakpoints: 1440+ | 1280 | 1100 | 1024 | 768 | 600 | 480 | 360
 * ============================================================
 *//* End custom CSS */