@font-face {
  font-family: "Abolition";
  src: url("assets/fonts/ABOLITION/Abolition-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --red: #ff0808;
  --red-dark: #cc0606;
  --cream: #f5f0e8;
  --cream-2: #ede8df;
  --dark: #1a1a1a;
  --white: #ffffff;
  --font-condensed: "Barlow Condensed", sans-serif;
  --font-abolition: "Abolition", sans-serif;
  --blue: #1565c0;
  --blue-dark: #0d47a1;
  --font-body: "Barlow", sans-serif;
  --nav-h: 96px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  padding-top: var(--nav-h);
}

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--red);
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 2.2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background-color: var(--red-dark);
  transform: translateY(-2px);
}
.btn-primary.btn-large {
  font-size: 1.3rem;
  padding: 0.9rem 2.8rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 2px solid var(--cream-2);
  height: var(--nav-h);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  gap: 1rem;
}
.nav-logo img {
  height: 82px;
  width: auto;
  padding-top: 10px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--red);
}
.btn-nav {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.65rem 1.8rem;
  border-radius: 4px;
  font-size: 1.15rem;
  transition: background 0.2s !important;
  display: inline-flex !important;
  align-items: center;
  line-height: 1;
}
.btn-nav:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.hero {
  position: relative;
  width: 100%;
}
.hero-image {
  position: relative;
  line-height: 0;
  font-size: 0;
}
.hero-image img:first-child {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-info-bar {
  background: var(--cream);
  padding: 0.6rem 1.5rem;
  border-bottom: none;
  margin: 0;
}
.hero-info-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.hero-info-bar-inner span {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}
.hero-info-bar-inner .dot {
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1;
}
.hero-info-bar-inner .sep {
  color: var(--blue);
  opacity: 1;
}

.pertencimento {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 540px;
  background: var(--dark);
}
.pertencimento-photo {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  width: 100%;
}
.pertencimento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pertencimento-overlay {
  position: absolute;
  inset: 0;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2.8rem;
}
.pertencimento-overline {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.1rem;
  line-height: 1;
}
.pertencimento-title {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.93;
  margin: 0;
}
.pertencimento-red {
  flex: 0 0 50%;
  background: var(--red);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
  padding: 4rem 5rem 4rem 4rem;
}
.pertencimento-text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  text-align: justify;
}
.pertencimento-text strong {
  color: var(--white);
  font-weight: 700;
}
.pertencimento-text-block {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem 6rem;
  background: none;
}

.kit {
  padding: 1.5rem 1.5rem;
}
.kit-img-wrap {
  position: relative;
  display: inline-block;
}
.kit img {
  display: block;
  width: 100%;
}
.kit-cta {
  display: block;
  margin-top: 1rem;
  text-align: center;
}
.btn-kit {
  position: absolute;
  top: 55%;
  left: 60%;
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 3rem;
  border-radius: 50px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-kit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.preco {
  position: absolute;
  top: 30%;
  left: 65%;
  transform: translate(-50%, -50%) rotate(-5deg);
  color: #2f3e8f;
  display: inline-block;
}

.rs {
  font-size: clamp(13px, 3vw, 50px);
  font-weight: bold;
}

.valor {
  font-size: clamp(60px, 14vw, 220px);
  font-weight: 900;
  line-height: 1;
}

.centavos {
  position: absolute;
  top: 15%;
  right: -18%;
  font-size: clamp(13px, 3vw, 50px);
  font-weight: bold;
}

.social {
  position: absolute;
  right: -45%;
  bottom: 15%;
  font-size: clamp(12px, 2vw, 30px);
  font-weight: bold;
  letter-spacing: 2px;
}

.kit-text {
  position: absolute;
  top: 150px;
  right: 0%;
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 6rem);
  color: rgba(93, 6, 6, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.kit-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.kit-shirt {
  flex: 0 0 auto;
}
.kit-shirt img {
  width: 340px;
  max-width: 100%;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.3));
}
.kit-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.kit-price-block {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  color: var(--red);
}
.price-label {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  margin-top: 0.5rem;
}
.price-value {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(5rem, 10vw, 8rem);
  color: var(--white);
  line-height: 0.9;
}
.price-value sup {
  font-size: 2.5rem;
  vertical-align: super;
}
.price-tag {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
  align-self: flex-end;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}
.kit-info .btn-primary {
  background: var(--white);
  color: var(--red);
  font-size: 1.2rem;
  padding: 0.85rem 2.5rem;
}
.kit-info .btn-primary:hover {
  background: var(--cream);
}

.countdown-section {
  background: var(--cream);
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.countdown-label {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.countdown-num {
  font-family: var(--font-abolition);
  font-weight: 900;
  font-size: clamp(9.45rem, 18.9vw, 14.85rem);
  color: var(--red);
  line-height: 1;
  min-width: 3ch;
  text-align: center;
}
.countdown-unit {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.6rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.55;
}
.countdown-sep {
  font-family: var(--font-abolition);
  font-weight: 300;
  font-size: 4rem;
  color: var(--red);
  margin-bottom: 1.5rem;
  line-height: 0.5;
}

.galeria {
  background: var(--red);
  padding: 0 0 0;
}
.galeria-banner {
  background: var(--red);
  padding: 1.25rem 1.5rem;
}
.galeria-headline {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-condensed);
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.4;
}
.galeria-headline strong {
  color: var(--white);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  margin-bottom: 4px;
}
.carousel-track {
  display: flex;
  gap: 5px;
  width: max-content;
  will-change: transform;
}
.carousel-track img {
  height: 230px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 0;
  display: block;
  pointer-events: none;
  user-select: none;
}
.carousel-left {
  animation: scrollLeft 55s linear infinite;
}
.carousel-right {
  animation: scrollRight 55s linear infinite;
}
.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}
.galeria-cta {
  text-align: center;
  padding: 1.2rem 1.5rem;
  background: var(--red);
}
.galeria-cta .btn-primary {
  background: var(--white);
  color: var(--red);
  border-radius: 50px;
}
.galeria-cta .btn-primary:hover {
  background: var(--cream);
}

.stats {
  background: var(--cream);
  padding: 1.5rem 2rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.15rem;
  border-left: none;
  padding-left: 0;
}
.stat-icon {
  height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
}
.stat-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}
.stat-number {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--red);
  line-height: 0.9;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}
.stat-number strong {
  font-weight: 900;
}
.stat-unit {
  font-size: clamp(1rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1;
}
.stat-unit small {
  display: block;
  font-size: 0.5em;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.stat-desc-pre,
.stat-desc {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  opacity: 0.7;
  line-height: 1.3;
}
.stat-desc-pre {
  opacity: 0.55;
  font-size: 0.9rem;
}

.percurso {
  background: var(--cream-2);
  padding: 1.5rem 1.5rem;
  text-align: center;
}
.percurso-title {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 1rem;
}
.percurso-map {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  min-height: 320px;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.percurso-img {
  width: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.percurso-em-breve {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.percurso-em-breve p {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 6rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.18);
}

.informacoes-prova {
  background: var(--red);
  padding: 1.5rem 1.5rem;
}
.info-inner {
  max-width: 680px;
  margin: 0 auto;
}
.info-title {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
}
.info-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.info-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--white);
  border-radius: 50px;
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  text-align: center;
}
.info-pill svg {
  flex-shrink: 0;
  stroke: var(--white);
  transition: stroke 0.2s;
}
.info-pill:hover {
  background: var(--white);
  color: var(--red);
}
.info-pill:hover svg {
  stroke: var(--red);
}
.btn-pill {
  border-radius: 50px;
}
.info-cta {
  text-align: center;
  margin-top: 1rem;
}
.info-cta .btn-primary {
  background: var(--white);
  color: var(--red);
  border-radius: 50px;
  font-size: 1rem;
  padding: 0.75rem 2.5rem;
}
.info-cta .btn-primary:hover {
  background: var(--cream);
}

.footer {
  background: var(--cream);
  padding: 1.2rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo img {
  height: 144px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1070px) {
  :root {
    --nav-h: 64px;
  }

  .pertencimento {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: auto;
    height: auto;
  }
  .pertencimento-title {
    position: static;
    color: var(--white);
    font-size: clamp(1.8rem, 8vw, 3rem);
    font-weight: 900;
    line-height: 0.9;
  }

  .pertencimento-overline {
    position: static;
    font-family: var(--font-condensed);
    color: var(--white);
    font-size: clamp(0.85rem, 3vw, 1.1rem);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
  }
  .pertencimento-photo {
    position: relative;
    width: 100%;
    line-height: 0;
  }
  .pertencimento-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: none;
  }
  .pertencimento-text-block {
    position: static;
    transform: none;
    width: 100%;
    background: var(--red);
    padding: 2rem 2rem;
    gap: 1rem;
  }
  .pertencimento-text {
    color: rgba(255, 255, 255, 0.9);
  }
  .pertencimento-red {
    flex: none;
    width: 100%;
    padding: 3rem 2rem;
  }

  .kit-inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .kit-info {
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .info-buttons {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    border-bottom: 2px solid var(--cream-2);
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a {
    font-size: 1.2rem;
  }

  .countdown {
    gap: 2rem;
    overflow: hidden;
  }
  .countdown-num {
    font-size: clamp(5.4rem, 13.5vw, 8.1rem);
    min-width: 2ch;
  }
  .countdown-unit {
    font-size: clamp(0.85rem, 3vw, 1.2rem);
    letter-spacing: 0.12em;
  }
  .countdown-sep {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  /* .countdown-item {
    gap: 0.05rem;
  } */

  .hero-info-bar {
    padding: 0.4rem 0.75rem;
  }
  .hero-info-bar-inner {
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .hero-info-bar-inner span {
    font-size: clamp(1rem, 4.5vw, 1.5rem);
    letter-spacing: 0.04em;
  }
  .hero-info-bar-inner .dot {
    font-size: 0.9rem;
  }
  .hero-info-bar-inner .sep {
    font-size: clamp(1rem, 4.5vw, 1.5rem);
  }

  .pertencimento-photo {
    overflow: hidden;
    align-self: auto;
    height: auto;
  }
  .pertencimento-overlay {
    padding: 1.2rem 1.2rem;
  }
  .pertencimento-title {
    font-size: clamp(1.5rem, 3vw, 1.1rem);
  }
  .pertencimento-overline {
    font-size: clamp(0.85rem, 3vw, 1.1rem);
  }
  .pertencimento-text-block {
    padding: 1.5rem 1.2rem;
    gap: 0.9rem;
  }
  .pertencimento-text {
    font-size: clamp(0.88rem, 3.5vw, 1rem);
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .preco {
    top: 25%;
    left: 70%;
    transform: translate(-50%, -50%) rotate(-5deg);
  }

  .social {
    right: -65%;
    bottom: 10%;
  }

  .btn-kit {
    position: absolute;
    top: 50%;
    left: 59%;
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 1rem;
    border-radius: 50px;
    transition:
      background 0.2s,
      transform 0.15s;
  }
}

@media (min-width: 1600px) {
  .preco {
    left: 60%;
  }
}
