:root {
  --ink: #0b0f2e;
  --paper: #ffffff;
  --accent: #0f1bff;
  --accent-2: #4f6bff;
  --accent-3: #9bb5ff;
  --muted: #dbe2f5;
  --shadow: 0 24px 60px rgba(7, 15, 70, 0.2);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(circle at top, #1f39ff, #0b146a 55%);
  color: var(--paper);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 26px 7vw 96px;
  background: #0b1152;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      120deg,
      rgba(11, 17, 82, 0.7),
      rgba(11, 17, 82, 0.3)
    ),
    url("assets/hero/ctacampanha.jpg") center 25%/cover no-repeat;
  filter: saturate(1.05) contrast(1.05);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(15, 27, 255, 0.45), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(79, 107, 255, 0.35), transparent 40%);
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.logo img {
  width: 160px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-content {
  margin-top: 32px;
  max-width: 720px;
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: #eaf0ff;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 4.6vw, 4.5rem);
  line-height: 1.05;
  margin: 12px 0 10px;
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 18px 0 12px;
}

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: var(--paper);
  box-shadow: 0 18px 40px rgba(15, 27, 255, 0.35);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--paper);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(7, 15, 70, 0.15);
}


.content {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  color: var(--ink);
  margin-top: -90px;
  padding: 90px 7vw 80px;
  border-radius: 40px 40px 0 0;
  position: relative;
  z-index: 1;
}

.section {
  margin-bottom: 80px;
}

.section-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  margin-bottom: 10px;
}

.section-head p {
  max-width: 620px;
  color: rgba(11, 15, 46, 0.72);
}

.carousel {
  margin-top: 24px;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 27, 255, 0.35) transparent;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: rgba(15, 27, 255, 0.35);
  border-radius: 999px;
}

.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--paper);
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(7, 15, 70, 0.2);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.carousel-btn[data-carousel="prev"] {
  left: -12px;
}

.carousel-btn[data-carousel="next"] {
  right: -12px;
}

.carousel-btn:focus {
  outline: 2px solid rgba(15, 27, 255, 0.5);
  outline-offset: 2px;
}

.car-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s ease;
  min-width: 260px;
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.car-card:hover {
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.16);
}

.car-media {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.car-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 46, 0.05), rgba(11, 15, 46, 0.55));
  z-index: 2;
}

.car-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.9s ease, transform 1.4s ease;
  z-index: 1;
}

.car-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.car-body {
  padding: 18px 18px 22px;
}

.car-body h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.car-specs {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 12px 0 10px;
  padding: 0;
}

.car-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f1f4ff;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 0.9rem;
}

.car-specs span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 15, 46, 0.6);
}

.car-specs strong {
  font-weight: 600;
  color: var(--ink);
}

.car-note {
  font-size: 0.85rem;
  color: rgba(11, 15, 46, 0.6);
  margin-bottom: 12px;
}

.mini-cta {
  font-weight: 600;
  color: var(--accent);
}


.contact-card {
  background: linear-gradient(120deg, #0f1bff, #0a1258);
  color: var(--paper);
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.contact-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}


.footer {
  padding: 28px 7vw 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  background: #0b146a;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  display: none;
  box-shadow: 0 12px 26px rgba(15, 27, 255, 0.35);
}

@media (max-width: 980px) {
  .hero-content {
    margin-top: 24px;
  }

  .nav-links {
    display: none;
  }

  .carousel-btn {
    display: none;
  }

  .content {
    margin-top: -60px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 22px 6vw 88px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
