/* ============================================
   CEA - CRISTOFF ESTETICA AUTOMOTIVA
   Tema: Branco + Vermelho + Preto
   Mobile-First
   ============================================ */

/* --- VARIAVEIS --- */
:root {
  --bg: #ffffff;
  --bg2: #f5f5f7;
  --bg3: #eeeef0;
  --card: #ffffff;
  --card-hover: #fafafa;
  --red: #E31E24;
  --red-dark: #c41a1f;
  --red-light: #ff3b42;
  --red-glow: rgba(227, 30, 36, .06);
  --red-border: rgba(227, 30, 36, .18);
  --black: #1A1A1A;
  --dark: #111111;
  --white: #ffffff;
  --text: #1A1A1A;
  --text2: #555555;
  --text3: #999999;
  --line: rgba(0, 0, 0, .08);
  --line-dark: rgba(0, 0, 0, .12);
  --shadow: 0 2px 12px rgba(0, 0, 0, .06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .10);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, .12);
  --ok: #22c55e;
  --err: #ef4444;
  --warn: #f59e0b;
  --r: 16px;
  --rs: 10px;
  --font-h: 'Playfair Display', serif;
  --font: 'DM Sans', sans-serif;
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  overflow-x: hidden;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.red { color: var(--red); }
.hidden { display: none !important; }
h1, h2, h3, h4, p, span, strong, li {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

section, header, footer, .nautica, .quick {
  overflow: hidden;
  max-width: 100vw;
}

/* ================================================
   BOTOES
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--rs);
  font-family: var(--font);
  font-weight: 600;
  font-size: .88rem;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
  letter-spacing: .2px;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(227, 30, 36, .25);
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(227, 30, 36, .35);
  background: var(--red-dark);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}
.btn-glass {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, .25);
  border-color: rgba(255, 255, 255, .4);
}
.btn-outline {
  background: transparent;
  color: var(--text2);
  border: 1.5px solid var(--line-dark);
  padding: 13px 16px;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-big { padding: 16px 36px; font-size: .95rem; }
.btn-sm  { padding: 10px 16px; font-size: .78rem; }
.btn-full { width: 100%; }
.btn-flex { flex: 1; }
.btn.disabled { opacity: .3; pointer-events: none; }

/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 0;
  transition: all .35s ease;
  background: transparent;
}
.header.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo img {
  height: 40px;
  width: auto;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .7rem;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}
.header.scrolled .logo-name { color: var(--black); }
.logo-sub {
  font-size: .48rem;
  color: rgba(255,255,255,.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 1px;
}
.header.scrolled .logo-sub { color: var(--text3); }

/* Nav Desktop */
.nav { display: none; }
.header-btn { display: none; }

/* Hamburger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
}
.header.scrolled .burger span { background: var(--black); }
.burger.active span { background: var(--white); }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav Mobile */
.nav.open {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, .98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 1000;
}
.nav a {
  color: var(--white);
  font-size: 1.15rem;
  padding: 12px 28px;
  font-weight: 500;
  border-radius: var(--rs);
  transition: color .3s;
}
.nav a:hover { color: var(--red); }

/* Desktop */
@media (min-width: 769px) {
  .burger { display: none; }
  .header-btn { display: inline-flex; }
  .nav {
    display: flex;
    gap: 4px;
  }
  .nav a {
    font-size: .84rem;
    padding: 8px 14px;
    color: rgba(255,255,255,.7);
  }
  .header.scrolled .nav a { color: var(--text2); }
  .nav a:hover { color: var(--white); }
  .header.scrolled .nav a:hover { color: var(--red); }
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
.hero-img {
  position: absolute;
  inset: 0;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(17, 17, 17, .75) 0%,
    rgba(17, 17, 17, .55) 40%,
    rgba(17, 17, 17, .35) 100%
  );
}
.hero-body {
  position: relative;
  z-index: 4;
  padding: 100px 0 40px;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  font-size: .62rem;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  background: var(--red);
  padding: 7px 18px;
  border-radius: 30px;
}
.hero-body h1 {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero-body p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .7);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-bar {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 22px 24px;
  background: var(--white);
  margin-top: auto;
  border-top: 3px solid var(--red);
}
.hb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text2);
  font-size: .82rem;
}
.hb i { color: var(--red); font-size: .95rem; }
.hb b { color: var(--black); }

@media (min-width: 640px) {
  .hero-body { text-align: left; padding: 120px 0 60px; }
  .hero-body h1 { font-size: 3.2rem; }
  .hero-body p { margin: 0 0 32px; font-size: 1.05rem; }
  .hero-buttons { justify-content: flex-start; }
}

/* ================================================
   QUICK CARDS
   ================================================ */
.quick {
  padding: 48px 0 56px;
  background: var(--bg);
}
.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.qcard {
  padding: 24px 18px;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: all .3s;
  box-shadow: var(--shadow);
}
.qcard:hover {
  border-color: var(--red-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.qicon {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: var(--red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
}
.qcard h3 {
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--black);
}
.qcard p {
  font-size: .74rem;
  color: var(--text2);
  line-height: 1.5;
}

@media (min-width: 769px) {
  .quick-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .qcard p { font-size: .82rem; }
}

/* ================================================
   SECOES GERAIS
   ================================================ */
.section {
  padding: 72px 0;
  position: relative;
  z-index: 1;
}
.section-alt { background: var(--bg2); }
.stag {
  display: block;
  font-size: .65rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
}
.center-tag { text-align: center; }
.stitle {
  font-family: var(--font-h);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 32px;
  color: var(--black);
}

@media (min-width: 640px) {
  .stitle { font-size: 2.1rem; }
  .section { padding: 96px 0; }
}

/* ================================================
   SERVICOS
   ================================================ */
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--line-dark);
  background: transparent;
  color: var(--text2);
  font-weight: 600;
  font-size: .78rem;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
}
.tab.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.tab:hover:not(.active) { border-color: var(--red-border); color: var(--red); }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.svc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.svc-card:hover {
  border-color: var(--red-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.svc-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card.combo { border-left: 3px solid var(--red); }
.combo-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--red);
  color: var(--white);
  font-size: .55rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
  z-index: 2;
}
.cat-badge {
  display: inline-block;
  font-size: .55rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.cat-badge.estetica { background: rgba(227,30,36,.08); color: var(--red); }
.cat-badge.revitalizacao { background: rgba(245,158,11,.1); color: #d97706; }
.cat-badge.higienizacao { background: rgba(34,197,94,.08); color: #16a34a; }
.cat-badge.moto { background: rgba(139,92,246,.08); color: #7c3aed; }

.svc-card h3 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
  line-height: 1.3;
}
.svc-card .desc {
  font-size: .8rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.svc-card .meta {
  display: flex;
  gap: 12px;
  font-size: .73rem;
  color: var(--text3);
  margin-bottom: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.svc-card .meta i { color: var(--red); margin-right: 4px; }
.svc-card .prices {
  display: flex;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 16px;
}
.price-main {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
}
.price-suv { font-size: .76rem; color: var(--text3); }
.price-consult { font-size: .84rem; color: var(--text2); font-style: italic; }
.svc-card .note { font-size: .7rem; color: var(--warn); margin-bottom: 12px; }

/* Selo Garantia Premium */
.guarantee-seal {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #d4a83c, #b8922e);
  color: #0a0a0a;
  font-size: .6rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: .3px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(212, 168, 60, .4);
}
.guarantee-seal i { font-size: .7rem; }
.svc-card.guarantee {
  border: 2px solid #d4a83c;
  box-shadow: 0 4px 20px rgba(212, 168, 60, .15);
}
.svc-card.guarantee:hover {
  border-color: #b8922e;
  box-shadow: 0 8px 32px rgba(212, 168, 60, .25);
}

@media (min-width: 640px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card-img { height: 180px; }
}
@media (min-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ================================================
   SECAO DESTAQUE FAROL
   ================================================ */
.farol-section {
  padding: 80px 0;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.farol-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.farol-info .stag { color: var(--red); }
.farol-info .stitle { color: var(--white); }
.farol-info p {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.farol-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.farol-info li {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  padding-left: 24px;
  position: relative;
}
.farol-info li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: .7rem;
}
.farol-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.farol-imgs img {
  border-radius: var(--rs);
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.1);
  transition: all .3s;
}
.farol-imgs img:hover {
  border-color: var(--red);
  transform: scale(1.02);
}
.farol-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--rs);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 8px;
}
.farol-price small { font-size: .7rem; font-weight: 400; opacity: .8; }

@media (min-width: 769px) {
  .farol-grid { grid-template-columns: 1.1fr 1fr; }
  .farol-imgs img { height: 220px; }
}

/* ================================================
   NAUTICA
   ================================================ */
.nautica {
  padding: 28px 0;
  background: var(--red);
}
.nautica-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nautica-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.nautica-text { flex: 1; min-width: 200px; }
.nautica-text h3 { color: var(--white); font-size: .95rem; font-weight: 700; }
.nautica-text p { color: rgba(255, 255, 255, .85); font-size: .8rem; line-height: 1.5; }
.nautica .btn-glass { border-color: rgba(255,255,255,.3); }
.nautica .btn-glass:hover { background: rgba(255,255,255,.2); }

/* ================================================
   COMPARATIVO
   ================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.diff-col {
  padding: 28px 22px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}
.diff-col h4 {
  font-size: .95rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
}
.diff-col.bad h4 i { color: var(--err); }
.diff-col.good h4 i { color: var(--ok); }
.diff-col.good {
  border-color: var(--red-border);
  background: linear-gradient(135deg, var(--card), var(--red-glow));
}
.diff-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.diff-col li {
  font-size: .84rem;
  color: var(--text2);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.diff-col.bad li::before { content: '\2715'; position: absolute; left: 0; color: var(--err); font-weight: 700; font-size: .7rem; }
.diff-col.good li::before { content: '\2713'; position: absolute; left: 0; color: var(--ok); font-weight: 700; }

@media (min-width: 640px) {
  .diff-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================
   SOBRE
   ================================================ */
.about-flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.about-photo { position: relative; }
.about-photo img {
  border-radius: var(--r);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}
.about-float {
  position: absolute;
  bottom: -14px;
  right: 12px;
  background: var(--red);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--rs);
  text-align: center;
  box-shadow: 0 8px 24px rgba(227, 30, 36, .3);
}
.af-num {
  display: block;
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.about-float span { font-size: .65rem; color: rgba(255, 255, 255, .8); }
.about-info p {
  color: var(--text2);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: .9rem;
}
.about-info strong { color: var(--black); }
.about-quote {
  background: var(--red-glow);
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  border-radius: 0 var(--rs) var(--rs) 0;
  font-style: italic;
  color: var(--text);
  font-size: .88rem;
  margin-top: 8px;
}
.about-quote i { color: var(--red); margin-right: 8px; font-size: .8rem; }

@media (min-width: 769px) {
  .about-flex { grid-template-columns: .9fr 1.1fr; align-items: center; }
}

/* ================================================
   DEPOIMENTOS
   ================================================ */
.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.rev {
  background: var(--card);
  border-radius: var(--r);
  padding: 24px 20px;
  border: 1px solid var(--line);
  transition: all .3s;
  box-shadow: var(--shadow);
}
.rev:hover { border-color: var(--red-border); box-shadow: var(--shadow-lg); }
.rev-stars { color: #fbbf24; font-size: .75rem; margin-bottom: 12px; display: flex; gap: 3px; }
.rev p {
  font-size: .84rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}
.rev strong { display: block; font-size: .84rem; color: var(--black); }
.rev small { font-size: .72rem; color: var(--text3); }

@media (min-width: 640px) {
  .reviews { grid-template-columns: repeat(3, 1fr); }
}

/* ================================================
   COMO FUNCIONA
   ================================================ */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.how-card {
  text-align: center;
  padding: 28px 18px;
  background: var(--card);
  border-radius: var(--r);
  border: 1px solid var(--line);
  position: relative;
  transition: all .3s;
  box-shadow: var(--shadow);
}
.how-card:hover { border-color: var(--red-border); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.how-n {
  position: absolute;
  top: 10px;
  left: 14px;
  font-family: var(--font-h);
  font-size: .7rem;
  color: var(--red);
  font-weight: 700;
}
.how-card i { font-size: 1.5rem; color: var(--red); margin-bottom: 14px; }
.how-card h3 { font-size: .85rem; font-weight: 700; margin-bottom: 6px; color: var(--black); }
.how-card p { font-size: .76rem; color: var(--text2); line-height: 1.5; }

@media (min-width: 640px) {
  .how-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ================================================
   CTA FINAL
   ================================================ */
.cta-end {
  position: relative;
  padding: 88px 0;
  text-align: center;
  overflow: hidden;
}
.cta-end-bg { position: absolute; inset: 0; }
.cta-end-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-end-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, .92), rgba(17, 17, 17, .85));
}
.cta-end-body { position: relative; z-index: 2; }
.cta-end-body h2 {
  font-family: var(--font-h);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-end-body p { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 28px; }

@media (min-width: 640px) {
  .cta-end-body h2 { font-size: 2.4rem; }
}

/* ================================================
   CONTATO
   ================================================ */
.contact-flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.c-items { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.c-item { display: flex; gap: 14px; align-items: flex-start; }
.c-item > i {
  width: 44px;
  height: 44px;
  background: var(--red-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}
.c-item strong { display: block; font-size: .86rem; margin-bottom: 2px; color: var(--black); }
.c-item p { font-size: .8rem; color: var(--text2); line-height: 1.5; }
.wpp-card {
  background: var(--red);
  border-radius: var(--r);
  padding: 32px 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wpp-card h3 { font-family: var(--font-h); font-size: 1.15rem; }
.wpp-card p { color: rgba(255, 255, 255, .85); font-size: .85rem; }
.wpp-card .btn { background: var(--white); color: var(--red); font-weight: 700; }
.wpp-card .btn:hover { background: var(--bg2); transform: translateY(-2px); }

@media (min-width: 769px) {
  .contact-flex { grid-template-columns: 1.2fr 1fr; }
}

/* ================================================
   FOOTER
   ================================================ */
.foot {
  padding: 28px 0;
  background: var(--black);
  text-align: center;
}
.foot-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.foot-inner img { height: 30px; }
.foot-inner p { font-size: .7rem; color: rgba(255,255,255,.5); }

/* ================================================
   MOBILE CTA FIXO
   ================================================ */
.mob-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
@media (max-width: 768px) {
  .mob-cta.show { display: block; }
  body { padding-bottom: 68px; }
}

/* ================================================
   MODAL
   ================================================ */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.modal-bg.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg);
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  max-height: 92svh;
  overflow-y: auto;
  border-radius: var(--r) var(--r) 0 0;
  padding: 28px 20px 32px;
  position: relative;
  transform: translateY(30px);
  transition: transform .35s ease;
}
.modal-bg.open .modal { transform: translateY(0); }
.modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--line);
  color: var(--text2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .85rem;
  transition: all .3s;
}
.modal-x:hover { background: var(--err); color: var(--white); border-color: var(--err); }

@media (min-width: 640px) {
  .modal-bg { align-items: center; padding: 24px; }
  .modal { border-radius: var(--r); }
}

/* Progress */
.modal-progress { display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.prog-step { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: .52rem; color: var(--text3); }
.prog-step span {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg2); border: 2px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .65rem; transition: all .3s;
  color: var(--text3);
}
.prog-step.active span { background: var(--red); color: var(--white); border-color: var(--red); }
.prog-step.done span { background: var(--ok); color: var(--white); border-color: var(--ok); }
.prog-step.active { color: var(--red); }
.prog-line { width: 14px; height: 2px; background: var(--line-dark); margin: 0 3px; margin-bottom: 14px; }

/* Steps */
.step h3 { font-family: var(--font-h); font-size: 1.05rem; margin-bottom: 6px; text-align: center; color: var(--black); }
.step-svc { text-align: center; color: var(--red); font-weight: 600; font-size: .85rem; margin-bottom: 20px; }
.step-sub { text-align: center; color: var(--text2); font-size: .82rem; margin-bottom: 18px; }
.step-row { display: flex; gap: 10px; margin-top: 20px; }

/* Vehicle */
.v-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
.v-btn {
  padding: 18px 12px; background: var(--bg2); border: 2px solid var(--line-dark);
  border-radius: var(--rs); cursor: pointer; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  transition: all .3s; color: var(--text);
}
.v-btn i { font-size: 1.6rem; color: var(--text3); transition: color .3s; }
.v-btn strong { font-size: .84rem; color: var(--black); }
.v-btn small { font-size: .65rem; color: var(--text3); }
.v-price { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--red); margin-top: 2px; }
.v-btn:hover, .v-btn.active { border-color: var(--red); background: var(--red-glow); }
.v-btn.active i { color: var(--red); }

/* Duration info */
.duration-info {
  background: var(--red-glow);
  border: 1px solid var(--red-border);
  border-radius: var(--rs);
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  color: var(--text2);
}
.duration-info i { color: var(--red); font-size: .9rem; }
.duration-info strong { color: var(--black); }

/* Upsell */
.up-list { display: flex; flex-direction: column; gap: 10px; max-height: 260px; overflow-y: auto; }
.up-item {
  display: flex; align-items: center; gap: 12px; padding: 14px;
  border: 1.5px solid var(--line-dark); border-radius: var(--rs);
  cursor: pointer; transition: all .3s; background: var(--bg2);
}
.up-item:hover { border-color: var(--red-border); }
.up-item.selected { border-color: var(--red); background: var(--red-glow); }
.up-chk {
  width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: transparent; transition: all .3s; flex-shrink: 0;
}
.up-item.selected .up-chk { background: var(--red); border-color: var(--red); color: var(--white); }
.up-info { flex: 1; }
.up-info strong { display: block; font-size: .8rem; margin-bottom: 2px; color: var(--black); }
.up-info small { font-size: .7rem; color: var(--text2); line-height: 1.4; display: block; }
.up-price { font-family: var(--font-h); font-weight: 700; color: var(--red); font-size: .82rem; white-space: nowrap; }

/* Calendar */
.cal { background: var(--bg2); border: 1px solid var(--line); border-radius: var(--rs); padding: 18px; margin-bottom: 16px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-title { font-family: var(--font-h); font-weight: 700; font-size: .9rem; text-transform: capitalize; color: var(--black); }
.cal-arr {
  width: 32px; height: 32px; border-radius: 50%; background: var(--card);
  border: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text2); font-size: .75rem; transition: all .3s;
}
.cal-arr:hover { border-color: var(--red); color: var(--red); }
.cal-wk { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 6px; }
.cal-wk span { text-align: center; font-size: .65rem; font-weight: 600; color: var(--text3); padding: 4px 0; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: var(--rs); font-size: .8rem; font-weight: 500;
  cursor: pointer; transition: all .2s; border: none; background: none;
  color: var(--text); min-height: 38px;
}
.cal-day:hover:not(.off):not(.empty) { background: var(--red-glow); color: var(--red); }
.cal-day.active { background: var(--red) !important; color: var(--white) !important; font-weight: 700; }
.cal-day.today { border: 1.5px solid var(--red); }
.cal-day.off { color: var(--text3); opacity: .2; cursor: not-allowed; }
.cal-day.empty { cursor: default; }

/* Time */
.time-area h4 { font-size: .85rem; margin-bottom: 12px; color: var(--black); }
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; max-height: 150px; overflow-y: auto; }
.time-btn {
  padding: 10px 6px; border-radius: var(--rs); border: 1px solid var(--line-dark);
  background: var(--card); font-size: .8rem; font-weight: 500; text-align: center;
  cursor: pointer; transition: all .2s; color: var(--text);
}
.time-btn:hover:not(.off) { border-color: var(--red); background: var(--red-glow); color: var(--red); }
.time-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }
.time-btn.off { opacity: .2; cursor: not-allowed; text-decoration: line-through; }

/* Form */
.fields { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.fld { display: flex; flex-direction: column; gap: 4px; }
.fld label { font-size: .72rem; font-weight: 600; color: var(--text2); }
.fld input, .fld textarea {
  padding: 12px 14px; border: 1.5px solid var(--line-dark); border-radius: var(--rs);
  font-family: var(--font); font-size: .86rem; color: var(--text);
  background: var(--bg2); transition: border-color .3s;
}
.fld input:focus, .fld textarea:focus { outline: none; border-color: var(--red); }
.fld input::placeholder, .fld textarea::placeholder { color: var(--text3); }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) {
  .fld-row { grid-template-columns: 1fr; }
  .v-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .v-btn { padding: 12px 6px; }
  .v-btn i { font-size: 1.2rem; }
  .v-btn strong { font-size: .72rem; }
  .v-btn small { font-size: .55rem; }
  .v-price { font-size: .72rem; }
}

/* Summary */
.sum { background: var(--bg2); border: 1px solid var(--line); border-radius: var(--rs); padding: 20px; margin-top: 16px; }
.sum-r { display: flex; justify-content: space-between; padding: 8px 0; font-size: .84rem; }
.sum-r span { color: var(--text2); }
.sum-r strong { color: var(--black); text-align: right; max-width: 60%; }
.sum-r.big { font-size: .95rem; }
.sum-r.big strong { color: var(--red); }
.sum-line { height: 1px; background: var(--line); margin: 6px 0; }
.sum-info {
  margin-top: 14px; padding: 14px; background: var(--card);
  border: 1px solid var(--red-border); border-radius: var(--rs);
  font-size: .78rem; color: var(--text2); line-height: 1.6;
  display: flex; gap: 10px; align-items: flex-start;
}
.sum-info i { color: var(--red); margin-top: 2px; flex-shrink: 0; }

/* PIX */
.pix-done { text-align: center; }
.pix-ico { font-size: 2.2rem; color: var(--ok); margin-bottom: 12px; }
.pix-done h3 { color: var(--ok); font-family: var(--font-h); margin-bottom: 6px; }
.pix-done > p { color: var(--text2); font-size: .85rem; margin-bottom: 18px; }
.pix-qr {
  background: var(--bg2); border-radius: var(--rs);
  padding: 14px; display: inline-block; margin-bottom: 16px;
  border: 1px solid var(--line);
}
.pix-qr img { width: 200px; height: 200px; }
.pix-copy { display: flex; gap: 6px; margin-bottom: 16px; }
.pix-copy input {
  flex: 1; padding: 10px 12px; border: 1px solid var(--line-dark); border-radius: var(--rs);
  font-size: .68rem; font-family: monospace; color: var(--text); background: var(--bg2);
}
.pix-det { background: var(--bg2); border-radius: var(--rs); padding: 14px; margin-bottom: 12px; font-size: .82rem; }
.pix-det p { padding: 3px 0; color: var(--text2); }
.pix-note {
  display: flex; align-items: flex-start; gap: 8px; padding: 12px;
  background: rgba(245, 158, 11, .06); border: 1px solid rgba(245, 158, 11, .2);
  border-radius: var(--rs); font-size: .78rem; color: var(--text2); text-align: left;
}
.pix-note i { color: var(--warn); margin-top: 2px; }

/* ================================================
   TOAST
   ================================================ */
.toast-box { position: fixed; top: 80px; right: 16px; z-index: 3000; display: flex; flex-direction: column; gap: 8px; }
.toast {
  padding: 13px 20px; border-radius: var(--rs); font-size: .82rem; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-lg); animation: tIn .3s ease; min-width: 220px;
}
.toast-success { background: var(--ok); color: var(--white); }
.toast-error { background: var(--err); color: var(--white); }
@keyframes tIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* Loading */
.loading {
  width: 18px; height: 18px;
  border: 2px solid rgba(0,0,0,.1); border-top-color: var(--red);
  border-radius: 50%; animation: spin .8s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
