:root {
  --green: #70885f;
  --dark: #13324a;
  --muted: #9aa8a5;
  --accent: #e6efe6;
  --max-width: 1100px;
  --radius: 14px;
  --gap: 18px;
}

* { box-sizing: border-box; }

body {
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  margin: 0;
  color: var(--dark);
  background: #f5f7f5;
}

/* ── HERO ── */
.hero {
  background: url('/images/hero.jpg') center/cover no-repeat;
  padding: 0;
  color: #fff;
  text-align: center;
  position: relative;
}

.season-badge {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  text-align: center;
  letter-spacing: 0.3px;
}

.hero-inner {
  background: linear-gradient(to bottom, rgba(19,50,74,0.72), rgba(19,50,74,0.55));
  padding: 52px 18px 60px;
}

.logo {
  display: block;
  margin: 0 auto 16px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.3);
  object-fit: cover;
}

h1 {
  margin: 8px 0 12px;
  font-size: 30px;
  letter-spacing: -0.5px;
  color: #fff;
  line-height: 1.25;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.subtitle {
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  text-align: center;
}
.top-bar a { color: #fff; text-decoration: underline; }

/* ── HERO EXTRAS ── */
.hero-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.hero-trust {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

/* ── PROBLEMA/SOLUÇÃO ── */
.problema-card { background: #f8faf8; }

.problema-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.problema-col, .solucao-col { flex: 1; }

.problema-divider {
  font-size: 28px;
  color: var(--muted);
  padding-top: 36px;
  flex-shrink: 0;
}

.problema-col h2 { color: #c0392b; font-size: 18px; margin-bottom: 12px; }
.solucao-col h2 { color: var(--green); font-size: 18px; margin-bottom: 12px; }

.problema-list, .solucao-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.problema-list li, .solucao-list li {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

/* ── SERVICE DESTAQUE ── */
.service-destaque {
  border: 2px solid var(--green);
  position: relative;
}

.service-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

.faq-item {
  border: 1px solid #e8f0e8;
  border-radius: 10px;
  overflow: hidden;
}

.faq-item summary {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  color: var(--dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--green);
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  padding: 0 18px 14px;
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  border-top: 1px solid #e8f0e8;
  padding-top: 12px;
}

/* ── BTN LIGHT ── */
.btn-light { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.5); white-space: nowrap; }

/* ── REVIEWS LOADING ── */
.reviews-loading {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  padding: 20px;
  grid-column: 1 / -1;
}

/* ── STARS ── */
.stars { font-size: 14px; margin-bottom: 8px; }

/* ── MOTORISTA LABEL ── */
.motorista-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 4px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark);
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat:last-child { border-right: none; }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 18px;
}

/* ── CARDS ── */
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(19,50,74,0.07);
}

h2 {
  margin: 0 0 4px;
  font-size: 22px;
  color: var(--dark);
}

.section-sub {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 20px;
}

/* ── MOTORISTA ── */
.motorista-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.motorista-foto-wrap {
  flex-shrink: 0;
}

.motorista-foto {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent);
}

.motorista-texto h2 { margin-bottom: 10px; }

.motorista-texto p {
  color: #555;
  line-height: 1.65;
  margin: 0 0 14px;
}

.motorista-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.motorista-items li {
  background: var(--accent);
  color: var(--dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.service {
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(160deg, #f3f8f3, #ffffff);
  border: 1px solid #e8f0e8;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-icon {
  font-size: 24px;
  margin-bottom: 6px;
}

.service strong {
  font-size: 15px;
  color: var(--dark);
}

.service p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.service-price {
  margin-top: 10px;
  font-weight: 700;
  color: var(--green);
  font-size: 15px;
}

.service-price small {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}

/* ── TEMPORADA ── */
.temporada-card {
  background: linear-gradient(135deg, var(--dark), #1e4d6b);
  color: #fff;
  padding: 22px 28px;
}

.temporada-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.temporada-icon { font-size: 32px; flex-shrink: 0; }

.temporada-inner strong {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
}

.temporada-inner p {
  margin: 0;
  opacity: 0.85;
  font-size: 14px;
  flex: 1;
}

/* ── FEATURES ── */
.features {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.features li {
  background: var(--accent);
  color: var(--dark);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.2s;
}

.gallery-grid img:hover { transform: scale(1.03); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.testimonial {
  background: #f8faf8;
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
  margin: 0;
}

.testimonial p {
  font-style: italic;
  color: #444;
  margin: 0 0 10px;
  line-height: 1.6;
}

.testimonial footer {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.google-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

.google-note a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.google-note a:hover { text-decoration: underline; }

/* ── FORM ── */
.form-card { }

.form-cta-wa {
  text-align: center;
  margin: 16px 0 8px;
}

.btn-wa-big {
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e6e6e6;
}

.form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid #e0e8e0;
  font-size: 14px;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form-card textarea { resize: vertical; }

.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.form-msg {
  color: var(--green);
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: opacity 0.2s, transform 0.1s;
}

.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--dark); color: #fff; }
.btn-secondary { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-whatsapp { background: #25d366; color: #fff; }

.btn-instagram {
  background: #d6249f;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 28px 0;
  margin-top: 8px;
}

.footer-inner {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-inner p { margin: 4px 0; font-size: 14px; }

.logo-small {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-instagram {
  color: #f09433;
  font-weight: 600;
  text-decoration: none;
}

.footer-instagram:hover { text-decoration: underline; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  padding: 13px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 100;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.5);
}

/* ── MOBILE ── */
@media (max-width: 720px) {
  h1 { font-size: 22px; }
  h2 { font-size: 19px; }

  .motorista-card { flex-direction: column; align-items: center; text-align: center; }
  .motorista-items { justify-content: center; }

  .form-row { flex-direction: column; gap: 0; }
  .form-field { margin-bottom: 12px; }

  .temporada-inner { flex-direction: column; text-align: center; }
  .temporada-inner .btn { width: 100%; text-align: center; }

  .stat { padding: 10px 16px; font-size: 12px; }

  .footer-inner { flex-direction: column; text-align: center; }

  .problema-inner { flex-direction: column; }
  .problema-divider { display: none; }
  .problema-col h2, .solucao-col h2 { font-size: 16px; }

  .hero-trust { gap: 10px; font-size: 12px; }
}
