/* Univer Vídeo — Landing (DM Sans)
   main.css (clean / DS Modular)
   - Mantém a base visual
   - Organiza por seções e padroniza boas práticas
*/

/* =========================================================
   TOKENS
========================================================= */
:root {
  /* ## COLORS ## */
  --card-color-1: #1C4363;
  --card-color-2: #162C39;
  --dark-blue-1: #0D2A41;
  --dark-blue-2: #02223A;
  --dark-green-1: #111B20;
  --gradient-light-blue-1: linear-gradient(137deg, #30CAF9 0%, #074D63 100%);
  --gradient-light-blue-2: linear-gradient(137deg, #30CAF9 0%, #0B9FCB 100%);
  --gradient-dark-blue-1: linear-gradient(90deg, #1A526D 0%, #14324A 100%);
  --gradient-dark-gold-1: linear-gradient(173.7deg, rgb(200, 141, 60) -55.33%, rgb(71, 41, 1) 136.43%);
  --green-1: #12A062;
  --green-2: #0C6D43;
  --light-blue-1: #0B9FCB;
  --light-red-1: #ff8f8f;
  --pink-1: #FF4FBF;
  /* rosa */
  --orange-1: #FF7A18;
  /* laranja */

  --black: #000;
  --black-2: #121212;
  --white: #fff;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-700: #495057;

  --gold: #C88D3C;
  --gold-2: #F1C46E;

  --container: 1160px;
  --radius: 26px;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, .25);
  --shadow-glow: 0 0 18px #0B9FCB;

  --topbar-h: 76px;

  /* ## SPACING SCALE (DS) ## */
  --spacer-1: 4px;
  --spacer-2: 8px;
  --spacer-3: 10px;
  --spacer-4: 14px;
  --spacer-5: 18px;
  --spacer-6: 26px;
  --spacer-7: 44px;

  /* ## TYPE SCALE (DS helpers) ## */
  --font-size-base: 16px;
  --text-lg: 18px;
  --h1-font-size: 56px;
  --h2-font-size: 40px;
  --h3-font-size: 20px;
  --h4-font-size: 16px;

  --font-weight-normal: 400;
  --font-weight-bold: 800;

  --shadow-glow-blue: 0 0 18px rgba(48, 202, 249, .55);
}

/* =========================================================
   RESET / BASE
========================================================= */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  color: var(--white);
  background: linear-gradient(180deg, var(--dark-blue-2), var(--dark-blue-1));
}

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

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

button {
  font: inherit;
}

/* =========================================================
   CONTAINER (layout base)
========================================================= */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 28px);
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 22px);
  }
}

@media (max-width: 320px) {
  .container {
    width: calc(100% - 18px);
  }
}

/* =========================================================
   TOPBAR / MENU
========================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  background: rgba(2, 34, 58, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar__inner {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}

.brand__logo {
  height: 26px;
  width: auto;
  opacity: .95;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

/* Menu (desktop) */
.nav__link {
  font-weight: 500;
  font-size: 17px;
  opacity: .92;
  transition: color .2s ease, text-shadow .2s ease, opacity .2s ease;
}

.nav__link:hover {
  color: #30CAF9;
  text-shadow: var(--shadow-glow-blue);
  opacity: 1;
}

/* Mantém a classe “gold”, mas como destaque azul */
.nav__link--gold {
  color: #0B9FCB;
  font-weight: 600;
}

.nav__link--gold:hover {
  color: #30CAF9;
  text-shadow: var(--shadow-glow-blue);
}

/* CTA (desktop) */
.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .9);
  color: rgba(255, 255, 255, .95);
  background: transparent;
  font-weight: 700;
  font-size: 17px;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease, transform .2s ease;
  will-change: transform, box-shadow;
}

.nav__cta:hover {
  background: var(--white);
  color: #0B9FCB;
  border-color: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-glow-blue);
  transform: translateY(-1px);
}

.nav__cta:active {
  transform: translateY(0);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.hamburger__lines {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, .85);
  margin: 0 auto;
}

.hamburger__lines::before,
.hamburger__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, .85);
  transition: transform .18s ease, top .18s ease, opacity .18s ease;
}

.hamburger__lines::before {
  top: -6px;
}

.hamburger__lines::after {
  top: 6px;
}

.topbar.is-open .hamburger__lines {
  background: transparent;
}

.topbar.is-open .hamburger__lines::before {
  top: 0;
  transform: rotate(45deg);
}

.topbar.is-open .hamburger__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: rgba(2, 34, 58, .92);
}

.mobile-menu__inner {
  padding: 18px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.mobile-menu__link {
  display: block;
  width: 100%;
  padding: 12px 8px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: rgba(255, 255, 255, .9);
}

.mobile-menu__link:hover {
  color: #30CAF9;
  text-shadow: var(--shadow-glow-blue);
}

.mobile-menu__link--gold {
  color: #0B9FCB;
}

.mobile-menu__cta {
  margin-top: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(280px, 100%);
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .9);
  font-weight: 800;
  background: transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.mobile-menu__cta:hover {
  background: var(--white);
  color: #0B9FCB;
  box-shadow: var(--shadow-glow-blue);
  transform: translateY(-1px);
}

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

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero__bg {
  margin-top: -50px;
  position: absolute;
  inset: 0;
  background: var(--hero-bg-desktop, url("../img/z-hero-banner-desktop.jpg")) top/cover no-repeat;
  transform: scale(1.01);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(2, 34, 58, 1) 0%,
      rgba(2, 34, 58, .70) 35%,
      rgba(2, 34, 58, .10) 68%,
      rgba(2, 34, 58, 0) 100%);
}

.hero__content {
  position: relative;
  padding: 156px 124px 64px;
  width: 100%;
}

.hero__left {
  width: 50vw;
  max-width: 640px;
  padding-top: 18px;
}

.hero__titlewrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hero__logo {
  width: min(520px, 100%);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .25));
}

.hero__subtitle {
  margin: 0;
  letter-spacing: .12em;
  font-size: 14px;
  font-weight: 700;
  opacity: .95;
}

.hero__desc {
  margin: 18px 0;
  max-width: 560px;
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

/* HERO (mobile) */
@media (max-width: 830px) {
  .hero {
    min-height: 560px;
  }

  .hero__bg {
    background-image: var(--hero-bg-mobile, url("../img/z-hero-banner-mobile.jpg")) !important;
  }

  .hero__overlay {
    background: linear-gradient(0deg,
        rgba(2, 34, 58, 1) 0%,
        rgba(2, 34, 58, .70) 35%,
        rgba(2, 34, 58, .70) 68%,
        rgba(2, 34, 58, .30) 100%);
  }

  .hero__content {
    margin: 30vh 20px 20px;
    padding: 26px 0 18px;
  }

  .hero__left {
    width: 100%;
    max-width: none;
    padding-top: 8px;
    text-align: center;
  }

  .hero__titlewrap {
    align-items: center;
  }

  .hero__desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 540px;
  }

  .hero__desc {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .hero {
    min-height: 520px;
  }
}

@media (max-width: 320px) {
  .hero {
    min-height: 500px;
  }
}

/* =========================================================
   COUNTDOWN (dentro do HERO)
========================================================= */
.countdown {
  width: min(520px, 100%);
  margin-top: 18px;
  background: rgba(22, 44, 57, .72);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  padding: 16px 18px 14px;
  box-shadow: var(--shadow-soft);
}

.countdown__title {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  text-align: center;
  margin-bottom: 12px;
}

.countdown__date {
  font-weight: 800;
}

.countdown__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}

.countdown__item {
  padding: 10px 10px 8px;
  text-align: center;
}

.countdown__num {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.countdown__label {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  opacity: .85;
}

.countdown__divider {
  width: 1px;
  background: rgba(255, 255, 255, .18);
  margin: 10px 0;
}

.countdown__ended {
  text-align: center;
  font-weight: 700;
  padding: 10px 0 4px;
  color: rgba(255, 255, 255, .9);
}

@media (max-width: 420px) {
  .countdown__num {
    font-size: 34px;
  }
}

@media (max-width: 360px) {
  .countdown {
    padding: 14px 14px 12px;
  }

  .countdown__num {
    font-size: 32px;
  }

  .countdown__label {
    font-size: 10px;
  }
}

@media (max-width: 320px) {
  .countdown__num {
    font-size: 30px;
  }
}

/* =========================================================
   CTA ALIAS (para Hero Play usar o mesmo corpo do CTA do menu)
========================================================= */
.topbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .9);
  color: rgba(255, 255, 255, .95);
  background: transparent;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease, transform .2s ease;
  will-change: transform, box-shadow;
}

.topbar__cta:hover {
  background: var(--white);
  color: #0B9FCB;
  border-color: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-glow-blue);
  transform: translateY(-1px);
}

.topbar__cta:active {
  transform: translateY(0);
}

.topbar__cta--blue {
  border-color: rgba(48, 202, 249, .95);
}

.topbar__cta--blue:hover {
  background: var(--gradient-light-blue-2);
  color: var(--white);
  border-color: rgba(48, 202, 249, 1);
  box-shadow: var(--shadow-glow-blue);
}

/* =========================================================
   PROMO + INFO
========================================================= */
.promo-section {
  background: var(--gradient-dark-blue-1);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 22px;
}

.promo-details {
  font-size: 18px;
}

.promo-headline {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 14px 0;
  color: var(--white);
}

.promo-details p {
  margin: 0 0 10px 0;
  color: rgba(255, 255, 255, .92);
  font-weight: 500;
}

.promo-coupon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.coupon-label {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: rgba(255, 255, 255, .92);
  opacity: .9;
  align-self: flex-start;
  transform: translateX(-56px);
}

.coupon-code-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.coupon-code {
  background: var(--dark-blue-2);
  border: 2px solid var(--light-blue-1);
  color: var(--white);
  font-size: 56px;
  font-weight: 800;
  padding: 10px 26px;
  border-radius: 12px;
  letter-spacing: 4px;
  box-shadow: 0 0 20px rgba(48, 202, 249, 0.3);
  animation: couponGlow 1.2s ease-in-out infinite;
  user-select: all;
}

#coupon-code {
  scroll-margin-top: 100px;
  /* Ajuste o valor conforme a altura do seu header */
}

@keyframes couponGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(48, 202, 249, .30);
  }

  50% {
    box-shadow: 0 0 32px rgba(48, 202, 249, .55), 0 0 44px rgba(48, 202, 249, .28);
  }
}

.copy-btn {
  background: var(--light-blue-1);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .22);
}

.copy-btn:hover {
  background: #30CAF9;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(48, 202, 249, .25);
}

.copy-btn:active {
  transform: translateY(0);
}

.copy-feedback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.92);
  background: var(--green-1);
  color: var(--white);
  padding: 10px 26px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  white-space: nowrap;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .45);
  z-index: 9999;
}

.copy-feedback.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.promo-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn-primary-large {
  background: var(--gradient-light-blue-2);
  color: var(--white);
  border: none;
  padding: 10px 44px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .34), 0 0 22px rgba(48, 202, 249, .35);
  filter: drop-shadow(0 0 16px rgba(48, 202, 249, .25));
}

/* INFO */
.info-section {
  padding: 64px 0;
  background: var(--gradient-dark-blue-1);
}

.info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.info-card {
  position: relative;
  background: var(--card-color-1);
  border-radius: 18px;
  padding: 40px 44px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  margin: 0 auto;
}

.info-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-1);
  color: var(--white);
  padding: 4px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.info-plan-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px 0;
  color: var(--white);
}

.info-plan-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, .82);
  margin: 0 0 22px 0;
  line-height: 1.55;
  font-weight: 500;
}

.info-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.info-price-old {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  text-decoration: line-through;
}

.info-price-new {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
}

.info-price-period {
  font-size: 15px;
  color: rgba(255, 255, 255, .75);
}

.info-note {
  max-width: 900px;
  font-size: 12px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
}

/* promo responsive */
@media (max-width: 900px) {
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .promo-cta {
    justify-content: center;
  }

  .coupon-label {
    align-self: center;
    transform: none;
  }
}

@media (max-width: 600px) {
  .coupon-code {
    font-size: 34px;
    padding: 10px 22px;
    letter-spacing: 3px;
  }

  .btn-primary-large {
    width: 100%;
  }

  .info-card {
    padding: 34px 26px;
  }
}

/* =========================================================
   TRAILER
========================================================= */
.trailer {
  background: linear-gradient(180deg, rgba(22, 44, 57, .55), rgba(13, 42, 65, .68));
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.trailer__inner {
  padding: 56px 0 70px;
  width: 100%;
  height: 100%;
  background: url("../img/flowers_desk.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

@media (max-width: 830px) {
  .trailer__inner {
    background: url("../img/flowers_mob.png") center/cover no-repeat;

  }
}

.trailer__title {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}


/* thumb + play */
.video-link {
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .06);
}

.video-link__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  transform: scale(1.01);
}

.video-link__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .65);
  background: rgba(0, 0, 0, .35);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 0 0 rgba(241, 196, 110, 0);
}

.video-link__play:hover {
  transform: scale(1.05);
  background: rgba(0, 0, 0, .5);
  box-shadow: var(--shadow-glow);
}

.video-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .45));
  pointer-events: none;
}

/* Mantém iframe antigo se usar */
.video {
  width: min(760px, 100%);
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  border: 0px solid rgba(255, 255, 255, .06);
}

.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video--plyr .plyr,
.video--plyr .plyr__video-embed,
.video--plyr .plyr__video-wrapper {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
}

.video--plyr .plyr__control--overlaid {
  background: rgba(11, 159, 203, 0.92);
}

.video--plyr .plyr__control--overlaid:hover {
  background: #30caf9;
  box-shadow: var(--shadow-glow);
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: linear-gradient(180deg, rgba(18, 18, 18, .96), rgba(0, 0, 0, .96));
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 44px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.25fr 1fr;
  gap: 34px;
  padding-bottom: 36px;
}

.footer__title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
}

.footer__link {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .82);
}

.footer__link:hover {
  color: var(--light-blue-1);
  text-shadow: var(--shadow-glow);
}

.footer__meta {
  margin-top: 14px;
}

.footer__metaTitle {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.footer__metaText {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .78);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  margin: 8px 0;
  background: rgba(18, 160, 98, .18);
  border: 1px solid rgba(18, 160, 98, .35);
  color: rgba(255, 255, 255, .92);
  font-weight: 700;
  font-size: 13px;
  width: fit-content;
}

.pill:hover {
  box-shadow: 0 0 18px rgba(18, 160, 98, .22);
}

.pill--phone {
  background: rgba(11, 159, 203, .14);
  border-color: rgba(11, 159, 203, .35);
}

.payments img {
  max-width: 210px;
  opacity: .95;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .35));
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 14px 0;
}

.footer__bottomInner {
  display: flex;
  justify-content: center;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

/* Footer responsive */
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer__title,
  .footer__col {
    text-align: center;
  }

  .pill {
    margin-left: auto;
    margin-right: auto;
  }

  .payments {
    justify-content: center;
  }
}

/* =========================================================
   PAYMENTS — mobile centralizado (override)
========================================================= */
@media (max-width: 830px) {
  .payments {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .payments img {
    max-width: 180px;
    height: auto;
  }
}

@media (max-width: 600px) {
  .payments {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

/* =========================================================
   CAROUSEL (full width) — compatível com seu snippet
   - Título no container
   - Track fora do container (full width)
========================================================= */
.carousel-section {
  width: 100%;
  padding: 56px 5% 70px;
}

.carousel-section__inner {
  margin-bottom: 18px;
}

.carousel-section__title {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}

.spacer {
  width: 40%;
  height: 70px;
  margin: auto;
  margin-top: 10px;
  border-top: 2px solid var(--light-blue-1);
}

.carousel-section .live-list,
.carousel-section .carousel-container {
  width: 100%;
  max-width: none;
}

.carousel-section .carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
}

.carousel-section .carousel {
  list-style: none;
  margin: 0;
  padding: 18px 0;
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.carousel-section .carousel::-webkit-scrollbar {
  display: none;
}

/* Base padrão: portrait */
.carousel-section .carousel {
  grid-auto-columns: calc((100% - (16px * 5)) / 6);
}

/* Ajuste fino do track */
.carousel-section .carousel[data-target="carousel"] {
  gap: 16px;
  align-items: stretch;
}

/* Garante que o item use a coluna toda */
.carousel-section .carousel[data-target="carousel"]>li,
.carousel-section .carousel[data-target="carousel"]>.carousel__item {
  width: 100%;
  min-width: 0;
  scroll-snap-align: start;
}

/* Link/card */
.carousel-section .carousel[data-target="carousel"] a,
.carousel-section .carousel[data-target="carousel"] .carousel__link {
  display: block;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.carousel-section .carousel[data-target="carousel"] a:hover,
.carousel-section .carousel[data-target="carousel"] .carousel__link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft), 0 0 22px rgba(255, 255, 255, .10);
}

/* Imagem */
.carousel-section .carousel[data-target="carousel"] img,
.carousel-section .carousel[data-target="carousel"] .carousel__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
   PORTRAIT
   6 por linha no desktop
========================= */
.carousel-section .carousel[data-target="carousel"][aspect-ratio="portrait"] {
  grid-auto-columns: calc((100% - (16px * 5)) / 6);
}

.carousel-section .carousel[data-target="carousel"][aspect-ratio="portrait"] img,
.carousel-section .carousel[data-target="carousel"][aspect-ratio="portrait"] .carousel__img {
  aspect-ratio: 2 / 3;
}

/* =========================
   LANDSCAPE
   4 por linha no desktop
========================= */
.carousel-section .carousel[data-target="carousel"][aspect-ratio="landscape"] {
  grid-auto-columns: calc((100% - (16px * 3)) / 4);
}

.carousel-section .carousel[data-target="carousel"][aspect-ratio="landscape"] img,
.carousel-section .carousel[data-target="carousel"][aspect-ratio="landscape"] .carousel__img {
  aspect-ratio: 16 / 9;
}

.carousel__empty {
  padding: 12px 18px;
  color: rgba(255, 255, 255, .78);
}

/* Setas (desktop) */
.carousel-section .slideLeft,
.carousel-section .slideRight {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(0, 0, 0, .28);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  backdrop-filter: blur(8px);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.carousel-section .slideLeft {
  left: 12px;
}

.carousel-section .slideRight {
  right: 12px;
}

.carousel-section .slideLeft:hover,
.carousel-section .slideRight:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(0, 0, 0, .36);
  box-shadow: var(--shadow-glow);
}

.carousel-section .slideLeft img,
.carousel-section .slideRight img {
  width: 18px;
  height: 18px;
  opacity: .95;
}

@media (max-width: 830px) {
  .carousel-section {
    padding: 44px 5% 64px;
  }

  .carousel-section__title {
    font-size: 32px;
  }

  .spacer {
    width: 70%;
    height: 50px;
  }

  .carousel-section .carousel {
    gap: 12px;
    padding: 14px 0;
    grid-auto-columns: calc((100% - (12px * 2)) / 3);
  }

  .carousel-section .carousel[data-target="carousel"] {
    gap: 12px;
    padding: 14px 0;
  }

  .carousel-section .carousel[data-target="carousel"][aspect-ratio="portrait"] {
    grid-auto-columns: calc((100% - (12px * 2)) / 2.75);
  }

  .carousel-section .carousel[data-target="carousel"][aspect-ratio="landscape"] {
    grid-auto-columns: calc((100% - 12px) / 1.5);
  }

  .carousel-section .slideLeft,
  .carousel-section .slideRight {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .carousel-section__title {
    font-size: 28px;
  }

  .spacer {
    width: 80%;
    height: 40px;
  }
}


/* =========================================================
   STANDALONE COUNTDOWN SECTION (opcional)
   - Usa o mesmo markup de .countdown
========================================================= */
.countdown-section {
  padding: 70px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, rgba(22, 44, 57, .40), rgba(13, 42, 65, .55));
}

.countdown-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.countdown.countdown--xl {
  width: min(1200px, 100%);
  padding: 26px 26px 22px;
  border-radius: 26px;
}

.countdown.countdown--xl .countdown__title {
  font-size: 32px;
  margin-bottom: 18px;
}

.countdown.countdown--xl .countdown__num {
  font-size: 84px;
}

@media (max-width: 830px) {
  .countdown-section {
    padding: 56px 0 64px;
  }

  .countdown.countdown--xl {
    padding: 18px 16px 16px;
    border-radius: 18px;
  }

  .countdown.countdown--xl .countdown__title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .countdown.countdown--xl .countdown__num {
    font-size: 54px;
  }
}

@media (max-width: 360px) {
  .countdown.countdown--xl .countdown__num {
    font-size: 42px;
  }
}

/* =========================================================
   SMOOTHERS (micro-nudge com transform)
========================================================= */

/* Página (âncoras) */
main {
  transition: transform .3s ease;
  will-change: transform;
}

main.page-nudge {
  transform: translateY(-8px);
}

/* Carrossel (chevrons) */
.carousel {
  transition: transform .3s ease;
  will-change: transform;
}

.carousel.carousel-nudge-left {
  transform: translateX(-12px);
}

.carousel.carousel-nudge-right {
  transform: translateX(12px);
}

/* =========================================================
   TOPBAR ACTIONS
   - idioma + hamburger
========================================================= */
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* No desktop, a nav continua visível e o bloco da direita fica compacto */
@media (min-width: 831px) {
  .topbar__actions {
    order: 3;
  }
}

/* =========================================================
   LANGUAGE SWITCHER
========================================================= */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 30;
}

.lang-switcher__trigger {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  overflow: hidden;
}

.lang-switcher__trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(48, 202, 249, .6);
  box-shadow: 0 0 14px rgba(48, 202, 249, .22);
  background: rgba(255, 255, 255, .10);
}

.lang-switcher__flag {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* popover */
.lang-switcher__popover {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  width: max-content;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.lang-switcher__list {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.lang-switcher__option {
  appearance: none;
  border: 0;
  background: transparent;
  width: 100%;
  min-width: 210px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  color: #334155;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background .16s ease;
}

.lang-switcher__option:hover {
  background: #f1f5f9;
}

/* Ajuste de contraste para temas escuros */
body[data-theme="blue"] .lang-switcher__popover {
  background: rgba(7, 24, 41, .96);
  border: 1px solid rgba(48, 202, 249, .28);
}

body[data-theme="blue"] .lang-switcher__option {
  color: #e7f5ff;
}

body[data-theme="blue"] .lang-switcher__option:hover {
  background: rgba(48, 202, 249, .14);
}

.lang-switcher__option-flag {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  flex: 0 0 24px;
}

/* =========================================================
   AJUSTE DA TOPBAR PARA DESKTOP
========================================================= */
@media (min-width: 831px) {
  .topbar__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
  }

  .brand {
    justify-self: start;
  }

  .nav {
    justify-self: end;
  }

  .topbar__actions {
    justify-self: end;
    margin-left: 0;
  }

  .hamburger {
    display: none;
  }
}

/* =========================================================
   MOBILE
   bandeira à esquerda do hamburger
========================================================= */
@media (max-width: 830px) {
  .topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .topbar__actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .lang-switcher {
    order: 1;
  }

  .hamburger {
    order: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .lang-switcher__popover {
    left: auto;
    right: 0;
    transform: none;
    top: calc(100% + 10px);
  }
}
/* =========================================================
   TIMELINE SECTION — DS Modular (breakpoints do seu DS)
   - Desktop: alterna esquerda/direita (cards) + ícone ANCORADO no eixo
   - < 830px: 1 coluna (cards empilhados), ícone volta pro topo à esquerda
   - Cores alternadas (5 cards): Azul, Verde, Rosa, Laranja, Azul
   ========================================================= */

/* ====== Tokens extras (adicione ao :root do main.css se ainda não tiver) ====== */
/*
:root{
  --pink-1: #FF4FBF;
  --orange-1: #FF7A18;
}
*/

.timeline-section{
  padding: 70px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(22,44,57,.40), rgba(13,42,65,.55));
}

.timeline-section__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 12px;
}

.timeline-section__title{
  margin:0;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.timeline-section__subtitle{
  margin: 0 0 22px 0;
  max-width: 860px;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

/* ===== wrapper ===== */
.timeline{
  position: relative;
  width: 100%;
  max-width: 980px;
  padding: 18px 0 8px;
  margin-top: 10px;
}

/* eixo central */
.timeline__axis{
  position:absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.20);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* item (grid para alternância do CARD) */
.timeline__item{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: start;
  gap: 18px;
  padding: 18px 0;

  /* cor default (sobrescrita pelos nth-child) */
  --tl: var(--light-blue-1);
}

/* Alternância (desktop): só o card muda de coluna */
.timeline__item--left  .timeline__card{ grid-column: 1; justify-self: end; text-align: left; }
.timeline__item--right .timeline__card{ grid-column: 3; justify-self: start; text-align: left; }

/* card */
.timeline__card{
  width: min(420px, 100%);
  background: rgba(22,44,57,.72);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
}

.timeline__meta{
  display:flex;
  align-items:flex-end;
  gap: 12px;
  margin-bottom: 8px;
}

.timeline__year{
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--tl);
}

.timeline__line{
  flex: 1;
  height: 3px;
  border-radius: 999px;
  opacity: .95;
  transform: translateY(-6px);
  background: var(--tl);
}

.timeline__heading{
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 800;
  color: rgba(255,255,255,.95);
}

.timeline__text{
  margin: 0;
  color: rgba(255,255,255,.80);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

/* dot no eixo */
.timeline__dot{
  position:absolute;
  top: 30px;               /* alinhado com o topo do bloco de meta */
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--tl);
  border: 4px solid rgba(0,0,0,.25);
  box-shadow: 0 0 0 6px rgba(255,255,255,.06);
  z-index: 3;
}

/* ícone — ANCORADO no eixo, do lado oposto ao CARD */
.timeline__icon{
  position:absolute;
  top: 24px;               /* acompanha o topo do card/meta */
  z-index: 2;

  width: 84px;
  height: 84px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
  color: var(--tl);
}

/* card à esquerda -> ícone à direita do eixo */
.timeline__item--left .timeline__icon{
  left: calc(50% + 34px);
}

/* card à direita -> ícone à esquerda do eixo */
.timeline__item--right .timeline__icon{
  left: calc(50% - 34px);
  transform: translateX(-100%);
}

.timeline__icon svg{
  width: 44px;
  height: 44px;
}

/* conector curto do eixo até o ícone (sutil) */
.timeline__item--left .timeline__icon::before,
.timeline__item--right .timeline__icon::before{
  content:"";
  position:absolute;
  top: 50%;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.18);
  transform: translateY(-50%);
}

.timeline__item--left .timeline__icon::before{ left: -22px; }
.timeline__item--right .timeline__icon::before{ right: -22px; }

/* =========================================================
   CORES POR CARD (5 cards): Azul, Verde, Rosa, Laranja, Azul
   - IMPORTANTE: timeline__axis precisa estar no final do HTML
   ========================================================= */
.timeline__item:nth-child(1){ --tl: var(--light-blue-1); }
.timeline__item:nth-child(2){ --tl: var(--green-1); }
.timeline__item:nth-child(3){ --tl: var(--pink-1); }
.timeline__item:nth-child(4){ --tl: var(--orange-1); }
.timeline__item:nth-child(5){ --tl: var(--light-blue-1); }
/* =========================================================
   TIMELINE — MOBILE (< 830px)
   - 1 coluna (cards empilhados)
   - Ícone acima do card
   - Eixo sai do centro e vai pra ESQUERDA (linha lateral)
   - Dot aparece alinhado no eixo
   ========================================================= */
@media (max-width: 830px){
  .timeline{
    max-width: 680px;
    padding: 10px 0 0;
  }

  /* eixo vira linha lateral esquerda */
  .timeline__axis{
    display: block;
    left: 18px;
    transform: none;
    width: 6px;
  }

  /* itens empilhados */
  .timeline__item{
    display: block;          /* mata o grid do desktop */
    padding: 18px 0 22px;
  }

  /* dot no eixo (um por item) */
  .timeline__dot{
    display: block;
    left: 18px;
    transform: none;
    top: 28px;
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  /* ícone acima do card, mas “puxa” um pouco pra direita pra não colar no eixo */
  .timeline__icon{
    position: static;
    transform: none !important;
    width: 52px;
    height: 52px;
    border-radius: 14px;

    /* alinhamento: começa após o eixo */
    margin: 0 0 12px 44px;
  }

  .timeline__icon svg{
    width: 26px;
    height: 26px;
  }

  /* remove conector do ícone do desktop */
  .timeline__item--left .timeline__icon::before,
  .timeline__item--right .timeline__icon::before{
    content: none;
  }

  /* card alinhado após o eixo */
  .timeline__card{
    width: auto;
    max-width: 640px;
    margin-left: 44px;      /* “gutter” depois do eixo */
    margin-right: 0;
    text-align: left;
  }

  .timeline__year{ font-size: 40px; }
  .timeline__heading{ font-size: 18px; }
  .timeline__text{ font-size: 13px; }
}

@media (max-width: 600px){
  .timeline{ max-width: 620px; }
  .timeline-section{ padding: 64px 0; }

  .timeline__card{ max-width: 560px; }

  /* reduz o gutter */
  .timeline__card{ margin-left: 40px; }
  .timeline__icon{ margin-left: 40px; }
  .timeline__axis{ left: 16px; }
  .timeline__dot{ left: 16px; }
}

@media (max-width: 420px){
  .timeline-section{ padding: 56px 0; }
  .timeline-section__title{ font-size: 32px; }
  .timeline-section__subtitle{ font-size: 14px; }

  .timeline__year{ font-size: 36px; }

  .timeline__icon{
    width: 48px;
    height: 48px;
    border-radius: 13px;
    margin-left: 38px;
  }
  .timeline__icon svg{
    width: 24px;
    height: 24px;
  }

  .timeline__card{ margin-left: 38px; }
  .timeline__axis{ left: 14px; }
  .timeline__dot{ left: 14px; }
}

@media (max-width: 360px){
  .timeline-section__title{ font-size: 30px; }
  .timeline__card{ padding: 16px 14px 14px; }
}

@media (max-width: 320px){
  .timeline-section__title{ font-size: 28px; }
  .timeline__year{ font-size: 34px; }

  /* gutter menor */
  .timeline__card{ margin-left: 34px; }
  .timeline__icon{ margin-left: 34px; }
  .timeline__axis{ left: 12px; }
  .timeline__dot{ left: 12px; }
}

.banner-full {
  background-color: var(--card-color-2);
  width: 100%;
  line-height: 0;
  padding: 2% 10%;
}

@media (max-width: 600px) {
  .banner-full {
    padding: 5%;

  }
}

.banner-full__picture {
  display: block;
  width: 100%;
}

.banner-full__image {
  display: block;
  width: 100vw;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
