/* ============================================================
   Placa Verificada — Landing Page Styles
   Pure CSS, no framework dependency.
   Poppins loaded via self-hosted woff2 in poppins.css
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --blue-primary: #1AABFE;
  --blue-dark: #194D9A;
  --blue-cta: #0A75B8;
  --black: #141414;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.85);
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-full: 9999px;
  --transition: 0.25s ease;
  --max-w: 2100px;
  --pad-x: 5rem;
  --pad-x-md: 3rem;
  --pad-x-sm: 1rem;
  --pad-y: 2rem;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }

/* Screen reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---- Page wrapper ---- */
.page-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

/* ---- Shared padding ---- */
.section {
  padding: var(--pad-y) var(--pad-x);
}
@media (max-width: 768px) {
  .section { padding: 1.5rem var(--pad-x-sm); }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .section { padding: var(--pad-y) var(--pad-x-md); }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 2rem;
  border-radius: var(--radius-full);
  transition: background var(--transition), opacity var(--transition), transform var(--transition);
  white-space: nowrap;
  text-align: center;
}
.btn:hover { opacity: 0.9; }
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--blue-primary); color: var(--white); }
.btn--primary:hover { background: #1590d4; }
.btn--secondary { background: var(--white); color: var(--black); }
.btn--secondary:hover { background: #f0f0f0; }
.btn--blue { background: var(--blue-cta); color: var(--white); border-radius: var(--radius-sm); padding: 0.75rem 2rem; }
.btn--blue:hover { background: #0960a0; }
.btn--white { background: var(--white); color: var(--blue-cta); border-radius: var(--radius-full); padding: 0.5rem 1.75rem; font-weight: 700; }
.btn--sm { font-size: 0.8rem; padding: 0.5rem 1.75rem; }

/* ---- Text helpers ---- */
.text-accent { color: var(--blue-primary); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x) 0 0;
}
@media (max-width: 768px) {
  .navbar__inner { padding: 0 var(--pad-x-sm) 0 0; }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .navbar__inner { padding: 0 var(--pad-x-md) 0 0; }
}
.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar__logo img {
  height: 3.5rem;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .navbar__logo img { height: 4rem; }
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .navbar__links { display: none; }
}
.nav-link {
  color: var(--white);
  font-size: 0.875rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.nav-link:hover { border-color: var(--blue-primary); }
.navbar__cta { margin-left: 3rem; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.25rem;
}
.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
@media (max-width: 900px) {
  .navbar__hamburger { display: flex; }
}
.navbar__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 2rem;
  background: var(--black);
  padding: 2rem var(--pad-x-sm);
  min-height: 100dvh;
}
.navbar__mobile.is-open { display: flex; }
.navbar__mobile .nav-link { color: var(--white); font-size: 1.125rem; }
.navbar__mobile .btn { width: fit-content; font-size: 1.125rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 36rem;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 2rem var(--pad-x) 2rem;
  gap: 2rem;
}
@media (max-width: 768px) {
  .hero { padding: 1.5rem var(--pad-x-sm); flex-direction: column; align-items: flex-start; min-height: auto; }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .hero { padding: 2rem var(--pad-x-md); }
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
}
@media (max-width: 768px) {
  .hero__content { text-align: center; align-items: center; }
}
.hero__title {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 1.25rem;
  max-width: 70vw;
}
@media (max-width: 768px) {
  .hero__title { max-width: 100%; padding-bottom: 0.5rem; }
}
.hero__car--mobile { display: none; }
@media (max-width: 768px) {
  .hero__car--mobile { display: block; width: 100%; padding: 1rem; }
  .hero__car--mobile img { max-height: 220px; margin: 0 auto; object-fit: contain; }
}
.hero__search-box {
  width: 100%;
  max-width: 40rem;
}
.hero__desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  padding-top: 0.75rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
  align-items: center;
}
@media (max-width: 768px) {
  .hero__badges { justify-content: center; }
}
.hero__badges img { height: 2.75rem; width: auto; object-fit: contain; }

/* Desktop car */
.hero__car--desktop {
  display: none;
}
@media (min-width: 769px) {
  .hero__car--desktop {
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 0;
  }
  .hero__car--desktop img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom;
  }
}

/* ---- Plate Search ---- */
.plate-search {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.plate-search__field {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  flex: 1;
  gap: 0.5rem;
}
.plate-search__flag { flex-shrink: 0; }
.plate-search__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 0;
  background: transparent;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plate-search__input::placeholder { color: #999; text-transform: none; letter-spacing: 0; }
.plate-search__btn {
  border-radius: var(--radius-full);
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  margin: 3px;
}

/* ============================================================
   PLANS SECTION
   ============================================================ */
.plans {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.plans__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.plans__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plans__inner {
  position: relative;
  z-index: 10;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { font-size: 1rem; opacity: 0.85; }
.section-title--xl {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* Tabs */
.plans__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tab {
  background: var(--blue-cta);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.65;
  transition: opacity var(--transition);
}
.tab--active, .tab:hover { opacity: 1; }

/* Plans grid */
.plans__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .plans__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .plans__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Plan card */
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(10,117,184,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.plan-card--featured {
  border-color: var(--blue-cta);
}
.plan-card__badge {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #F2DF33;
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
}
.plan-card__name { font-size: 1rem; font-weight: 500; margin-bottom: 0.1rem; }
.plan-card__original-price { font-size: 0.95rem; font-weight: 400; opacity: 0.65; text-decoration: line-through; margin-bottom: 0.1rem; }
.plan-card__price { font-size: 2rem; font-weight: 700; line-height: 1; margin-bottom: 0.75rem; }
.plan-card__btn {
  display: block;
  width: 80%;
  margin: 0 auto 1.25rem;
  text-align: center;
  font-size: 0.875rem;
}
.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex: 1;
}
.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 300;
}
.plan-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--blue-cta);
  border-radius: var(--radius-sm);
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  margin-left: 1rem;
  color: var(--white);
  transition: background var(--transition), color var(--transition);
}
.plan-card__more:hover { background: var(--white); color: var(--blue-cta); }
.plan-card__more--light { color: var(--white); }

/* Multi plan */
.plans__multi { display: none; max-width: 40rem; margin: 0 auto; }
.plans__multi.is-visible { display: block; }
.multi-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10,117,184,0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
}
.multi-plan h3 { font-size: 1.5rem; font-weight: 700; }
.multi-plan__pkg { font-size: 1.2rem; font-weight: 600; }
.multi-plan__desc { font-size: 0.9rem; opacity: 0.8; }
.multi-plan__coupon { font-size: 2rem; font-weight: 700; color: #F2DF33; }
.multi-plan__discount { font-size: 1.5rem; font-weight: 700; }
.multi-plan__discount span { font-size: 1rem; font-weight: 400; }
.plans__note { font-size: 0.75rem; font-weight: 200; margin-top: 0.5rem; opacity: 0.85; }

/* ============================================================
   ADVANTAGES / INFO SECTION
   ============================================================ */
.advantages {
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.advantages__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .advantages__header { flex-direction: row; align-items: center; justify-content: space-between; }
}
.advantages__text { max-width: 50%; }
@media (max-width: 1024px) { .advantages__text { max-width: 100%; } }
.advantages__title-blue { color: var(--blue-dark); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
.advantages__subtitle { font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 500; }
.advantages__desc { font-size: 0.85rem; line-height: 1.6; margin-top: 0.5rem; }
.advantages__count { font-weight: 700; font-size: 1rem; white-space: nowrap; }
.advantages__disclaimer { font-size: 0.75rem; color: #666; margin-top: 0.5rem; }
.advantages__actions { display: flex; justify-content: center; margin-top: 1rem; }

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
}
@media (min-width: 640px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .info-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1280px) { .info-grid { grid-template-columns: repeat(5, 1fr); } }

.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.info-card:hover { transform: scale(1.04); }
.info-card.is-selected { background: var(--blue-primary); border-color: var(--blue-primary); color: var(--white); }
.info-card.is-selected svg { fill: var(--white) !important; color: var(--white) !important; }
.info-card svg { fill: currentColor; }
.info-card .text-accent { fill: var(--blue-primary); color: var(--blue-primary); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  background: linear-gradient(135deg, #194D9A 0%, #fff 60%, #fff 100%);
  text-align: center;
}
.faq__title {
  color: var(--blue-dark);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 2rem;
}
.faq__layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}
@media (min-width: 768px) {
  .faq__layout { flex-direction: row; align-items: flex-start; gap: 2.5rem; }
}
.faq__img { flex: 1; max-height: 40rem; overflow: hidden; }
.faq__img img { width: 100%; height: 100%; object-fit: cover; }
.faq__list { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }

/* FAQ accordion via <details> - zero JS needed */
.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item__question {
  background: var(--blue-dark);
  color: var(--white);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  padding: 0.9rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
  min-height: 3.5rem;
}
.faq-item__question::after {
  content: "›";
  font-size: 1.5rem;
  line-height: 1;
  transform: rotate(90deg);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] .faq-item__question::after {
  transform: rotate(270deg);
}
.faq-item__answer {
  background: var(--white);
  border: 1px solid var(--blue-dark);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--black);
}
.faq-link { color: var(--blue-primary); text-decoration: underline; font-weight: 600; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
}
@supports (background-image: url('/contactBg.svg')) {
  @media (min-width: 768px) {
    .contact {
      background: url('/contactBg.svg') center/cover no-repeat, linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
    }
  }
}
.contact__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 70%;
}
@media (max-width: 768px) { .contact__inner { max-width: 100%; flex-direction: column; } }
@media (min-width: 768px) { .contact__inner { flex-direction: row; gap: 2.5rem; } }
.contact__img {
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 1rem;
}
@media (min-width: 768px) { .contact__img { width: 45%; } }
.contact__img img { width: 100%; height: 100%; object-fit: cover; }
.contact__form-wrap { flex: 1; }
.contact__form { display: flex; flex-direction: column; gap: 0.75rem; }
.contact__title { color: var(--white); font-size: 2rem; font-weight: 700; line-height: 1; margin-bottom: 0.25rem; }
.form-row { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 768px) { .form-row { flex-direction: row; gap: 1.5rem; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; width: 100%; }
.form-label { color: var(--white); font-size: 0.875rem; font-weight: 600; }
.form-input {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: none;
  outline: none;
  padding: 0.5rem 0.625rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--black);
  width: 100%;
}
.form-input--textarea { height: 7rem; resize: none; }
.contact__submit { align-self: flex-start; margin-top: 1rem; }
@media (max-width: 768px) { .contact__submit { align-self: center; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
}
.footer__bg { position: absolute; inset: 0; z-index: 0; }
.footer__bg-img { width: 100%; height: 100%; object-fit: cover; }
.footer__bg-img--mobile { display: none; }
@media (max-width: 767px) {
  .footer__bg-img--desktop { display: none; }
  .footer__bg-img--mobile { display: block; }
}
.footer__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem var(--pad-x);
  color: var(--white);
}
@media (max-width: 768px) { .footer__inner { padding: 2rem var(--pad-x-sm); } }
@media (min-width: 769px) and (max-width: 1280px) { .footer__inner { padding: 2rem var(--pad-x-md); } }
@media (min-width: 1024px) { .footer__inner { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.footer__brand { display: flex; flex-direction: column; gap: 1rem; max-width: 22rem; }
.footer__tagline { font-size: 1rem; font-weight: 400; line-height: 1.5; }
.footer__social { display: flex; gap: 0.75rem; }
.social-icon {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.social-icon:hover { background: #dbeafe; }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) { .footer__nav { flex-direction: row; gap: 2rem; } }
.footer__col h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__link { font-size: 0.9rem; font-weight: 300; border-bottom: 2px solid transparent; padding-bottom: 1px; transition: border-color var(--transition); }
.footer__link:hover { border-color: var(--blue-primary); }
.footer__copy {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 1rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
}

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 100;
  transition: transform var(--transition);
  display: block;
  line-height: 0;
}
@media (min-width: 768px) {
  .whatsapp-btn {
    bottom: 2.5rem;
    right: 2rem;
  }
  .whatsapp-btn svg { width: 48px; height: 48px; }
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* ============================================================
   UTILITIES
   ============================================================ */
[hidden] { display: none !important; }

/* ============================================================
   ONE-CLICK PURCHASE — Modal & Flow
   ============================================================ */

/* Overlay */
.oc-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.oc-overlay--open { display: flex; }

/* Modal box */
.oc-modal {
  background: linear-gradient(160deg, #0f1f3d 0%, #141414 100%);
  border-radius: 1rem;
  width: 100%;
  max-width: 480px;
  max-height: 90dvh;
  overflow-y: auto;
  padding: 2rem 1.5rem;
  position: relative;
  color: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

/* Content wrapper */
.oc-content { display: flex; flex-direction: column; gap: 1rem; }
.oc-content--center { align-items: center; text-align: center; }

/* Back button */
.oc-back {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
}
.oc-back:hover { background: rgba(255,255,255,0.2); }

/* Title & subtitle */
.oc-title { font-size: 1.25rem; font-weight: 700; margin-top: 0.5rem; }
.oc-subtitle { font-size: 0.875rem; opacity: 0.75; }
.oc-hint { font-size: 0.8rem; opacity: 0.6; text-align: center; }

/* Step indicator */
.oc-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 0.5rem;
  flex-wrap: nowrap;
  overflow: hidden;
}
.oc-step {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.oc-step__dot {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.oc-step.active .oc-step__dot { background: #1AABFE; }
.oc-step.done .oc-step__dot { background: #10B981; }
.oc-step__label {
  font-size: 0.6rem;
  opacity: 0.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 0.2rem;
  max-width: 3rem;
}
.oc-step.active .oc-step__label { opacity: 1; color: #1AABFE; }
.oc-step__line { flex: 1; height: 1px; background: rgba(255,255,255,0.2); margin: 0 0.25rem; }

/* Vehicle info list */
.oc-vehicle-info { display: flex; flex-direction: column; gap: 0.6rem; }
.oc-vehicle-info li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}
.oc-vehicle-info li span { opacity: 0.65; }
.oc-logo { text-align: center; }
.oc-logo img { max-height: 3rem; margin: 0 auto; object-fit: contain; }

/* Plan cards */
.oc-plans { display: flex; flex-direction: column; gap: 0.6rem; }
.oc-plan {
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.oc-plan:hover { border-color: var(--plan-color, #1AABFE); background: rgba(255,255,255,0.04); }
.oc-plan--selected { border-color: var(--plan-color, #1AABFE) !important; background: rgba(26,171,254,0.1); }
.oc-plan__badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: #f2df33;
  color: #141414;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 99px;
  white-space: nowrap;
}
.oc-plan__name { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.1rem; }
.oc-plan__price { font-size: 1.25rem; font-weight: 700; color: var(--plan-color, #1AABFE); margin-bottom: 0.35rem; }
.oc-plan__features { font-size: 0.75rem; opacity: 0.8; display: flex; flex-direction: column; gap: 0.2rem; }

/* Summary list */
.oc-summary { display: flex; flex-direction: column; gap: 0.5rem; }
.oc-summary li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border-radius: 0.5rem;
}
.oc-summary li span { opacity: 0.65; }

/* Coupon row */
.oc-coupon { display: flex; gap: 0.5rem; align-items: stretch; }
.oc-coupon-msg { font-size: 0.8rem; }
.oc-coupon-msg--success { color: #10B981; }
.oc-coupon-msg--error { color: #ff4d4f; }

/* QR code */
.oc-qrcode-wrap {
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

/* PIX code input */
.oc-pix-code { display: flex; gap: 0.5rem; align-items: stretch; }
.oc-pix-text { font-size: 0.7rem !important; flex: 1; word-break: break-all; }
.oc-countdown-label { text-align: center; font-size: 0.9rem; }
.oc-countdown-label strong { color: #1AABFE; }

/* Progress bar */
.oc-progress-wrap {
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
  height: 0.6rem;
  overflow: hidden;
}
.oc-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #1AABFE, #10B981);
  border-radius: 99px;
  transition: width 0.8s ease;
}

/* Done step */
.oc-done-icon { font-size: 3rem; }

/* Buttons */
.oc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.75rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.oc-btn:hover { opacity: 0.9; }
.oc-btn:active { transform: scale(0.97); }
.oc-btn--primary { background: #1AABFE; color: #fff; width: 100%; }
.oc-btn--secondary { background: rgba(255,255,255,0.15); color: #fff; }
.oc-btn--cta { background: linear-gradient(135deg,#FFD700,#FFC700); color: #141414; width: 100%; font-size: 1rem; }
.oc-btn--ghost { background: transparent; color: rgba(255,255,255,0.6); font-weight: 400; }
.oc-btn--sm { font-size: 0.8rem; padding: 0.5rem 1rem; border-radius: 0.5rem; }
.oc-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Form inputs */
.oc-form { display: flex; flex-direction: column; gap: 0.75rem; }
.oc-label { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.8rem; font-weight: 600; }
.oc-input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.5rem;
  padding: 0.6rem 0.75rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.oc-input:focus { border-color: #1AABFE; }
.oc-input::placeholder { color: rgba(255,255,255,0.4); }
.oc-field-error { color: #ff4d4f; font-size: 0.75rem; min-height: 1rem; }

/* Loading screen */
.oc-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.85;
}
.oc-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: #1AABFE;
  border-radius: 50%;
  animation: oc-spin 0.8s linear infinite;
}
@keyframes oc-spin { to { transform: rotate(360deg); } }

/* Toast notification */
.oc-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(2rem);
  background: #1e293b;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  z-index: 3000;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
  max-width: 90vw;
}
.oc-toast--error { background: #7f1d1d; }
.oc-toast--show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   REVIEWS / TESTIMONIALS SECTION
   ============================================================ */
.reviews {
  background: #f0f6ff;
}
.reviews__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.reviews__title {
  color: var(--blue-dark);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.reviews__subtitle {
  font-size: 0.9rem;
  color: #555;
}
.reviews__google-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  transition: box-shadow var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}
.reviews__google-badge:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.reviews__google-score {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.reviews__score-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.reviews__score-stars {
  color: #FBBF24;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.reviews__count {
  font-size: 0.75rem;
  color: #666;
}
/* Carousel wrapper */
.reviews__carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.reviews__viewport {
  overflow: hidden;
  width: 100%;
}
.reviews__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.reviews__track .review-card {
  flex-shrink: 0;
  min-width: 0;
}
/* Nav buttons */
.reviews__nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid #dbe9ff;
  color: var(--blue-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.reviews__nav:hover:not(:disabled) {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(26,171,254,0.3);
}
.reviews__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
/* Dots */
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.reviews__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #c0d4f0;
  border: none;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
  padding: 0;
}
.reviews__dot--active {
  background: var(--blue-primary);
  width: 1.5rem;
  border-radius: 0.25rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  border: 1px solid #eef2ff;
  transition: box-shadow var(--transition);
}
.review-card:hover {
  box-shadow: 0 6px 24px rgba(26, 171, 254, 0.15);
}
.review-card__top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e0e7ff;
}
.review-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.review-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card__date {
  font-size: 0.75rem;
  color: #888;
}
.review-card__stars {
  color: #FBBF24;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.review-card__text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #333;
  flex: 1;
}

