:root {
  --bg: #020617;
  --bg-elevated: #020617;
  --surface: #020617;
  --accent: #22c55e;
  --accent-soft: rgba(34,197,94,0.14);
  --accent-blue: #2563eb;
  --accent-blue-soft: rgba(37,99,235,0.25);
  --border-subtle: rgba(30,64,175,0.55);
  --text: #e5e7eb;
  --text-soft: #9ca3af;
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 42%, #000 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}

/* Pseudo-elemento para a imagem de fundo com opacidade */
body::before {
  content: "";
  position: fixed; /* Fixa a imagem no viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/bg-pattern-placeholder.png');
  background-repeat: repeat;
  background-size: auto; /* Mantém o tamanho original do padrão */
  opacity: 0.1; /* AQUI VOCÊ CONTROLA A TRANSPARÊNCIA (0.1 = 10% opaco, 1.0 = 100% opaco) */
  z-index: -3; /* Coloca bem atrás de tudo */
  pointer-events: none; /* Garante que não interfira com cliques */
}

/* Garante que o gradiente original do body continue funcionando */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, #020617 0, #020617 42%, #000 100%);
  z-index: -4; /* Abaixo do padrão e do conteúdo */
  pointer-events: none;
}


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

/* Layout helpers */

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

section {
  padding: 64px 0;
}

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

/* Header / nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(15,23,42,0.9), rgba(15,23,42,0.82), transparent);
  border-bottom: 1px solid rgba(15,23,42,0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 12px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name {
  font-weight: 700;
  font-size: 16px;
  color: #f9fafb;
}

.brand-tagline {
  font-size: 11px;
  color: #9ca3af;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

.nav-links a {
  text-decoration: none;
  color: #cbd5f5;
  opacity: 0.92;
}

.nav-links a:hover {
  color: #f9fafb;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.9);
  color: #e5e7eb;
  font-size: 12px;
  text-decoration: none;
}

.nav-call i {
  font-size: 16px;
}

.nav-call:hover {
  border-color: #22c55e;
  color: #bbf7d0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  color: #052e16;
  font-weight: 650;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(16,185,129,0.45);
}

.btn-primary.small {
  padding-inline: 14px;
}

.btn-primary:hover {
  filter: brightness(1.03);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 22px;
}

.hide-sm { display: inline; }
.show-sm { display: none; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 60px 12px auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;
    background: rgba(15,23,42,0.98);
    border: 1px solid rgba(31,41,55,0.9);
    transform: scale(0.98);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .hide-sm { display: none; }
  .show-sm { display: inline; }
}

/* Hero (HOME PAGE) */

.hero {
  position: relative;
  min-height: 92vh;
  color: #f9fafb;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(15,23,42,0.88) 0, rgba(15,23,42,0.98) 62%, rgba(2, 6, 23, 0.95) 90%, transparent 100%),
    radial-gradient(circle at top left, rgba(37,99,235,0.35), transparent 55%);
}

.hero-inner {
  padding-top: 82px;
  padding-bottom: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
  position: relative;
}

.hero-copy h1 {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.1;
  margin: 10px 0 14px;
}

.hero-copy p {
  font-size: 14px;
  color: #d1d5db;
  margin: 0 0 14px; /* ESPAÇAMENTO AUMENTADO */
}

/* NOVO SLOGAN DO HERO */
.hero-slogan {
  font-size: 13px;
  color: #a5b4fc;
  font-weight: 500;
  margin: 0 0 14px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.88);
  border: 1px solid rgba(55,65,81,0.9);
  font-size: 12px;
  /* --- MUDANÇAS AQUI --- */
  color: #facc15; /* Cor amarela para combinar com a estrela e ser legível */
  text-decoration: none;
}

.hero-badge:hover {
  text-decoration: underline; /* Adiciona o sublinhado no hover */
}

/* Regras '.hero-badge a' e '.hero-badge a:hover' removidas pois estavam incorretas */

.hero-badge .star {
  font-size: 14px;
}

.hero-serving {
  font-size: 13px;
  margin-bottom: 12px;
}

.hero-serving strong {
  color: #e5e7eb;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 16px 0 10px;
}

.hero-cta-row .secondary {
  font-size: 12px;
  color: #e5e7eb;
}

.hero-cta-row .secondary a {
  color: #a5b4fc;
  text-decoration: underline;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px 18px;
  margin-top: 10px;
  font-size: 12px;
  color: #d1d5db;
}

.hero-bullets i {
  color: #22c55e;
  margin-right: 6px;
  font-size: 16px;
}

.hero-scroll {
  margin-top: 18px;
  font-size: 11px;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-scroll i {
  font-size: 16px;
}

.hero-logo-glow {
  position: absolute;
  top: 90px;
  right: 6%;
  pointer-events: none;
}

.hero-logo-glow img {
  width: 210px;
  height: 210px;
  object-fit: contain;
  opacity: 0.8;
  filter: drop-shadow(0 0 40px rgba(37,99,235,0.9));
  transform: translateY(6px) scale(0.94);
  animation: logoFade 1.3s ease-out 0.4s forwards;
}

@keyframes logoFade {
  to { opacity: 0.94; transform: translateY(0) scale(1); }
}

/* Quick quote form (HOME PAGE) */

.form-card {
  background: rgba(15,23,42,0.98);
  border-radius: 24px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(30,64,175,0.9);
  box-shadow: 0 24px 70px rgba(15,23,42,0.96);
}

.form-title {
  font-size: 17px;
  font-weight: 650;
  margin-bottom: 2px;
}

.form-subtitle {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 10px;
  line-height: 1.5; /* Melhor leitura */
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px 10px;
  margin-bottom: 8px;
}

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

.field label {
  font-size: 11px;
  color: #e5e7eb;
  opacity: 0.9;
}

.field input,
.field select,
.field textarea {
  border-radius: 999px;
  border: 1px solid rgba(30,64,175,0.9);
  background: rgba(15,23,42,0.96);
  padding: 7px 10px;
  font-size: 12px;
  color: #e5e7eb;
  outline: none;
}

.field textarea {
  border-radius: 12px;
  min-height: 68px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #64748b;
  font-size: 12px;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg,transparent 50%,#9ca3af 50%),linear-gradient(135deg,#9ca3af 50%,transparent 50%);
  background-position: calc(100% - 14px) 12px, calc(100% - 10px) 12px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.quote-btn {
  margin-top: 6px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg,#22c55e,#4ade80);
  color:#052e16;
  font-weight: 650;
  font-size: 13px;
  cursor: pointer;
}

.quote-btn:hover {
  filter: brightness(1.04);
}

.quote-helper {
  margin-top: 5px;
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.5; /* Melhor leitura */
}

.quote-helper strong {
  color: #e5e7eb;
}

@media (max-width: 960px) {
  .hero-inner {
  padding-top: 82px;
  padding-bottom: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
  position: relative;
}
  .hero-logo-glow {
  position: absolute;
  top: 90px;
  right: 6%;
  pointer-events: none;
}
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

/* Sections shared */

.section-label {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 4px;
}

.section-title {
  font-size: 22px;
  margin: 0 0 8px;
}

.section-intro {
  margin: 0 0 24px; /* ESPAÇAMENTO AUMENTADO */
  font-size: 14px;
  color: #cbd5f5;
  max-width: 600px; /* Limita a largura para leitura */
}

/* Services */

.services-wrap {
  background: radial-gradient(circle at top left, rgba(30,64,175,0.55), rgba(15,23,42,0.98));
  border-radius: 26px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(37,99,235,0.75);
  box-shadow: 0 24px 80px rgba(15,23,42,0.95);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
}

.service-card {
  border-radius: 18px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(37,99,235,0.7);
  background: rgba(15,23,42,0.98);
  box-shadow: 0 18px 52px rgba(15,23,42,1);
  /* EFEITO DE ZOOM ADICIONADO */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* EFEITO DE ZOOM ADICIONADO */
.service-card:hover {
  transform: scale(1.05);
  border-color: var(--accent-blue);
  box-shadow: 0 12px 24px rgba(30, 64, 175, 0.4);
}


.service-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.service-icon {
  font-size: 20px;
  color: #bfdbfe;
}

.service-title {
  font-weight: 600;
  font-size: 14px;
}

.service-body {
  font-size: 12px;
  color: #cbd5f5;
  margin-bottom: 8px;
}

.service-tag {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(22,163,74,0.18);
  color: #bbf7d0;
  font-size: 11px;
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
}

.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(31,41,55,0.9);
  box-shadow: 0 18px 52px rgba(15,23,42,1);
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.gallery-card:hover img {
  transform: scale(1.25);
  filter: saturate(1.12) brightness(1.02);
}

.gallery-caption {
  padding: 8px 9px 9px;
  font-size: 11px;
  color: #cbd5f5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5; /* MELHORA LEITURA DO TEXTO CURTO */
}

@media (max-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
  .gallery-card img { height: 150px; }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

/* ===== NOVA SEÇÃO "FIT CHECK" ===== */
#fit-check {
  background: transparent; /* Garante que o padrão do body apareça */
}

.fit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fit-col {
  border-radius: 20px;
  padding: 16px 18px;
}

.fit-col h3 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 12px;
}

.fit-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: #cbd5f5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fit-col ul li {
  display: flex;
  gap: 8px;
}

.fit-col ul li i {
  font-size: 16px;
  flex-shrink: 0;
}

/* Coluna "Good Fit" */
.good-fit {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.4);
}
.good-fit h3 {
  color: #bbf7d0;
}
.good-fit ul li i {
  color: #22c55e;
}

/* Coluna "Bad Fit" */
.bad-fit {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
}
.bad-fit h3 {
  color: #fecaca;
}
.bad-fit ul li i {
  color: #ef4444;
}

@media (max-width: 768px) {
  .fit-layout {
    grid-template-columns: 1fr;
  }
}
/* ================================== */


/* Reviews */

.platform-badges {
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:10px;
}

.platform-badge {
  display:inline-flex;
  align-items:center;
  padding:4px 9px;
  border-radius:999px;
  font-size:11px;
  text-decoration:none;
  background:rgba(15,23,42,0.85);
  border:1px solid rgba(148,163,184,0.35);
  color:#e5e7eb;
}

.platform-badge i {
  margin-right:5px;
  font-size:14px;
}

.platform-google {
  border-color: rgba(250,204,21,0.6);
  color:#facc15;
}

.platform-turno {
  border-color: rgba(34,197,94,0.6);
  color:#4ade80;
}

.platform-thumbtack {
  border-color: rgba(56,189,248,0.6);
  color:#7dd3fc;
}

.platform-badge:hover {
  background:rgba(15,23,42,0.98);
  box-shadow:0 0 0 1px rgba(15,23,42,0.9), 0 8px 18px rgba(15,23,42,0.85);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0,0.8fr) minmax(0,1.2fr);
  gap: 18px;
  align-items: flex-start;
}

/* LINK DO CARD DE REVIEW GOOGLE */
.rating-summary-link {
  text-decoration: none;
  color: var(--text);
  display: block;
}

.rating-summary {
  background: radial-gradient(circle at top right, rgba(37,99,235,0.6), rgba(15,23,42,0.98));
  border-radius: 20px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(59,130,246,1);
  box-shadow: 0 24px 70px rgba(15,23,42,1);
  font-size: 13px;
  height: 100%;
  /* EFEITO DE ZOOM ADICIONADO */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rating-summary-link:hover .rating-summary {
  transform: scale(1.03);
  border-color: #facc15;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.5);
}


.rating-score {
  font-size: 26px;
  font-weight: 700;
}

.rating-label {
  font-size: 12px;
  color: #e5e7eb;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(22,163,74,0.25);
  color: #bbf7d0;
  font-size: 11px;
  margin-top: 6px;
}

.rating-note {
  font-size: 12px;
  color: #e5e7eb;
  margin-top: 6px;
  line-height: 1.6; /* ESPAÇAMENTO */
}

.rating-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.rating-link i {
  color: #facc15;
}

.reviews-list {
  display: grid;
  gap: 10px;
}

/* LINK DO CARD DE REVIEW INDIVIDUAL */
.review-card-link {
  text-decoration: none;
  display: block;
}

.review-card {
  background: radial-gradient(circle at top left, rgba(37,99,235,0.35), rgba(15,23,42,0.98));
  border-radius: 18px;
  padding: 13px 12px 12px;
  border: 1px solid rgba(59,130,246,0.85);
  font-size: 12px;
  box-shadow: 0 20px 60px rgba(15,23,42,1);
  height: 100%;
  /* EFEITO DE ZOOM ADICIONADO */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card-link:hover .review-card {
  transform: scale(1.03);
  border-color: var(--accent-blue);
  box-shadow: 0 12px 24px rgba(30, 64, 175, 0.5);
}

.review-meta {
  font-size: 11px;
  color: #cbd5f5;
  margin-bottom: 4px;
}

.review-stars {
  color: #facc15;
  margin-right: 4px;
}

.review-text {
  margin: 0;
  color: #e5e7eb;
  line-height: 1.6; /* ESPAÇAMENTO */
}

/* Efeito de Hover para Títulos de Plataforma */
.platform-logo-link {
  text-decoration: none;
  display: inline-block;
}
.platform-logo-link .turno-logo,
.platform-logo-link .thumbtack-logo,
.platform-logo-link .bark-logo {
  transition: filter 0.2s ease, transform 0.2s ease;
}
.platform-logo-link:hover .turno-logo,
.platform-logo-link:hover .thumbtack-logo,
.platform-logo-link:hover .bark-logo {
  filter: brightness(1.2);
  transform: scale(1.05);
}

/* Turno strip */

.turno-strip {
  margin-top: 18px;
  padding: 14px 12px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(45,212,191,0.22), rgba(15,23,42,0.98));
  border: 1px solid rgba(34,197,94,0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between; /* Ajuste para manter métrica à direita */
}

.turno-left {
  flex: 1 1 240px;
}

.turno-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.thumbtack-strip {
  margin-top: 12px;
  padding: 14px 12px;
  border-radius: 18px;
  background: radial-gradient(circle at top right, rgba(59,130,246,0.2), rgba(15,23,42,0.98));
  border: 1px solid rgba(59,130,246,0.6);
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.thumbtack-left {
  flex:1 1 240px;
}

.thumbtack-right {
  display: none; /* REMOVIDO */
}

.thumbtack-logo {
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:#bfdbfe;
  margin-bottom:4px;
  display: inline-block; /* Para o link funcionar */
  background: #0c2b4e; /* Cor do Bark copiada para consistência */
  padding: 2px 6px; /* Cor do Bark copiada para consistência */
  border-radius: 4px; /* Cor do Bark copiada para consistência */
}

.thumbtack-rating .star {
  color:#fde68a;
  margin-right:4px;
}

.thumbtack-rating {
  font-size:13px;
  font-weight:600;
  margin-bottom:4px;
}

.thumbtack-sub {
  font-size:12px;
  color:#d1d5db;
  max-width:460px;
  line-height: 1.6; /* ESPAÇAMENTO */
}

.thumbtack-tags {
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top: 8px; /* ESPAÇAMENTO */
}

.thumbtack-tags span {
  font-size:11px;
  padding:4px 9px;
  border-radius:999px;
  background:rgba(30,64,175,0.5);
  color:#e0f2fe;
}

.thumbtack-btn {
  display:none; /* REMOVIDO */
}

.turno-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #0f766e;
  color: #ecfeff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.turno-rating {
  font-size: 13px;
  margin-bottom: 4px;
}

.turno-rating .star {
  margin-right: 4px;
}

.turno-sub {
  font-size: 12px;
  color: #e5e7eb;
  margin: 0 0 6px;
  line-height: 1.6; /* ESPAÇAMENTO */
}

.turno-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.turno-tags span {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
}

.turno-metric {
  font-size: 11px;
  text-align: right;
  color: #e5e7eb;
}

.turno-metric .metric-label {
  opacity: .8;
  display: block;
}

.turno-metric .metric-value {
  font-weight: 600;
}

.turno-btn {
  display: none; /* REMOVIDO */
}

@media (max-width: 640px) {
  .reviews-layout {
    grid-template-columns: minmax(0,1fr);
  }
  .turno-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .turno-right {
    align-items: flex-start;
  }
}

/* Service areas */

.service-areas {
  background: radial-gradient(circle at top right, rgba(30,64,175,0.5), rgba(15,23,42,0.98));
  border-radius: 26px;
  padding: 22px 20px 22px;
  border: 1px solid rgba(37,99,235,0.8);
  box-shadow: 0 24px 80px rgba(15,23,42,0.95);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 12px;
}


.area-card {
  border-radius: 16px;
  padding: 10px 11px;
  border: 1px solid rgba(30,64,175,0.8);
  background: rgba(15,23,42,0.96);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.area-card:hover {
  background: rgba(30,64,175,0.96);
  box-shadow: 0 10px 26px rgba(15,23,42,0.9);
  transform: translateY(-1px);
}

.area-card:hover a i {
  transform: translateX(2px);
}

.area-card a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  text-decoration: none;
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 600;
}

.area-card a i {
  font-size: 16px;
  color: #a5b4fc;
}

.area-note {
  margin-top: 8px;
  font-size: 11px;
  color: #cbd5f5;
}

@media (max-width: 960px) {
  .areas-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 640px) {
  .areas-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

/* Why us */

.why-layout {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
  gap: 24px;
  align-items: flex-start;
}

.why-points {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.why-point {
  display: flex;
  gap: 10px;
  font-size: 13px;
}

.why-point-icon {
  font-size: 18px;
  color: #22c55e;
}

.why-point-title {
  font-weight: 600;
}

.why-owner-card {
  border-radius: 20px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(37,99,235,0.9);
  background: radial-gradient(circle at top, rgba(37,99,235,0.45), rgba(15,23,42,0.98));
  text-align: center;
  box-shadow: 0 20px 60px rgba(15,23,42,1);
}

.why-owner-photo {
  width: 156px;
  height: 156px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 12px;
  border: 2px solid rgba(59,130,246,0.9);
}

.why-owner-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.why-owner-role {
  font-size: 12px;
  color: #cbd5f5;
  margin-bottom: 6px;
}

.why-owner-text {
  font-size: 12px;
  color: #e5e7eb;
}

@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: minmax(0,1fr);
  }
}

/* ===== SEÇÃO "INVESTMENT" REMOVIDA ===== */


/* FAQ */

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

.faq-item {
  border-radius: 16px;
  padding: 10px 11px;
  background: rgba(15,23,42,0.98);
  border: 1px solid rgba(31,41,55,0.9);
  font-size: 13px;
}

.faq-item h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.faq-item p {
  margin: 0;
  color: #cbd5f5;
  font-size: 12px;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

/* Footer */

footer {
  margin-top: 40px;
  padding: 26px 0 18px;
  background: #020617;
  border-top: 1px solid rgba(15,23,42,1);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,0.9fr) minmax(0,0.9fr);
  gap: 20px;
}

.footer-logo {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 6px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 12px;
}

.footer-brand {
  font-weight: 600;
  font-size: 16px;
}

.footer-tagline {
  font-size: 12px;
  color: #9ca3af;
}

.footer-text {
  font-size: 12px;
  color: #9ca3af;
}

.footer-links-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.footer-links a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social-block {
  font-size: 12px;
}

.social-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.social-icons a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 16px;
  box-shadow: 0 8px 22px rgba(15,23,42,0.9);
  text-decoration: none;
}

.social-icons a.instagram {
  background: radial-gradient(circle at 30% 30%, #f97316, #d946ef);
}
.social-icons a.facebook { background:#1877f2; }
.social-icons a.tiktok { background:#000000; }
.social-icons a.youtube { background:#ff0000; }
.social-icons a.yelp { background:#d32323; }
.social-icons a.thumbtack { background:#28a0f0; }
.social-icons a.bark { background:#2563eb; }

.social-icons a:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.payment-title {
  font-weight: 600;
  color: #e5e7eb;
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 12px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #020617;
  box-shadow: 0 8px 22px rgba(15,23,42,0.95);
}

.pay-icon img {
  height: 22px;
  display: block;
}

.pay-icon.pay-cash {
  background:#16a34a;
  color:#ecfdf5;
  gap:6px;
}

.pay-icon.pay-cash i {
  font-size:16px;
}

.pay-icon.pay-cash span {
  font-size:11px;
  font-weight:600;
}

.footer-bottom {
  margin-top: 18px;
  font-size: 11px;
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-logo-glow {
  margin-top: 10px;
  opacity: 0.85;
}

.footer-logo-glow img {
  width: 140px;
  opacity: 0.7;
}

/* WhatsApp floating button */

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(22,163,74,0.8);
  z-index: 50;
}

.whatsapp-fab:hover {
  filter: brightness(1.05);
}

/* ================================================= */
/* NOVOS ESTILOS PARA LANDING PAGES DE BAIRRO
/* (Substitui o CSS .area-hero antigo)
/* ================================================= */

/* HERO DE ÁREA COM FOTO ESTÁTICA POR REGIÃO */
.area-hero {
  position: relative;
  padding-top: 90px;
  padding-bottom: 40px;
  background: radial-gradient(circle at top right, rgba(37,99,235,0.22), rgba(15,23,42,0.98));
  overflow: hidden;
  min-height: auto; /* Remove a altura mínima do hero de vídeo */
}

/* O ::before é a sua foto de fundo */
.area-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  filter: saturate(1.1);
  z-index: -2;
  /* A imagem de fundo específica é definida no HTML de cada página */
}

.area-hero-inner {
  position: relative;
  z-index: 1;
  /* Layout de 2 colunas para o hero da área */
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 26px;
  align-items: center;
}

.area-hero-sub {
  font-size: 13px;
  color: #cbd5f5;
}

.area-breadcrumb {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.area-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(55,65,81,0.9);
  font-size: 11px;
}

.area-hero-badge a {
  color: #facc15;
  text-decoration: none;
}

.area-hero-badge a:hover {
  text-decoration: underline;
}

.area-hero-gallery {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
}

.area-hero-gallery img {
  border-radius: 16px;
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.area-section {
  padding-top: 32px;
}

.area-cols {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,0.7fr);
  gap: 24px;
}

.area-cols h2 {
  margin-top: 0;
  margin-bottom: 6px;
}

.area-cols p {
  font-size: 13px;
  color: #cbd5f5;
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 12px;
  color: #cbd5f5;
}

.area-list li::before {
  content: "• ";
  color: #22c55e;
}

.area-hero-copy {
  max-width: 560px;
}

/* FORM DE ÁREA – DIFERENTE DO FORM DA HOME */
.area-form {
  padding: 32px 0 40px;
  background: radial-gradient(circle at top left, rgba(37,99,235,0.12), rgba(15,23,42,1));
}

.area-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.area-form-card {
  margin-top: 8px;
  background: rgba(15,23,42,0.95);
  border-radius: 20px;
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 24px 60px rgba(15,23,42,0.9);
  padding: 18px 18px 20px;
}

.area-form-card .form-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5b4fc;
  margin-bottom: 6px;
}

.area-form-card .form-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.area-form-card .form-subtitle {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 12px;
  line-height: 1.5;
}

.area-form-card .field {
  margin-bottom: 10px;
}

.area-form-card .field-row {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
}

.quote-btn--area {
  width: 100%;
  margin-top: 4px;
}

/* REVIEWS SIMPLES EM 2 COLUNAS EM TELAS MAIORES */
.reviews-layout--area {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
}

/* CARTÃO CTA DO BAIRRO */
.area-cta-card {
  background: rgba(15,23,42,0.95);
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.4);
  padding: 18px 18px 20px;
  box-shadow: 0 24px 60px rgba(15,23,42,0.85);
}

.area-cta-card h3 {
  margin-top: 0;
  font-size: 16px;
}
.area-cta-card p {
  font-size: 13px;
  color: #cbd5f5;
  margin-bottom: 16px;
}

/* ================== */
/* FOTO PARA ALPHARETTA (Exemplo) */
/* O web designer deve copiar este bloco para cada bairro */
/* ================== */
.area-hero--alpharetta::before {
  /* TODO: Colocar a foto da região */
  background-image: url("images/hero-alpharetta.jpg"); 
  background-position: center 30%; /* Exemplo: foca um pouco mais acima na foto */
}

/* RESPONSIVO PARA OS NOVOS BLOCOS */
@media (max-width: 900px) {
  .area-hero-inner {
    grid-template-columns: minmax(0,1fr);
  }
  .area-form-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .reviews-layout--area {
    grid-template-columns: minmax(0,1fr);
  }
  .area-cols {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 640px) {
  /* Força os campos lado-a-lado a ficarem um sobre o outro no mobile */
  .area-form-card .field-row {
    grid-template-columns: repeat(1,minmax(0,1fr));
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease-out, transform .4s ease-out;
}

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


.hero-copy {
  position: relative;
  max-width: 580px;
  padding: 14px 16px 16px;
  border-radius: 22px;
  background: radial-gradient(circle at top left, rgba(15,23,42,0.98), rgba(15,23,42,0.92));
  border: 1px solid rgba(31,41,55,0.85);
  box-shadow: 0 24px 70px rgba(15,23,42,0.95);
}
.hero-copy h1 {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.1;
  margin: 10px 0 14px;
}
.hero-copy p {
  font-size: 14px;
  color: #d1d5db;
  margin: 0 0 8px;
}


@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


.hero-logo-stack {
  display:flex;
  justify-content:center;
  margin-bottom:10px;
}

.hero-logo-stack img {
  width:190px;
  max-width:100%;
  height:auto;
  object-fit:contain;
  opacity:0.96;
  filter:drop-shadow(0 0 40px rgba(37,99,235,0.9));
  transform:translateY(6px) scale(0.96);
  animation:logoFade 1.1s ease-out 0.25s forwards;
}

@media (max-width: 640px) {
  .hero-logo-stack img {
    width:160px;
  }
}

/* Estilos para o Bloco Bark */
    
.bark-strip {
  margin-top: 12px;
  padding: 14px 12px;
  border-radius: 18px;
  background: radial-gradient(circle at top right, rgba(37,99,235,0.2), rgba(15,23,42,0.98));
  border: 1px solid rgba(37,99,235,0.6);
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.bark-left {
  flex:1 1 240px;
}

.bark-right {
  display: none; /* REMOVIDO */
}

.bark-logo {
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:#bfdbfe;
  margin-bottom:4px;
  font-weight: 700;
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  background: #0c2b4e;
}

.bark-rating .star {
  color:#fde68a;
  margin-right:4px;
}

.bark-rating {
  font-size:13px;
  font-weight:600;
  margin-bottom:4px;
}

.bark-sub {
  font-size:12px;
  color:#d1d5db;
  max-width:460px;
  margin: 0;
  line-height: 1.6; /* ESPAÇAMENTO */
}

.bark-tags {
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top: 8px;
}

.bark-tags span {
  font-size:11px;
  padding:4px 9px;
  border-radius:999px;
  background:rgba(30,64,175,0.5);
  color:#e0f2fe;
}

.bark-btn {
  display:none; /* REMOVIDO */
}