:root {
  --orange: #eb8744;
  --cream: #f1e1d2;
  --dark: #1f1d1d;
  --white: #ffffff;
  --muted: #6d625c;
  --soft-dark: #2a2727;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

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

.section {
  padding: 95px 0;
}

/* HERO */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: -4%;
  background-image: url("imagens/hero.jpg");
  background-size: cover;
  background-position: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(235, 135, 68, .36), transparent 28%),
    linear-gradient(90deg, rgba(31,29,29,.98), rgba(31,29,29,.62), rgba(31,29,29,.95)),
    linear-gradient(180deg, rgba(31,29,29,.2), rgba(31,29,29,.98));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 60px 0;
}

.privacy-logo {
  width: 145px;
  filter: brightness(0) invert(1);
  margin-bottom: 34px;
}

.campaign-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(46px, 8vw, 96px);
  line-height: .9;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-text {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
  color: rgba(255,255,255,.9);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 18px 40px rgba(235, 135, 68, .36);
}

.btn-secondary {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.26);
  backdrop-filter: blur(10px);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.hero-proof {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.78);
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  font-size: 13px;
  color: rgba(255,255,255,.75);
  text-align: center;
}

.scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.48);
  margin: 9px auto 0;
  position: relative;
}

.scroll-hint span::before {
  content: "";
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.5s ease infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

/* COUNTDOWN */

.countdown-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241,225,210,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
  padding: 26px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.countdown-info span {
  display: block;
  color: var(--orange);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 5px;
  letter-spacing: .7px;
}

.countdown-info h2 {
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -1px;
}

.countdown {
  display: flex;
  gap: 10px;
}

.count-box {
  min-width: 76px;
  background: var(--dark);
  color: #fff;
  padding: 13px 10px;
  border-radius: 17px;
  text-align: center;
}

.count-box strong {
  display: block;
  font-size: 27px;
  line-height: 1;
}

.count-box small {
  display: block;
  margin-top: 6px;
  opacity: .7;
  font-size: 11px;
  text-transform: uppercase;
}

/* SECTION TITLES */

.section-title {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-title span {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -1.8px;
  margin-bottom: 18px;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.section-title.light h2,
.section-title.light p {
  color: #fff;
}

/* VIDEO GRID */

.videos-section {
  background:
    linear-gradient(180deg, #fff, #fff 55%, #f8f0e8);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.video-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.13);
  transition: .3s ease;
}

.video-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 34px 80px rgba(0,0,0,.18);
}

.video-thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.09);
}

.video-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.76)),
    radial-gradient(circle at 50% 50%, transparent 20%, rgba(0,0,0,.25));
}

.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(235,135,68,.97);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 18px 35px rgba(0,0,0,.34);
  transition: .25s ease;
}

.video-card:hover .play-button {
  transform: scale(1.1);
}

.video-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.26);
  color: #fff;
  backdrop-filter: blur(10px);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-info {
  padding: 24px;
}

.video-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -.4px;
}

.video-info p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

.mini-cta {
  display: inline-flex;
  margin-top: 18px;
  background: var(--dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  transition: .25s ease;
}

.mini-cta:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

/* NEXT RELEASES */

.next-section {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.next-section::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(235,135,68,.15);
  filter: blur(45px);
  top: -160px;
  right: -130px;
}

.release-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.release-card {
  background: var(--soft-dark);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  transition: .3s ease;
}

.release-card:hover {
  transform: translateY(-8px);
}

.release-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: .88;
  transition: .5s ease;
}

.release-card:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.release-card div {
  padding: 24px;
}

.release-card span {
  display: inline-flex;
  background: rgba(235,135,68,.18);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.release-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.release-card p {
  color: #d8c8bc;
  line-height: 1.5;
}

/* BIG CTA */

.big-cta {
  background: linear-gradient(135deg, var(--orange), #cf6729);
  color: #fff;
  padding: 76px 0;
  text-align: center;
}

.big-cta h2 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1.5px;
}

.big-cta p {
  font-size: 20px;
  margin-bottom: 28px;
}

/* PRICING */

.pricing-section {
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: #fff;
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
  transition: .3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
}

.price-card.featured {
  border: 3px solid var(--orange);
  transform: scale(1.04);
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.featured-label {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 29px;
  margin-bottom: 12px;
}

.price {
  font-size: 43px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 26px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.price-card li {
  margin-bottom: 12px;
  line-height: 1.38;
  color: #3d3734;
}

.price-card li::before {
  content: "✓ ";
  color: var(--orange);
  font-weight: 900;
}

/* FINAL */

.final-section {
  background: #fff;
}

.final-card {
  color: #fff;
  text-align: center;
  border-radius: 38px;
  overflow: hidden;
  padding: 74px 34px;
  background:
    linear-gradient(135deg, rgba(31,29,29,.95), rgba(31,29,29,.72)),
    url("https://via.placeholder.com/1400x650/f1e1d2/1f1d1d?text=Banner+Final");
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
}

.thay-logo {
  width: 165px;
  margin: 0 auto 28px;
}

.final-card h2 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.final-card p {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
}

/* FOOTER */

.footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 38px 20px;
}

.footer img {
  width: 160px;
  margin: 0 auto 16px;
}

.footer p {
  color: rgba(255,255,255,.75);
}

/* MOBILE FLOATING CTA */

.mobile-floating-cta {
  display: none;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: .75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVO */

@media (max-width: 980px) {
  .countdown-bar {
    position: relative;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .countdown {
    justify-content: center;
    flex-wrap: wrap;
  }

  .video-grid,
  .release-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured,
  .price-card.featured:hover {
    transform: none;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 78px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding: 34px 0;
  }

  .privacy-logo {
    width: 128px;
    margin-bottom: 28px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .scroll-hint {
    display: none;
  }

  .count-box {
    min-width: 68px;
  }

  .count-box strong {
    font-size: 24px;
  }

  .price-card {
    padding: 30px 24px;
  }

  .final-card {
    border-radius: 28px;
    padding: 58px 24px;
  }

  .mobile-floating-cta {
    display: flex;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 999;
    height: 56px;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(0,0,0,.32);
  }
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.logo {
  height: 38px;
  object-fit: contain;
}

.logo.privacy {
  filter: brightness(0) invert(1);
}

.logo.thay {
  filter: brightness(1);
}

.logo-sep {
  font-size: 22px;
  font-weight: bold;
  color: rgba(255,255,255,.8);
}

.footer-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.footer-note a {
  color: #eb8744;
  font-weight: 700;
  text-decoration: none;
}

.footer-note a:hover {
  text-decoration: underline;
}
.notice {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14px;
  color: #555;
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  line-height: 1.5;
}

.notice a {
  color: #eb8744;
  font-weight: 700;
  text-decoration: none;
}

.notice a:hover {
  text-decoration: underline;
}
/* LANDING DE ENTRADA INSTAGRAM */

.entry-hero {
  min-height: 100vh;
}

.entry-content {
  text-align: center;
  max-width: 880px;
}

.entry-content .logo-group {
  justify-content: center;
}

.entry-content .hero-text {
  margin-left: auto;
  margin-right: auto;
}

.entry-countdown {
  background: rgba(241, 225, 210, .13);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 26px;
  margin: 34px auto;
  max-width: 720px;
}

.entry-countdown .countdown-info {
  margin-bottom: 18px;
}

.entry-countdown .countdown-info span {
  color: var(--orange);
}

.entry-countdown .countdown-info h2 {
  color: #fff;
}

.entry-countdown .countdown {
  justify-content: center;
}

.entry-actions {
  justify-content: center;
}

.entry-warning {
  max-width: 680px;
  margin: 22px auto 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.68);
}

@media (max-width: 680px) {
  .entry-countdown {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .entry-actions {
    align-items: stretch;
  }

  .entry-warning {
    font-size: 13px;
  }
}
