:root {
  --black: #000;
  --amber: #ffb300;
  --white: #fff;
  --font: 'Fira Sans Condensed', sans-serif;
}

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

/* BASE */
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  font-size: 18px;
}

/* VIDEO BG */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  z-index: -1;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--amber);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  z-index: 10;
}

.logo {
  height: 42px;
}

.header__center {
  font-size: 1.1rem;
  color: black;
}

.btn-header {
  background: black;
  color: var(--amber);
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-logo {
  width: 280px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.hero-title--highlight {
  color: var(--amber);
  text-transform: uppercase;
}

.hero__desc {
  max-width: 600px;
  margin: 1rem auto;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--amber);
  color: black;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  margin-top: 2rem;
}

/* EXPERIENCE */
.experience {
  background: black;
  padding: 6rem 3rem;
  text-align: center;
}

.subtitle {
  margin-top: 1rem;
}

.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem auto 0;
  max-width: 900px;
  align-items: center;
}

/* CARDS */
.cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.card {
  width: 280px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.yellow {
  color: var(--amber);
}

/* VIDEO */
.video-title {
  font-size: 1.8rem;
}

.video-box {
  width: 100%;
  max-width: 320px; /* 🔥 reduz tamanho */
  aspect-ratio: 4 / 5;
  margin: 1.5rem auto 0;
  overflow: hidden;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 evita distorção */
  border-radius: 12px;
  display: block;
}

/* BEAR */
.bear {
  min-height: 500px;
  background: url('../assets/bear.jpg') center/cover no-repeat;
  position: relative;
}

.bear--nra {
  background: url('../assets/NRA.jpg') center/cover no-repeat;
}

.bear__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.bear__container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.bear__content {
  width: 600px;
  max-width: calc(100% - 3rem);
  padding-left: 2rem;
}

.bear__content p {
  margin-top: 1rem;
}

/* ========================= */
/* PRICE */
/* ========================= */

.price {
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
}

.price-box {
  background: linear-gradient(#4a2300, #000);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

/* VALOR PRINCIPAL */
.price-main {
  color: var(--amber);
  font-size: 3rem;
  line-height: 1;
}

.price-main .small {
  font-size: 1.4rem;
  margin-right: 6px;
}

/* SUB PREÇO */
.price-sub {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* AÉREO */
.price-air {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* DESCONTO */
.price-discount {
  color: var(--amber);
  margin: 1.2rem 0 1.5rem;
  font-weight: 700;
}

/* LISTA */
.price-list {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
}

.price-list li {
  margin-bottom: 1.4rem;
}

.price-list strong {
  color: var(--amber);
  display: block;
  font-size: 1rem;
}

.price-list span {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* BOTÃO FULL */
.btn-primary.full {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

/* FOOTER */
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--amber);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1rem 3rem;
}

.footer span {
  color: black;
}

.btn-footer {
  background: black;
  color: var(--amber);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .experience__grid {
    grid-template-columns: 1fr;
  }

  .experience__video {
    order: -1;
  }

}

/* MOBILE SMALL */
@media (max-width: 600px) {

  .hero {
    height: calc(100vh + 120px);
  }

  .hero-logo {
    width: 196px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

}