/* =========================================
   RESET & VARIÁVEIS
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --laranja: #ff6b1a;
  --laranja-escuro: #e85a0c;
  --amarelo: #ffc107;
  --vermelho: #e63946;
  --verde: #25d366;
  --verde-escuro: #1ebe5d;
  --preto: #1a1a1a;
  --cinza-escuro: #2d2d2d;
  --cinza: #6c757d;
  --cinza-claro: #f5f5f5;
  --cinza-bg: #f8f9fa;
  --branco: #ffffff;
  --borda: #e0e0e0;
  --sombra: 0 4px 20px rgba(0,0,0,0.08);
  --fonte-titulo: 'Oswald', sans-serif;
  --fonte-corpo: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--fonte-corpo);
  color: var(--preto);
  line-height: 1.6;
  background: var(--branco);
  overflow-x: hidden;
  padding-bottom: 70px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* BARRA SUPERIOR */
.top-bar {
  background: var(--preto);
  color: var(--branco);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* HEADER */
.header {
  background: var(--branco);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s;
}

.logo:hover img { transform: scale(1.05); }

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

.nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--preto);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}

.nav a:hover { color: var(--laranja); }

.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--laranja);
  transition: width 0.3s;
}

.nav a:hover::after { width: 100%; }

.cart-icon {
  font-size: 24px;
  color: var(--preto);
  position: relative;
  transition: color 0.3s;
}

.cart-icon:hover { color: var(--laranja); }

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--laranja);
  color: white;
  font-size: 11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: var(--preto);
}

/* HERO */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  text-align: center;
}

.hero h2 {
  font-family: var(--fonte-titulo);
  font-size: 48px;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.hero h1 {
  font-family: var(--fonte-titulo);
  font-size: 42px;
  font-weight: 700;
  color: var(--laranja);
  margin-bottom: 24px;
  letter-spacing: 1px;
  line-height: 1.1;
}

.hero p {
  font-size: 16px;
  color: var(--cinza);
  margin-bottom: 40px;
}

.video-container {
  max-width: 380px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  aspect-ratio: 9/16;
  background: #000;
  position: relative;
  cursor: pointer;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 2;
}

.play-overlay.hidden { opacity: 0; }

.play-btn {
  width: 90px;
  height: 90px;
  background: var(--laranja);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(255,107,26,0.5);
  animation: pulse 2s infinite;
  color: white;
  font-size: 32px;
  padding-left: 6px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,107,26,0.5); }
  70% { box-shadow: 0 0 0 30px rgba(255,107,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,26,0); }
}

/* INSTAGRAM */
.instagram-section {
  padding: 80px 0;
  background: var(--branco);
}

.instagram-profile {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.instagram-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.instagram-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: white;
  padding: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-avatar-inner img {
  width: 90%;
  height: auto;
  object-fit: contain;
}

.instagram-info { flex: 1; min-width: 280px; }

.instagram-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.stat strong {
  font-size: 18px;
  font-weight: 700;
}

.instagram-username {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.instagram-bio { font-size: 15px; line-height: 1.7; }
.instagram-bio a { color: #0095f6; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.instagram-item {
  aspect-ratio: 1;
  background: var(--cinza-claro);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.instagram-item:hover img { transform: scale(1.08); }

.instagram-item::after {
  content: '\f04b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 12px;
  right: 12px;
  color: white;
  font-size: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  z-index: 2;
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: var(--verde);
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.btn-primary:hover {
  background: var(--verde-escuro);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.btn-center {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

/* SELOS DE CONFIANÇA */
.badges-section {
  padding: 50px 0;
  background: var(--branco);
  border-top: 1px solid var(--borda);
  border-bottom: 1px solid var(--borda);
}

.company-info {
  text-align: center;
  margin-bottom: 40px;
}

.company-info h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.company-info p {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--cinza);
  letter-spacing: 1px;
}

.badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: end;
  justify-items: center;
}

.badge {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.badge-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.badge-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.badge-icon.green { color: #28a745; }
.badge-icon.orange { color: var(--laranja); }
.badge-icon.blue {
  color: #0a3d62;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0;
  border: 3px solid #0a3d62;
  border-radius: 50%;
  width: 70px;
  height: 70px;
}

.badge-title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}

.badge-sub {
  font-size: 12px;
  color: var(--cinza);
}

.badge-google {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* CLIENTES SATISFEITOS */
.clientes-section {
  padding: 80px 0;
  background: var(--cinza-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-title h2 {
  font-family: var(--fonte-titulo);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  color: var(--cinza);
  margin-bottom: 50px;
  font-size: 15px;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.depoimento {
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #000;
  box-shadow: var(--sombra);
  transition: transform 0.3s;
}

.depoimento:hover { transform: translateY(-4px); }

.depoimento video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ativar-som {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,107,26,0.95);
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 1px;
  z-index: 2;
  cursor: pointer;
  transition: background 0.3s;
}

.ativar-som:hover { background: var(--laranja-escuro); }
.ativar-som.active { background: rgba(37,211,102,0.95); }

/* CONFIGURADOR */
.configurador-section {
  padding: 80px 0;
  background: var(--branco);
}

.config-header {
  text-align: center;
  margin-bottom: 50px;
}

.config-header .label {
  color: var(--laranja);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
}

.config-header h2 {
  font-family: var(--fonte-titulo);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.config-header h2 span { color: var(--amarelo); }

.config-header .desc {
  color: var(--cinza);
  margin-top: 12px;
  letter-spacing: 1px;
  font-size: 14px;
}

.configurador {
  max-width: 700px;
  margin: 0 auto;
  background: var(--branco);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--sombra);
  border: 1px solid var(--borda);
}

.configurador h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-label {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
  margin-top: 20px;
}

.opcao {
  border: 2px solid var(--borda);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.opcao:hover {
  border-color: var(--laranja);
  background: #fff8f4;
}

.opcao.selected {
  border-color: var(--laranja);
  background: #fff8f4;
  box-shadow: 0 4px 12px rgba(255,107,26,0.15);
}

.opcao-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.opcao-info p {
  font-size: 13px;
  color: var(--cinza);
  line-height: 1.5;
}

.opcao-precos { text-align: right; }

.preco-antigo {
  text-decoration: line-through;
  color: var(--cinza);
  font-size: 13px;
  display: block;
}

.preco-atual {
  color: var(--vermelho);
  font-weight: 700;
  font-size: 20px;
}

.produto-preview {
  margin-top: 60px;
  text-align: center;
}

.produto-img {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255,107,26,0.2);
  position: relative;
}

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

.envio-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.75);
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.caracteristicas {
  max-width: 700px;
  margin: 40px auto 0;
}

.caracteristica {
  background: var(--cinza-bg);
  border-left: 4px solid var(--laranja);
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

/* FEEDBACK */
.feedback-section {
  padding: 80px 0;
  background: var(--cinza-bg);
}

.feedback-header {
  text-align: center;
  margin-bottom: 40px;
}

.feedback-header h2 {
  font-family: var(--fonte-titulo);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
}

.stars-rating {
  color: var(--amarelo);
  font-size: 18px;
  letter-spacing: 2px;
  margin-top: 8px;
}

.stars-rating .meta {
  color: var(--cinza);
  font-size: 13px;
  letter-spacing: normal;
}

.form-feedback {
  max-width: 700px;
  margin: 0 auto 40px;
  background: var(--branco);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--sombra);
}

.form-feedback h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-feedback input,
.form-feedback textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--borda);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s;
}

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

.star-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid var(--borda);
  border-radius: 8px;
  font-size: 14px;
}

.star-input .stars {
  color: var(--amarelo);
  cursor: pointer;
}

.form-feedback textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 16px;
}

.btn-submit {
  background: var(--preto);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.3s;
}

.btn-submit:hover { background: var(--cinza-escuro); }

.avaliacoes {
  max-width: 700px;
  margin: 0 auto;
}

.avaliacao {
  background: var(--branco);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: var(--sombra);
}

.avaliacao-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.avaliacao-header strong { font-size: 15px; }

.compra-verificada {
  background: #d4edda;
  color: #155724;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.avaliacao-stars {
  color: var(--amarelo);
  font-size: 13px;
  margin-bottom: 6px;
}

.avaliacao-tempo {
  color: var(--cinza);
  font-size: 12px;
  margin-left: 4px;
}

.avaliacao-texto {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.ver-mais {
  display: block;
  margin: 24px auto 0;
  padding: 12px 28px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.ver-mais:hover {
  background: var(--cinza-bg);
  border-color: var(--laranja);
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  background: var(--branco);
}

.faq-header { text-align: center; margin-bottom: 40px; }

.faq-header h2 {
  font-family: var(--fonte-titulo);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.faq-header p { color: var(--cinza); }

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--cinza-bg);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item.active { box-shadow: var(--sombra); }

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  user-select: none;
}

.faq-question .icon {
  color: var(--laranja);
  font-size: 24px;
  transition: transform 0.3s;
  line-height: 1;
  font-weight: 300;
}

.faq-item.active .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* FOOTER */
.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: white;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-col ul { list-style: none; }
.footer-col ul a:hover { color: var(--laranja); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}

.footer-social a:hover { background: var(--laranja); }

.pagamento-img {
  background: white;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.pagamento-img img {
  width: 100%;
  height: auto;
}

.compra-segura {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #28a745;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #888;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* BARRA DE PROMOÇÃO FIXA */
.promo-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.promo-text {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
}

.promo-timer {
  background: var(--laranja);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--verde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 98;
  transition: transform 0.3s;
  animation: bounce 2s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .hero h2 { font-size: 32px; }
  .hero h1 { font-size: 26px; }
  .config-header h2 { font-size: 36px; }
  .section-title h2 { font-size: 28px; }
  .feedback-header h2, .faq-header h2 { font-size: 30px; }
  .badges { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .configurador { padding: 24px; }
  .opcao { flex-direction: column; align-items: flex-start; gap: 12px; }
  .opcao-precos { text-align: left; }
  .promo-bar { flex-direction: column; gap: 6px; padding: 10px; }
  .promo-text { font-size: 11px; text-align: center; }
  .promo-timer { font-size: 12px; padding: 6px 14px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .logo img { height: 50px; }
}

@media (max-width: 480px) {
  .hero { padding: 40px 0 60px; }
  .instagram-stats { gap: 16px; font-size: 14px; }
  .config-header h2 { font-size: 28px; }
}

/* =========================================
   CONFIGURADOR - PASSO 2 (TIPO)
   ========================================= */
.tipos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.tipo-card {
  border: 2px solid var(--borda);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--branco);
}

.tipo-card:hover {
  border-color: var(--laranja);
  background: #fff8f4;
  transform: translateY(-2px);
}

.tipo-card.selected {
  border-color: var(--laranja);
  background: #fff8f4;
  box-shadow: 0 4px 16px rgba(255,107,26,0.15);
}

.tipo-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: #ececec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 22px;
}

.tipo-card.selected .tipo-icon {
  background: rgba(255,107,26,0.15);
  color: var(--laranja);
}

.tipo-titulo {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
}

.tipo-desc {
  font-size: 13px;
  color: var(--cinza);
}

/* =========================================
   BLOCO FAMOSO (botão abrir lista)
   ========================================= */
.titulo-detalhes {
  color: var(--laranja);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 28px 0 6px;
}

.subtitulo-detalhes {
  text-align: center;
  font-size: 14px;
  color: var(--cinza);
  line-height: 1.6;
}

.btn-abrir-lista {
  background: var(--laranja);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(255,107,26,0.25);
}

.btn-abrir-lista:hover {
  background: var(--laranja-escuro);
  transform: translateY(-2px);
}

/* Box do veículo selecionado */
.veiculo-selecionado {
  background: #fff8f4;
  border: 1px solid #ffd2b3;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.veiculo-selecionado-info {
  flex: 1;
}

.veiculo-selecionado-info strong {
  color: var(--laranja);
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.veiculo-selecionado-info p {
  font-size: 12px;
  color: #666;
}

.btn-trocar {
  background: white;
  border: 1px solid var(--borda);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-trocar:hover {
  border-color: var(--laranja);
  color: var(--laranja);
}

.aviso-famoso {
  font-weight: 700;
  font-size: 14px;
  margin: 16px 0 12px;
  color: var(--preto);
}

/* =========================================
   FORM DE DETALHES DO VEÍCULO
   ========================================= */
.bloco-detalhes {
  border-top: 1px solid var(--borda);
  margin-top: 16px;
  padding-top: 20px;
}

.form-detalhes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

.campo {
  margin-bottom: 14px;
}

.campo label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--preto);
}

.campo input,
.campo textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--borda);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s;
}

.campo input:focus,
.campo textarea:focus {
  outline: none;
  border-color: var(--laranja);
}

.campo input.preenchido,
.campo textarea.preenchido {
  border-color: #28a745;
}

.campo input.preenchido + .check-verde,
.campo.preenchido::after {
  content: '✓';
  color: #28a745;
}

.campo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.campo textarea {
  min-height: 88px;
  resize: vertical;
}

/* Caixa de upload */
.upload-box {
  border: 2px dashed #ffb380;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  cursor: pointer;
  background: #fffaf6;
  transition: all 0.3s;
}

.upload-box:hover {
  background: #fff3e8;
  border-color: var(--laranja);
}

.upload-label {
  color: var(--laranja);
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.upload-icon {
  font-size: 24px;
  color: var(--cinza);
  margin-bottom: 6px;
}

.upload-text {
  font-size: 13px;
  color: #555;
}

.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  justify-content: center;
}

.upload-preview img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--borda);
}

/* =========================================
   ORDER BUMP - KIT CONTROLE
   ========================================= */
.orderbump {
  margin-top: 24px;
  background: #f8f9fa;
  border: 2px solid var(--borda);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s;
  cursor: pointer;
}

.orderbump:hover {
  border-color: var(--laranja);
}

.orderbump.selected {
  border-color: var(--laranja);
  background: #fff8f4;
}

.orderbump-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: #eee;
  flex-shrink: 0;
}

.orderbump-info {
  flex: 1;
}

.orderbump-info h5 {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 3px;
}

.orderbump-info p {
  font-size: 12px;
  color: var(--cinza);
  line-height: 1.4;
}

.orderbump-preco {
  color: var(--vermelho);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}

.orderbump-check {
  flex-shrink: 0;
}

.orderbump-check input[type="checkbox"] {
  display: none;
}

.orderbump-check label {
  width: 26px;
  height: 26px;
  border: 2px solid var(--borda);
  border-radius: 6px;
  display: block;
  cursor: pointer;
  position: relative;
  background: white;
  transition: all 0.2s;
}

.orderbump-check input[type="checkbox"]:checked + label {
  background: var(--laranja);
  border-color: var(--laranja);
}

.orderbump-check input[type="checkbox"]:checked + label::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 700;
  font-size: 16px;
}

/* Botão Adicionar ao Carrinho */
.btn-carrinho-wrapper {
  text-align: right;
  margin-top: 24px;
}

.btn-adicionar-carrinho {
  background: var(--verde);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}

.btn-adicionar-carrinho:hover {
  background: var(--verde-escuro);
  transform: translateY(-2px);
}

/* =========================================
   MODAL DE LISTA DE VEÍCULOS
   ========================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: white;
  border-radius: 14px;
  max-width: 540px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--borda);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-header h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 13px;
  color: var(--cinza);
}

.modal-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--cinza);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #f0f0f0;
  color: var(--preto);
}

.modal-search {
  padding: 14px 20px;
  position: relative;
}

.modal-search i {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cinza);
  font-size: 15px;
}

.modal-search input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 2px solid var(--laranja);
  border-radius: 10px;
  font-size: 14px;
  outline: none;
}

.modal-lista {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px 10px;
}

.veiculo-item {
  background: white;
  border: 1px solid var(--borda);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.veiculo-item:hover {
  border-color: var(--laranja);
  background: #fff8f4;
  transform: translateX(3px);
}

.veiculo-item-conteudo {
  flex: 1;
  min-width: 0;
}

.veiculo-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.tag-categoria {
  background: #fff3e8;
  color: var(--laranja);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-ano {
  color: var(--laranja);
  font-size: 11px;
  font-weight: 700;
}

.veiculo-nome {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.veiculo-desc {
  font-size: 12px;
  color: var(--cinza);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.veiculo-item-seta {
  color: var(--cinza);
  font-size: 14px;
  flex-shrink: 0;
}

.modal-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--borda);
}

.modal-cancelar {
  width: 100%;
  background: transparent;
  color: var(--vermelho);
  padding: 10px;
  border: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 8px;
}

.modal-cancelar:hover {
  background: #fff0f0;
}

.lista-vazia {
  text-align: center;
  padding: 40px 20px;
  color: var(--cinza);
  font-size: 14px;
}

/* Responsivo do configurador novo */
@media (max-width: 600px) {
  .tipos-grid {
    grid-template-columns: 1fr;
  }
  .form-detalhes {
    grid-template-columns: 1fr;
  }
  .campo-row {
    grid-template-columns: 1fr 1fr;
  }
  .orderbump {
    flex-wrap: wrap;
  }
  .orderbump-info {
    flex: 1 1 calc(100% - 80px);
  }
  .orderbump-preco {
    margin-left: auto;
  }
  .btn-carrinho-wrapper {
    text-align: center;
  }
  .btn-adicionar-carrinho {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   DRAWER DO CARRINHO
   ========================================= */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  backdrop-filter: blur(2px);
}

.cart-overlay.active { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: white;
  z-index: 201;
  box-shadow: -5px 0 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.active { right: 0; }

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--borda);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 17px;
  font-weight: 700;
}

.cart-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--cinza);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.cart-close:hover {
  background: #f0f0f0;
  color: var(--preto);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--cinza);
}

.cart-empty i {
  font-size: 60px;
  color: #ddd;
  margin-bottom: 20px;
  display: block;
}

.cart-empty p {
  font-size: 16px;
  font-weight: 600;
  color: var(--preto);
  margin-bottom: 6px;
}

.cart-empty span {
  font-size: 13px;
}

.cart-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
  position: relative;
}

.cart-item-titulo {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--preto);
  padding-right: 70px;
}

.cart-item-detalhes {
  font-size: 12px;
  color: var(--cinza);
  margin-bottom: 8px;
  line-height: 1.5;
}

.cart-item-preco {
  color: var(--laranja);
  font-weight: 700;
  font-size: 15px;
}

.cart-item-acoes {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 4px;
}

.cart-item-btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  color: var(--cinza);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 14px;
}

.cart-item-btn:hover {
  background: white;
  color: var(--preto);
}

.cart-item-btn.delete:hover {
  color: var(--vermelho);
}

.cart-item-extras {
  margin-top: 8px;
}

.cart-item-extra {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #d4edda;
  color: #155724;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.cart-item-extra::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #28a745;
  border-radius: 50%;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--borda);
  background: white;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
}

.cart-subtotal strong {
  font-size: 22px;
  color: var(--preto);
  font-weight: 700;
}

.btn-finalizar {
  width: 100%;
  background: var(--verde);
  color: white;
  padding: 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  margin-bottom: 10px;
}

.btn-finalizar:hover {
  background: var(--verde-escuro);
  transform: translateY(-2px);
}

.btn-adicionar-mais {
  width: 100%;
  background: transparent;
  color: var(--preto);
  padding: 12px;
  border: 1px solid var(--borda);
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-adicionar-mais:hover {
  border-color: var(--laranja);
  color: var(--laranja);
}

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; right: -100vw; }
}
