:root {
  --orange: #FF6A00;
  --orange-dark: #CC5500;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray: #F4F4F4;
}

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--black);
  background: var(--white);
}

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.btn {
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-black {
  background: var(--black);
  color: var(--white);
}

.btn-black:hover {
  background: #222;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 490px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Imagens/Prosper_auto_center_hero.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.8) 40%, rgba(255, 106, 0, 0.2) 100%);
  background-size: 200% 200%;
  animation: gradientMove 10s ease infinite;
  z-index: 2;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  padding: 1% 0% 0% 15%;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
}

.hero-left {
  flex: 620px;
  align-self: center;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 48px;
}

.hero-title span {
  color: var(--orange);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 410px;
  margin-bottom: 3px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-photo {
  height: 80%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  opacity: 0;
  transform: translateX(430px);
  animation: slideInRight 1s ease forwards 0.4s;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(140px);
  }

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ===== SERVIÇOS ===== */
.servicos {
  padding: 40px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

.servico-card {
  background: var(--gray);
  border-radius: 16px;
  padding: 14px 16px 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
  .servico-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }
}

.servico-icon {
  width: 150px;
  height: 150px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.servico-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

@media (hover: hover) {
  .servico-card:hover .servico-icon img {
    transform: scale(1.05);
  }
}

.servico-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6em;
  margin-bottom: 8px;
}

.servico-desc {
  display: none;
}

.servico-whatsapp {
  display: block;
  width: 100%;
  max-width: 230px;
  margin: 10px auto 0;
  transition: transform 0.2s ease;
}

.servico-whatsapp-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (hover: hover) {
  .servico-whatsapp:hover {
    transform: scale(1.06);
  }
}

/* ===== MODAL DE SERVIÇO ===== */
.servico-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
}

.servico-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.servico-modal {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  max-width: 380px;
  width: 100%;
  position: relative;
  text-align: center;
  transform: scale(0.92);
  transition: transform 0.25s ease;
}

.servico-modal-overlay.active .servico-modal {
  transform: scale(1);
}

.servico-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #999;
  cursor: pointer;
}

.servico-modal-close:hover {
  color: var(--black);
}

.servico-modal-icon {
  width: 100%;
  max-width: 130px;
  margin: 0 auto 16px;
}

.servico-modal-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.servico-modal-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.servico-modal-desc {
  color: #555;
  line-height: 1.5;
  margin-bottom: 24px;
  text-align: left;
}

.servico-modal-whatsapp {
  display: block;
  width: 100%;
  max-width: 210px;
  margin: 0 auto;
  transition: transform 0.2s ease;
}

@media (hover: hover) {
  .servico-modal-whatsapp:hover {
    transform: scale(1.06);
  }
}

body.modal-open {
  overflow: hidden;
}

/* ===== CTA FORTE ===== */
.cta-forte {
  position: relative;
  background: linear-gradient(135deg, #FF8A3D 0%, var(--orange) 45%, var(--orange-dark) 100%);
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-forte::before,
.cta-forte::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.cta-forte::before {
  top: -220px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, transparent 70%);
}

.cta-forte::after {
  bottom: -220px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10, 10, 10, 0.15) 0%, transparent 70%);
}

.cta-forte h2,
.cta-forte .btn,
.cta-forte-sub {
  position: relative;
  z-index: 1;
}

.cta-forte h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  max-width: 680px;
  margin: 0 auto 28px;
  color: var(--black);
}

.cta-forte-sub {
  margin-top: 18px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.75);
}

/* ===== DESTAQUES ===== */
.destaques {
  padding: 90px 24px;
  background: var(--gray);
}

.destaques .section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 40px;
}

.destaques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.destaque-card {
  background: var(--white);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
  .destaque-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }
}

.destaque-media {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.destaque-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .destaque-card:hover .destaque-img {
    transform: scale(1.05);
  }
}

.destaque-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  margin-bottom: 0;
}

.destaque-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.destaque-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.destaque-body p {
  color: #555;
  line-height: 1.4;
  margin-bottom: 20px;
}

.destaque-whatsapp {
  display: block;
  width: 100%;
  max-width: 200px;
  margin-top: auto;
  transition: transform 0.2s ease;
}

.destaque-whatsapp-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (hover: hover) {
  .destaque-whatsapp:hover {
    transform: scale(1.06);
  }
}

.badge {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ===== PARCEIROS ===== */
.parceiros {
  padding: 80px 24px;
  text-align: center;
}

.parceiros .section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 40px;
}

.parceiros-viewport {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.parceiros-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 40px;
  animation: parceirosScroll 24s linear infinite;
}

@keyframes parceirosScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--marquee-distance, 50%))); }
}

.parceiro-logo {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ===== SOBRE ===== */
.sobre {
  padding: 60px 24px;
}

.sobre-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--black);
  border-radius: 24px;
  display: flex;
  overflow: hidden;
}

.sobre-text {
  flex: 1 1 50%;
  padding: 60px;
  color: var(--white);
}

.sobre-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 18px;
}

.sobre-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.5;
}

.google-rating {
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 28px;
}

.sobre-photo {
  flex: 1 1 50%;
  background-image: url('Imagens/Proper_Auto_Center_cuidando_de_seu_bem.webp');
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

/* ===== MAPA ===== */
.mapa {
  padding: 90px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.mapa .section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 40px;
}

.mapa-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.mapa-info {
  background: var(--gray);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.mapa-info p {
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq {
  padding: 90px 24px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--gray);
  border-radius: 12px;
  padding: 24px 28px;
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.faq-item p {
  color: #444;
  line-height: 1.6;
}

.faq-item a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
}

/* ===== RODAPÉ ===== */
.footer {
  width: 100%;
  background: var(--orange);
  color: var(--black);
  padding: 64px 24px 0;
}

.footer-content {
  width: 75%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.15);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-img {
  height: 78px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.75);
  margin-bottom: 18px;
}

.footer-dados {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-dados p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.85);
}

.footer-dados a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.2s ease;
}

.footer-dados a:first-of-type {
  margin-top: 4px;
}

.footer-dados a:hover {
  opacity: 0.65;
  text-decoration: underline;
}

.footer-links h3 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  width: fit-content;
  font-size: 0.9rem;
  color: var(--black);
  text-decoration: none;
  padding: 6px 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.65;
  transform: translateX(3px);
}

.footer-loja-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: 14px;
}

.footer-loja-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.75);
}

.footer-bottom {
  width: 75%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 0 28px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(10, 10, 10, 0.7);
  line-height: 1.8;
}

.footer-credit {
  display: inline-block;
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.25s ease, transform 0.25s ease, letter-spacing 0.25s ease;
}

@media (hover: hover) {
  .footer-credit:hover {
    color: var(--white);
    transform: translateY(-2px);
    letter-spacing: 0.02em;
  }
}

/* ===== ROTA (GOOGLE MAPS) FLUTUANTE ===== */
.maps-float {
  position: fixed;
  bottom: 104px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

@media (min-width: 861px) {
  .maps-float {
    bottom: 126px;
    right: 40px;
  }
}

.maps-float-icon {
  background: var(--white);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 861px) {
  .maps-float-icon {
    width: 70px;
    height: 70px;
  }
}

.maps-float-label {
  background: var(--black);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.maps-lottie {
  width: 100%;
  height: 100%;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 861px) {
  .whatsapp-float {
    width: 70px;
    height: 70px;
    bottom: 40px;
    right: 40px;
  }
}

.whatsapp-lottie {
  width: 100%;
  height: 100%;
}

/* ===== CABEÇALHO GLOBAL (todas as páginas) ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo-img {
  height: 62px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a:not(.btn) {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-nav a:not(.btn):hover {
  color: var(--orange);
}

.site-nav-whatsapp {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.site-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.site-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.site-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MENU MOBILE (canvas lateral) ===== */
.site-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.site-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  max-width: 82vw;
  background: var(--black);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.site-drawer.active {
  transform: translateX(0);
}

.site-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.site-drawer-top .site-logo-img {
  height: 50px;
}

.site-drawer-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.site-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.site-drawer-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease;
}

.site-drawer-nav a:hover {
  color: var(--orange);
}

.site-drawer-cta {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

body.drawer-open {
  overflow: hidden;
}

/* ===== PÁGINAS LEGAIS (Política de Privacidade etc.) ===== */
.legal-hero {
  position: relative;
  height: 70vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.legal-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.privacidade-hero-bg {
  background-image: url('Imagens/prosper_auto_center_politicas_de_privacidades.webp');
}

.legal-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  z-index: 2;
}

.legal-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
}

.legal-hero-content .eyebrow {
  color: var(--orange);
}

.legal-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.legal-hero-content h1 span {
  color: var(--orange);
}

.legal-hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.5;
}

.legal-page {
  padding: 130px 24px 100px;
}

.legal-container {
  max-width: 820px;
  margin: 0 auto;
}

.legal-container h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 32px;
}

.legal-container h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-container p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

.legal-container ul {
  margin: 0 0 16px 20px;
}

.legal-container li {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 10px;
}

.legal-container strong {
  color: var(--black);
}

.legal-container a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
}

/* ===== TODOS OS SERVIÇOS (página dedicada) ===== */
.ts-hero {
  height: 60vh;
  min-height: 340px;
}

.ts-hero-bg {
  background-image: url('Imagens/Prosper_auto_center_hero.webp');
}

.ts-hero-btn {
  margin-top: 24px;
}

.ts-section {
  padding: 80px 24px 100px;
  max-width: 1280px;
  margin: 0 auto;
}

.ts-intro {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.ts-intro p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.ts-filtros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.ts-filtro-btn {
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid var(--black);
  background: transparent;
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

@media (hover: hover) {
  .ts-filtro-btn:hover {
    background: var(--black);
    color: var(--white);
  }
}

.ts-filtro-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.ts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ts-card {
  background: var(--gray);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
  .ts-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }
}

.ts-icon {
  color: var(--orange);
  margin-bottom: 14px;
}

.ts-icon svg {
  width: 30px;
  height: 30px;
}

.ts-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}

.ts-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #555;
  margin-bottom: 18px;
}

.ts-card .servico-whatsapp {
  margin-top: auto;
  max-width: 180px;
}

.ts-vazio {
  text-align: center;
  color: #666;
  font-size: 1rem;
  padding: 40px 0;
}

/* ===== SOBRE NÓS (página dedicada) ===== */
.sobre-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 24px 60px;
}

.sobre-page-grid {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre-page-text h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.sobre-page-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

.sobre-page-text a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
}

.sobre-page-contato {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  min-height: 460px;
}

.sobre-page-dados {
  background: var(--gray);
  border-radius: 16px;
  padding: 28px;
}

.sobre-page-dados h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.sobre-page-dados p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.sobre-page-dados a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.sobre-page-dados a:hover {
  text-decoration: underline;
}

.sobre-page-rota {
  margin-top: 8px;
}

.sobre-page-mapa {
  flex: 1;
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
}

.sobre-page-mapa iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .site-menu-toggle {
    display: flex;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 80px 0 24px;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    gap: 14px;
  }

  .hero-left {
    flex: none;
    width: 80%;
    align-self: center;
  }

  .hero-title {
    font-size: 2.1rem;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: none;
    margin: 10px 0;
  }

  .hero-buttons {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero-buttons .btn {
    flex: 1 1 0;
    padding: 12px 10px;
    font-size: 0.85rem;
    justify-content: center;
  }

  .hero-photo {
    height: auto;
    width: 98%;
    max-width: 98%;
    align-self: center;
    margin: 0;
  }

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

  .servico-card {
    padding: 10px 10px 16px;
  }

  .servico-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 0;
  }

  .servico-card h3 {
    font-size: 0.9rem;
    min-height: 2.6em;
  }

  .destaques-grid {
    grid-template-columns: 1fr;
  }

  .sobre-card {
    flex-direction: column;
  }

  .sobre-photo {
    min-height: 220px;
  }

  .mapa-wrapper {
    grid-template-columns: 1fr;
  }

  .parceiros {
    padding: 40px 24px;
  }

  .parceiros-track {
    gap: 20px;
  }

  .parceiro-logo {
    width: 26vw;
    height: auto;
    max-width: none;
  }

  .footer-content {
    width: 88%;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-col {
    align-items: center;
  }

  .footer-dados a {
    margin-left: auto;
    margin-right: auto;
  }

  .sobre-page {
    min-height: auto;
    padding: 90px 24px 50px;
  }

  .sobre-page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sobre-page-contato {
    min-height: auto;
  }

  .sobre-page-mapa {
    min-height: 260px;
  }

  .ts-hero {
    height: auto;
    min-height: 60vh;
  }

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

  .ts-card {
    padding: 18px 14px;
  }

  .ts-card h3 {
    font-size: 0.9rem;
  }

  .footer-bottom {
    width: 88%;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-overlay,
  .hero-left,
  .hero-photo {
    animation: none;
    opacity: 1;
  }

  .parceiros-track {
    animation: none;
  }
}