/* ==========================================================================
   EDSON AUTO CENTER — IDENTIDADE VISUAL INSTITUCIONAL
   Paleta: Branco + Vermelho + Cinza Escuro
   Conceito: Centro automotivo profissional, estabelecido e confiável
   ========================================================================== */

/* --- Design Tokens --- */
:root {
  /* Fundos */
  --bg-page: #FFFFFF;
  --bg-alt: #F5F5F5;
  --bg-dark: #171717;
  --bg-input: #F9FAFB;

  /* Vermelho institucional */
  --color-primary: #D71920;
  --color-primary-hover: #B91C1C;
  --color-primary-dark: #A80F15;

  /* WhatsApp */
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1FAD53;

  /* Utilitários */
  --color-gold: #F59E0B;
  --color-green: #16A34A;
  --color-red-status: #EF4444;

  /* Textos */
  --text-primary: #171717;
  --text-body: #374151;
  --text-muted: #6B7280;
  --text-inverse: #FFFFFF;

  /* Bordas */
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-medium: rgba(0, 0, 0, 0.14);
  --border-focus: var(--color-primary);

  /* Raios */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;

  /* Tipografia */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);

  /* Transições */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  background-color: var(--bg-page);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--color-gold) !important; }
.text-whatsapp { color: var(--color-whatsapp) !important; }

/* --- Cabeçalhos de Seção --- */
.section-title-wrap {
  margin-bottom: 48px;
}

.sub-heading {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.main-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.65;
}

/* --- Botões --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.btn-outline:hover {
  background-color: var(--bg-alt);
  border-color: var(--text-muted);
}

.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  border-color: var(--color-whatsapp);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  border-color: var(--color-whatsapp-hover);
}

.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ==================== 1. TOP BAR ==================== */
.top-bar {
  background-color: #1F2937;
  font-size: 0.82rem;
  color: #D1D5DB;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.location-item i {
  color: var(--color-primary);
  margin-right: 4px;
}

.separator { color: #4B5563; }

.live-status-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: var(--radius-xs);
}

.live-status-wrap.open {
  color: #34D399;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.live-status-wrap.closed {
  color: #F87171;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.top-bar-contact { color: #D1D5DB; }
.top-bar-contact:hover { color: #FFFFFF; }
.top-bar-contact i { color: var(--color-primary); margin-right: 4px; }

.top-bar-whatsapp { color: var(--color-whatsapp); font-weight: 600; }
.top-bar-icon-link { color: #9CA3AF; font-size: 0.95rem; }
.top-bar-icon-link:hover { color: #FFFFFF; }

/* ==================== 2. HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  padding: 12px 0;
  z-index: 100;
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 46px;
  width: auto;
}

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

.nav-item {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-item:hover { color: var(--text-primary); }

.nav-item.active {
  color: var(--text-primary);
  font-weight: 600;
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
}

.mobile-cta-wrap { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xs);
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==================== 3. HERO — FOTOGRÁFICO FULL-WIDTH ==================== */
.hero-block {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('assets/hero-institucional.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.50) 0%,
    rgba(0, 0, 0, 0.40) 60%,
    rgba(0, 0, 0, 0.60) 100%
  );
  z-index: 1;
}

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

.hero-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-services-line {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==================== 4. FAIXA DE CREDIBILIDADE ==================== */
.trust-metrics {
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
}

.metrics-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  border-right: 1px solid var(--border-medium);
  font-size: 0.9rem;
  color: var(--text-body);
}

.metric-item:last-child {
  border-right: none;
}

.metric-item i {
  color: var(--color-primary);
  font-size: 0.85rem;
}

.metric-item .metric-star {
  color: var(--color-gold);
}

.metric-item strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ==================== 5. NOSSA ESTRUTURA ==================== */
.structure-section {
  padding: 80px 0;
  background-color: var(--bg-alt);
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.structure-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.structure-card:hover {
  box-shadow: var(--shadow-md);
}

.structure-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.structure-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.structure-card:hover .structure-img-wrap img {
  transform: scale(1.03);
}

.structure-card-body {
  padding: 20px;
  flex-grow: 1;
}

.structure-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.structure-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==================== 6. SERVIÇOS ==================== */
.services-block {
  padding: 80px 0;
  background-color: var(--bg-page);
}

.services-table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.service-box {
  background-color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.service-box:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.service-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.service-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: rgba(215, 25, 32, 0.06);
  border: 1px solid rgba(215, 25, 32, 0.15);
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  flex-shrink: 0;
}

.service-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.service-checklist {
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-checklist li {
  font-size: 0.82rem;
  color: var(--text-body);
  margin-bottom: 6px;
  position: relative;
  padding-left: 14px;
}

.service-checklist li::before {
  content: '•';
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-size: 1rem;
  line-height: 1;
}

.service-action {
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.service-cta { width: 100%; }

/* ==================== 7. SEÇÃO DE DESTAQUE VERMELHA ==================== */
.diferenciais-block {
  padding: 80px 0;
  background-color: var(--color-primary);
  color: #FFFFFF;
}

.diferenciais-two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.diferenciais-block .sub-heading {
  color: rgba(255, 255, 255, 0.7);
}

.diferenciais-block .main-heading {
  color: #FFFFFF;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
}

.diferenciais-block .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.pillar-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pillar-bullet {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.diferenciais-frame {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.diferenciais-photo {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.frame-footer-quote {
  padding: 24px;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: #FFFFFF;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
}

.quote-signature {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ==================== 8. AGENDAMENTO WHATSAPP ==================== */
.booking-block {
  padding: 80px 0;
  background-color: var(--bg-alt);
}

.booking-card {
  max-width: 860px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.booking-header {
  margin-bottom: 32px;
}

.booking-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.booking-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.booking-inner-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-label {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Seletor de Categoria */
.vehicle-selector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.vehicle-item {
  position: relative;
  cursor: pointer;
}

.vehicle-item input {
  position: absolute;
  opacity: 0;
}

.vehicle-box {
  background-color: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 12px 8px;
  text-align: center;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.vehicle-box i {
  font-size: 1.3rem;
  color: var(--text-muted);
}

.vehicle-box span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.vehicle-item input:checked + .vehicle-box {
  background-color: rgba(215, 25, 32, 0.06);
  border-color: var(--color-primary);
}

.vehicle-item input:checked + .vehicle-box i,
.vehicle-item input:checked + .vehicle-box span {
  color: var(--color-primary);
}

/* Checkboxes */
.service-checkboxes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.checkbox-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  padding: 10px 14px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: var(--transition-fast);
}

.checkbox-option:hover {
  border-color: var(--border-medium);
}

.checkbox-option input {
  position: absolute;
  opacity: 0;
}

.chk-box {
  width: 16px;
  height: 16px;
  border: 1px solid #9CA3AF;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chk-box::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  color: #FFFFFF;
  display: none;
}

.checkbox-option input:checked ~ .chk-box {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.checkbox-option input:checked ~ .chk-box::after {
  display: block;
}

.chk-label {
  font-size: 0.85rem;
  color: var(--text-body);
}

/* Inputs */
.form-columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-control {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #D1D5DB;
  color: var(--text-primary);
  padding: 12px 14px;
  border-radius: var(--radius-xs);
  outline: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.input-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(215, 25, 32, 0.1);
}

.input-control::placeholder {
  color: #9CA3AF;
}

.textarea-control {
  resize: vertical;
  min-height: 70px;
}

select.input-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-submit-row {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* ==================== 9. AVALIAÇÕES ==================== */
.reviews-block {
  padding: 80px 0;
  background-color: var(--bg-page);
}

.reviews-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.review-box {
  background-color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.review-box:hover {
  box-shadow: var(--shadow-md);
}

.review-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #E5E7EB;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-data { flex-grow: 1; }

.reviewer-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.reviewer-stars {
  color: var(--color-gold);
  font-size: 0.75rem;
  margin-top: 1px;
}

.google-tag { color: #4285F4; font-size: 1.1rem; }

.review-comment {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
}

.review-badge-verified {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.reviews-action-center { text-align: center; }

/* ==================== 10. LOCALIZAÇÃO ==================== */
.location-block {
  padding: 80px 0;
  background-color: var(--bg-alt);
}

.location-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.location-details-box {
  background-color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.detail-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background-color: rgba(215, 25, 32, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.detail-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.detail-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.link-contact { color: var(--text-body); }
.link-contact:hover { color: var(--color-primary); }

/* Tabela de Horários */
.schedule-container {
  background-color: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 16px;
}

.schedule-header {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.schedule-header i { color: var(--color-primary); }

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 5px 8px;
  border-radius: var(--radius-xs);
  transition: var(--transition-fast);
}

.schedule-row:hover:not(.today-active) {
  background-color: rgba(0, 0, 0, 0.03);
}

.schedule-row.today-active {
  background-color: rgba(215, 25, 32, 0.06);
  color: var(--text-primary);
  font-weight: 600;
  border-left: 2px solid var(--color-primary);
}

.time-col {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-body);
}

.text-closed { color: var(--color-red-status); }

/* GPS */
.gps-route-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gps-label-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
}

.gps-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.btn-gps-item {
  padding: 8px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #FFFFFF;
}

.btn-maps { background-color: #1A73E8; }
.btn-maps:hover { background-color: #1557B0; }
.btn-waze { background-color: #33CCFF; color: #002233; }
.btn-waze:hover { background-color: #00B4F0; color: #FFFFFF; }
.btn-uber { background-color: #000000; }
.btn-uber:hover { background-color: #1F1F1F; }

/* Frame do Mapa */
.location-map-frame {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 440px;
  box-shadow: var(--shadow-sm);
}

/* ==================== 11. FAQ ==================== */
.faq-block {
  padding: 80px 0;
  background-color: var(--bg-page);
}

.faq-accordion-box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition-fast);
}

.faq-trigger:hover {
  background-color: var(--bg-alt);
}

.faq-icon-sign {
  font-size: 0.8rem;
  color: var(--color-primary);
  transition: transform 0.2s ease;
}

.faq-trigger[aria-expanded="true"] .faq-icon-sign {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 20px;
}

.faq-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-bottom: 18px;
}

/* ==================== 12. CTA FINAL ==================== */
.final-cta-block {
  padding: 60px 0;
  background-color: var(--bg-alt);
}

.final-cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.final-cta-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* ==================== 13. FOOTER ==================== */
.main-footer {
  background-color: #171717;
  border-top: 3px solid var(--color-primary);
  padding: 60px 0 0;
  color: #D1D5DB;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer-brand-img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}

.footer-text {
  font-size: 0.85rem;
  color: #9CA3AF;
  line-height: 1.55;
  margin-bottom: 16px;
}

.footer-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #D1D5DB;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col-title::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-primary);
  margin-top: 6px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 0.85rem;
  color: #9CA3AF;
}

.footer-links-list a:hover { color: #FFFFFF; }

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #9CA3AF;
}

.footer-contacts i {
  color: var(--color-primary);
  margin-top: 3px;
}

.footer-contacts a:hover { color: #FFFFFF; }

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 0.78rem;
  color: #6B7280;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* ==================== 14. WHATSAPP FLUTUANTE ==================== */
.floating-whatsapp-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.floating-whatsapp-action {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
}

.floating-whatsapp-action:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
}

/* ==================== ANIMAÇÃO HERO ==================== */
@keyframes fade-up-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-main-heading {
  animation: fade-up-in 0.5s ease both;
  animation-delay: 0.1s;
}

.hero-subtitle {
  animation: fade-up-in 0.5s ease both;
  animation-delay: 0.2s;
}

.hero-services-line {
  animation: fade-up-in 0.5s ease both;
  animation-delay: 0.3s;
}

.hero-cta-group {
  animation: fade-up-in 0.5s ease both;
  animation-delay: 0.4s;
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 1024px) {
  .diferenciais-two-col {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    flex-wrap: wrap;
    gap: 12px;
  }

  .metric-item {
    border-right: none;
    padding: 8px 16px;
    background-color: #FFFFFF;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border-subtle);
  }

  .reviews-cards-grid {
    grid-template-columns: 1fr;
  }

  .location-content-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .final-cta-buttons {
    justify-content: center;
  }

  .location-map-frame {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }

  .top-bar-right {
    justify-content: center;
    width: 100%;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-150%);
    transition: var(--transition-normal);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    text-align: center;
  }

  .desktop-cta { display: none; }

  .mobile-cta-wrap {
    display: block;
    margin-top: 8px;
  }

  .menu-toggle { display: flex; }

  .hero-block {
    min-height: 70vh;
  }

  .hero-main-heading {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .vehicle-selector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-checkboxes-grid {
    grid-template-columns: 1fr;
  }

  .form-columns-2 {
    grid-template-columns: 1fr;
  }

  .booking-card {
    padding: 24px 16px;
  }

  .gps-actions-grid {
    grid-template-columns: 1fr;
  }

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