:root {
  --bg-dark: #1f1f20;
  --bg-deeper: #171717;
  --blue-nav: #0d3a54;
  --blue-overlay: rgba(16, 50, 73, 0.7);
  --text: #ffffff;
  --text-dark: #0c3550;
  --text-soft: rgba(255, 255, 255, 0.76);
  --body-soft: #5d6770;
  --red: #d91822;
  --red-strong: #f12632;
  --line-light: rgba(12, 53, 80, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  height: 82px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 118px;
}

.main-nav {
  display: flex;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 600;
  align-items: center;
}

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-strong));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(217, 24, 34, 0.22);
  white-space: nowrap;
}

.secondary-button {
  min-height: 48px;
  padding: 0 22px;
}

.hero {
  position: relative;
  min-height: 980px;
  overflow: hidden;
}

.hero-bg,
.site-footer {
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
}

.hero-photo-left {
  background:
    linear-gradient(0deg, rgba(12, 33, 49, 0.52), rgba(12, 33, 49, 0.52)),
    linear-gradient(90deg, rgba(8, 21, 31, 0.22), rgba(8, 21, 31, 0.22)),
    url("./assets/bg-carros.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--blue-overlay);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 980px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
  padding-top: 160px;
  padding-bottom: 280px;
}

.hero-topline {
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.8rem, 6.6vw, 5.4rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 920px;
  margin: 24px auto 34px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.9;
  position: relative;
  z-index: 3;
  text-wrap: pretty;
}

.hero-car-image {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 2;
  width: min(46vw, 760px);
  transform: translateX(4%);
  filter: drop-shadow(0 34px 36px rgba(0, 0, 0, 0.34));
}

.hero-band {
  position: absolute;
  left: -12%;
  right: -12%;
  height: 230px;
  background: linear-gradient(90deg, #b70f17, #ff2a36);
  transform: rotate(-10deg);
  transform-origin: center;
}

.hero-band {
  bottom: -62px;
  z-index: 1;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(15, 15, 15, 0.82), rgba(15, 15, 15, 0.82)),
    linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.about-strip,
.why-strip {
  padding: 120px 0;
}

.about-content,
.why-content {
  display: grid;
  align-content: start;
}

.about-grid,
.why-grid,
.panel-heading,
.contact-grid,
.footer-grid,
.testimonial-card {
  display: grid;
  gap: 36px;
}

.about-grid,
.why-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-collage {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 20px;
  align-items: start;
}

.photo-card,
.offer-image,
.why-photo,
.testimonial-photo,
.map-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(17, 49, 71, 0.58), rgba(17, 49, 71, 0.58)),
    linear-gradient(135deg, #637b8b, #304a5e);
}

.photo-card img,
.offer-image img,
.testimonial-photo img,
.why-photo video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-small {
  min-height: 480px;
}

.photo-tall {
  min-height: 580px;
  margin-top: -60px;
}

.section-kicker {
  margin: 0 0 14px;
  color: #ff858b;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker-dark {
  color: var(--red);
}

h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.about-content p,
.why-intro,
.panel-intro,
.testimonial-text,
.cta-inner p,
.footer-brand p {
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.95;
}

.accent-bars {
  display: flex;
  gap: 6px;
  margin: 22px 0 24px;
}

.accent-bars span {
  width: 14px;
  height: 6px;
  background: linear-gradient(90deg, #ff6b73, #ff2a36);
  transform: skew(-25deg);
}

.accent-bars-dark span {
  background: linear-gradient(90deg, #b70f17, #ff2a36);
}

.offers-panel {
  position: relative;
  z-index: 3;
  margin-top: -48px;
  padding-bottom: 120px;
}

.panel-card {
  padding: 58px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.panel-heading {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 28px;
  margin-bottom: 34px;
  justify-items: center;
  text-align: center;
}

.panel-card h2,
.panel-card h3,
.contact-card h2,
.testimonial-copy h2 {
  color: var(--text-dark);
}

.panel-card h2 {
  max-width: none;
}

.contact-card h2 {
  color: #ffffff;
}

.panel-intro,
.offer-copy p {
  color: #51616e;
}

.panel-subtitle {
  width: min(100%, 78ch);
  margin: 18px auto 0;
  color: #51616e;
  font-size: 1.04rem;
  line-height: 1.9;
  text-align: center;
}

.panel-heading .accent-bars {
  justify-content: center;
}

.offer-grid,
.why-features {
  display: grid;
  gap: 24px;
}

.offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-card {
  overflow: hidden;
  border-radius: 8px;
  background: #0d3a54;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.offer-image {
  min-height: 260px;
}

.offer-copy {
  padding: 22px 24px 26px;
  display: grid;
  gap: 10px;
  align-content: start;
  flex: 1;
}

.offer-copy h3,
.feature-box h3,
.footer-column h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.offer-copy h3 {
  color: #fff;
}

.offer-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.why-media {
  position: relative;
  min-height: 620px;
}

.why-photo {
  min-height: 620px;
  overflow: hidden;
}

.testimonial-person span {
  display: block;
  color: #677987;
  font-size: 0.95rem;
}

.testimonial-person strong {
  display: block;
  margin-top: 4px;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.why-features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.feature-box {
  padding: 34px 22px;
  border-radius: 8px;
  background: #fff;
  color: var(--text-dark);
  text-align: center;
  display: grid;
  place-items: center;
  min-height: 154px;
}

.feature-box h3 {
  margin: 0;
  font-size: 1.45rem;
}

.testimonial-panel {
  position: relative;
  z-index: 3;
  margin-top: -44px;
  padding-bottom: 120px;
}

.testimonial-card {
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
}

.testimonial-card-header {
  margin-bottom: 28px;
}

.testimonial-copy {
  padding: 56px;
}

.testimonial-copy-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.testimonial-copy h2 {
  max-width: none;
}

.testimonial-text {
  color: #1f3d52;
  font-size: 1.2rem;
  line-height: 1.75;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.person-avatar {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-strong));
  color: #fff;
  font-weight: 900;
}

.testimonial-photo {
  min-height: 520px;
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 28px 24px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.review-stars {
  color: #f4b400;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
}

.review-card p {
  margin: 0;
  color: #314c60;
  line-height: 1.8;
}

.review-meta {
  margin-top: auto;
}

.review-meta strong,
.review-meta span {
  display: block;
}

.review-meta strong {
  color: var(--text-dark);
  font-size: 1rem;
}

.review-meta span {
  margin-top: 4px;
  color: #71818d;
  font-size: 0.92rem;
}

.cta-banner {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(0deg, rgba(23, 23, 23, 0.62), rgba(23, 23, 23, 0.62)),
    linear-gradient(135deg, #455c6e, #273a4b);
}

.cta-inner {
  text-align: center;
  display: grid;
  justify-items: center;
}

.cta-inner h2 {
  max-width: none;
  margin: 0 auto 20px;
}

.cta-inner p {
  max-width: 920px;
  margin: 0 auto 30px;
}

.contact-section {
  background: #2d2d2d;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.map-placeholder,
.contact-card {
  min-height: 420px;
}

.map-embed {
  overflow: hidden;
  background: #d9e4ec;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-card {
  padding: 58px 56px;
  display: grid;
  align-content: center;
  gap: 0;
}

.contact-points {
  display: grid;
  gap: 18px;
}

.contact-point {
  position: relative;
  padding-left: 28px;
}

.contact-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-strong));
  box-shadow: 0 0 0 6px rgba(241, 38, 50, 0.12);
}

.contact-point strong,
.contact-point span {
  display: block;
}

.contact-point strong {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 1rem;
}

.contact-point span {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.contact-card .secondary-button {
  margin-top: 28px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
  background:
    linear-gradient(0deg, rgba(13, 58, 84, 0.88), rgba(13, 58, 84, 0.88)),
    linear-gradient(135deg, #35586d, #173447);
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.08), transparent 16%),
    radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.08), transparent 16%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 42px;
  padding-bottom: 56px;
}

.footer-brand p {
  max-width: 36ch;
}

.footer-column {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-column h3 {
  margin-bottom: 8px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .hero-car-image {
    width: min(52vw, 680px);
    transform: translateX(0);
  }
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 860px;
  }

  .hero-inner {
    padding-bottom: 250px;
  }

  .hero-car-image {
    width: min(72vw, 620px);
    left: 50%;
    bottom: 56px;
    transform: translateX(2%);
  }

  .about-grid,
  .why-grid,
  .panel-heading,
  .offer-grid,
  .contact-grid,
  .footer-grid,
  .testimonial-card,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .photo-tall {
    margin-top: 0;
  }

  .about-content,
  .why-content,
  .contact-card {
    align-content: start;
  }

  .why-media {
    min-height: auto;
  }

  .why-features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-logo {
    height: 62px;
  }

  .footer-logo {
    height: 92px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-inner {
    padding-top: 128px;
    padding-bottom: 220px;
  }

  .hero-copy {
    font-size: 0.98rem;
    margin: 20px auto 28px;
    line-height: 1.8;
  }

  .hero h1,
  .contact-card h2,
  .cta-inner h2 {
    max-width: none;
  }

  .hero-car-image {
    width: 86vw;
    left: 50%;
    bottom: 52px;
    transform: translateX(-6%);
  }

  .hero-band {
    height: 170px;
  }

  .about-strip,
  .why-strip,
  .offers-panel,
  .testimonial-panel,
  .cta-banner {
    padding-bottom: 84px;
  }

  .about-strip,
  .why-strip {
    padding-top: 88px;
  }

  .offers-panel,
  .testimonial-panel {
    margin-top: -24px;
  }

  .panel-card,
  .testimonial-copy,
  .contact-card {
    padding: 30px 24px;
  }

  .panel-card {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    max-width: 340px;
  }

  .contact-card .secondary-button {
    max-width: 100%;
  }

  .photo-small,
  .photo-tall,
  .offer-image,
  .why-photo,
  .testimonial-photo,
  .map-placeholder,
  .contact-card {
    min-height: 280px;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 24px 20px;
  }

  .testimonial-card-header {
    margin-bottom: 22px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    font-size: 0.82rem;
    line-height: 1.6;
  }
}
