* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg, #0d0d0d);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 480px;
  width: 100%;
  padding: 20px 20px 40px;
  text-align: center;
}

.logo {
  font-size: 12px;
  letter-spacing: 3px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.logo b { color: var(--accent, #ffcc00); }

.badge {
  display: inline-block;
  background: var(--accent, #ffcc00);
  color: #111;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1 {
  font-size: 27px;
  line-height: 1.22;
  margin-bottom: 8px;
}

h1 span { color: var(--accent, #ffcc00); }

.subtitle {
  font-size: 15px;
  line-height: 1.5;
  color: #c8c8c8;
  margin-bottom: 20px;
}

.car-photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 22px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  border: 2px solid var(--accent, #ffcc00);
}

.cta {
  display: block;
  width: 100%;
  background: #25D366;
  color: #08300f;
  font-weight: 800;
  font-size: 18px;
  padding: 17px 14px;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 8px 22px rgba(37,211,102,.32);
  animation: pulse 1.8s infinite;
  margin-bottom: 12px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.cta small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 3px;
  opacity: .85;
}

.cta.alt {
  background: var(--accent, #ffcc00);
  color: #111;
  box-shadow: 0 8px 20px rgba(255,204,0,.3);
}

.social-proof {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
  margin-bottom: 26px;
}

.rules {
  text-align: left;
  background: #161616;
  border: 1px solid #242424;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 18px;
}

.rules h3 {
  font-size: 13px;
  color: var(--accent, #ffcc00);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rules ul { list-style: none; }

.rules li {
  font-size: 14px;
  line-height: 1.5;
  color: #ddd;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.rules li:last-child { margin-bottom: 0; }

.rules li::before {
  content: "\2714";
  color: var(--accent, #ffcc00);
  position: absolute;
  left: 0;
  top: 0;
}

.trust {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.trust div {
  flex: 1;
  background: #131313;
  border: 1px solid #242424;
  border-radius: 10px;
  padding: 12px 6px;
}

.trust b {
  display: block;
  color: var(--accent, #ffcc00);
  font-size: 17px;
  margin-bottom: 2px;
}

.trust small {
  font-size: 10px;
  color: #999;
  line-height: 1.3;
  display: block;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.warn {
  font-size: 13px;
  line-height: 1.55;
  color: #e8c84a;
  background: rgba(255,204,0,.07);
  border: 1px solid rgba(255,204,0,.25);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 22px;
  text-align: left;
}

footer {
  font-size: 11px;
  line-height: 1.6;
  color: #666;
  margin-top: auto;
  padding: 16px 20px 24px;
  text-align: center;
  max-width: 480px;
}

/* página curta: centraliza verticalmente pra não ficar tudo colado no topo */
.wrap.center {
  margin: auto 0;
  padding-top: 40px;
}

.brand {
  overflow: hidden;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.45);
}

.brand img {
  width: 132px;
  height: auto;
  display: block;
}
