/* Top Streaming – Mobile-first, 100% responsivo – Tema Dark */
:root {
  --red: #cc0000;
  --blue: #3b9eff;
  --white: #ffffff;
  --off-white: #e8e8e8;
  --black: #0d0d0d;
  --gray: #9ca3af;
  --bg-dark: #0d0d0d;
  --bg-card: #1a1a1a;
  --bg-elevated: #242424;
  --border-dark: #2d2d2d;
  --text-primary: #f0f0f0;
  --text-secondary: #9ca3af;
  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
  --gold: rgba(212, 175, 55, 0.85);
  --gold-soft: rgba(212, 175, 55, 0.15);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Manrope', 'Roboto', -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--bg-dark);
  line-height: 1.5;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

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

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

/* Container: mobile primeiro */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 600px) {
  .container {
    padding: 0 24px;
  }
}

/* ========== BARRA TOPO ========== */
.bar-top {
  background: linear-gradient(90deg, #c00, #e00);
  color: var(--white);
  text-align: center;
  padding: 12px 16px;
  padding-top: max(12px, var(--safe-top));
  font-weight: 600;
  font-size: 1.0625rem;
}

.bar-top strong {
  text-decoration: underline;
}

/* ========== HERO (mobile primeiro) ========== */
.hero {
  padding: 24px 0 32px;
  text-align: center;
}

/* --- Hero Cinema: primeira dobra imersiva --- */
.hero--cinema {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Camada base: mosaico de cartazes de filmes desfocado (só textura de fundo).
   Troque a URL por uma imagem sua de mosaico/grid de pôsteres para o efeito ideal. */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(26px);
  transform: scale(1.25);
  opacity: 0.9;
}

/* Máscara: degradê escuro para o mosaico ficar só como fundo e o texto legível */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 10, 0.88) 0%,
    rgba(12, 8, 14, 0.92) 40%,
    rgba(18, 6, 16, 0.96) 70%,
    rgba(14, 4, 14, 0.98) 100%
  );
  pointer-events: none;
}

/* Conteúdo acima das camadas de fundo – ocupa quase toda a primeira tela */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 40px;
  padding-top: max(48px, calc(40px + var(--safe-top)));
  padding-bottom: max(40px, var(--safe-bottom));
}

.hero--cinema .hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
  flex: 1;
  width: 100%;
}

.hero--cinema .hero__content h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero--cinema .hero__desc {
  color: var(--off-white);
}

/* CTA vermelho no hero – mesmo vermelho da barra e faixa do site, botão maior */
.btn--hero-cta {
  background: #cc0000 !important;
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 20px 40px;
  min-height: 60px;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(204, 0, 0, 0.35);
}

.btn--hero-cta:hover,
.btn--hero-cta:focus {
  background: #e00 !important;
  box-shadow: 0 6px 28px rgba(238, 0, 0, 0.45);
}

.hero .container,
.hero .hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  padding: 0 8px;
}

.destaque {
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  padding: 3px 10px;
  box-decoration-break: clone;
}

.hero .btn {
  background: var(--red);
  color: var(--white);
  font-size: 1.25rem;
  padding: 20px 40px;
  min-height: 60px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.35);
}

.hero .btn:hover,
.hero .btn:focus {
  background: #e00;
  box-shadow: 0 6px 24px rgba(238, 0, 0, 0.4);
}

.hero__desc {
  font-size: 1.125rem;
  margin-bottom: 20px;
  font-weight: 600;
  padding: 0 8px;
  line-height: 1.5;
  color: var(--white);
}

.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 18px 31px;
  min-height: 62px;
  min-width: 156px;
  font-weight: 700;
  font-size: 1.21875rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  transition: background 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover, .btn:focus {
  background: #e00;
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.35);
}

.btn:active {
  transform: scale(0.98);
}

.btn--pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(204, 0, 0, 0); }
}

.hero__mockup-wrap {
  width: 100%;
  margin-top: 0;
  flex-shrink: 0;
}

.hero--cinema .hero__mockup-wrap {
  max-width: 280px;
}

.hero__mockup-wrap--topo {
  order: -1;
}

.hero__mockup {
  width: 100%;
  border-radius: 12px;
}

/* Tablet+ */
@media (min-width: 600px) {
  .hero:not(.hero--cinema) {
    padding: 32px 0 48px;
  }
  .hero__inner {
    padding: 56px 0 48px;
    padding-top: max(56px, calc(44px + var(--safe-top)));
  }
  .hero h1 {
    font-size: 1.9375rem;
  }
  .hero__desc {
    font-size: 1.1875rem;
  }
  .hero--cinema .hero__container {
    gap: 32px;
  }
  .hero--cinema .hero__mockup-wrap {
    max-width: 360px;
  }
  .btn--hero-cta {
    font-size: 1.25rem;
    padding: 22px 48px;
    min-height: 64px;
  }
  .hero .btn {
    font-size: 1.3125rem;
    padding: 22px 48px;
    min-height: 64px;
  }
}

/* Desktop: duas colunas no hero cinema */
@media (min-width: 900px) {
  .hero .container,
  .hero--cinema .hero__container {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    min-height: auto;
  }
  .hero__content {
    flex: 1;
    max-width: 480px;
    order: 1;
  }
  .hero__mockup-wrap--topo {
    order: 2;
  }
  .hero__mockup-wrap {
    flex: 1;
    max-width: 520px;
    margin-top: 0;
  }
  .hero--cinema .hero__mockup-wrap {
    max-width: 420px;
  }
  .hero--cinema .hero__content {
    text-align: left;
  }
  .hero h1 {
    font-size: 2.125rem;
  }
}

/* ========== SEÇÕES ========== */
.section {
  padding: 32px 0;
}

.section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  padding: 0 12px;
  line-height: 1.4;
  color: var(--white);
}

@media (min-width: 600px) {
  .section {
    padding: 48px 0;
  }
  .section h2 {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }
}

/* ========== CONTADORES (gradiente vermelho) ========== */
.section--gradient {
  background: linear-gradient(90deg, #b30000, #e00);
  color: var(--white);
  text-align: center;
  padding: 28px 0;
}

.section--gradient .h2-white,
.section--gradient h2 {
  color: var(--white) !important;
  margin-bottom: 16px;
}

.counters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}

.counter {
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.counter:last-child {
  border-bottom: none;
}

.counter__number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.counter__title {
  font-size: 0.875rem;
  opacity: 0.95;
  margin-top: 4px;
}

@media (min-width: 600px) {
  .counters {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    gap: 0;
  }
  .counter {
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.3);
    padding: 24px 16px;
  }
  .counter:last-child {
    border-right: none;
  }
  .counter__number {
    font-size: 2.5rem;
  }
}

.section--preco .h2-white:last-of-type {
  margin-top: 24px;
  margin-bottom: 20px;
}

/* ========== DOBRA R$537 – igual ao print ========== */
.section--preco-537 {
  background: #cc0000;
  color: var(--white);
  text-align: center;
  padding: 40px 16px 48px;
}

.container--preco-537 {
  max-width: 520px;
  margin: 0 auto;
}

.preco-537__titulo {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 28px;
  padding: 0 8px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.preco-537__titulo strong {
  display: inline;
}

/* Grid 2x4: logos desfocados + “E muito mais...” */
.plataformas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  justify-items: center;
  align-items: stretch;
}

.plataformas-grid__item {
  aspect-ratio: 1;
  width: 100%;
  max-width: 88px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
}

.plataformas-grid__item--blur img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
}

.plataformas-grid__item--mais {
  background: #fff;
  max-width: 88px;
}

.plataformas-grid__item--mais span {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a7a1a;
  text-align: center;
  padding: 6px;
  line-height: 1.2;
}

.preco-537__subtitulo {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 24px;
  padding: 0 8px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.preco-537__subtitulo strong {
  display: inline;
}

/* Botão preto como no print – maior */
.btn--preco-537 {
  display: inline-block;
  background: #111 !important;
  color: var(--white) !important;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 20px 40px;
  min-height: 60px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  transition: background 0.2s, box-shadow 0.2s;
}

.btn--preco-537:hover,
.btn--preco-537:focus {
  background: #222 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

@media (min-width: 600px) {
  .section--preco-537 {
    padding: 56px 24px 64px;
  }
  .preco-537__titulo {
    font-size: 1.75rem;
    margin-bottom: 32px;
    max-width: 380px;
  }
  .plataformas-grid {
    gap: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
  }
  .plataformas-grid__item {
    max-width: 100px;
  }
  .plataformas-grid__item--mais {
    max-width: 100px;
  }
  .plataformas-grid__item--mais span {
    font-size: 0.9375rem;
  }
  .preco-537__subtitulo {
    font-size: 1.75rem;
    margin-bottom: 28px;
    max-width: 380px;
  }
  .btn--preco-537 {
    font-size: 1.25rem;
    padding: 22px 52px;
    min-height: 64px;
  }
}

.plataformas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 16px 0 24px;
}

.plataformas img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

@media (min-width: 600px) {
  .plataformas img {
    width: 72px;
    height: 72px;
  }
}

/* ========== CARROSSÉIS ========== */
.carousel-wrap {
  overflow: hidden;
  padding: 12px 0 24px;
  margin: 0 -16px;
}


@media (min-width: 600px) {
  .carousel-wrap {
    margin: 0 -24px;
    padding: 16px 0 32px;
  }
}

.carousel-filmes .swiper-slide,
.carousel-series .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.carousel-filmes .swiper-slide img,
.carousel-series .swiper-slide img {
  width: 170px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

@media (min-width: 600px) {
  .carousel-filmes .swiper-slide img,
  .carousel-series .swiper-slide img {
    width: 220px;
    height: 325px;
  }
}

.swiper-pagination-bullet-active {
  background: var(--red);
}

/* Depoimentos */
.carousel-depoimentos {
  padding: 16px 0 40px;
  position: relative;
}

.carousel-depoimentos .swiper {
  overflow: hidden;
  padding: 0 40px 36px;
}

.carousel-depoimentos .swiper-slide {
  width: 260px;
}

.carousel-depoimentos .swiper-slide img {
  width: 100%;
  border-radius: 8px;
}

.carousel-depoimentos .swiper-button-prev,
.carousel-depoimentos .swiper-button-next {
  color: var(--red);
  width: 40px;
  height: 40px;
}

.carousel-depoimentos .swiper-pagination {
  position: relative;
  margin-top: 12px;
}

/* ========== VÍDEO ========== */
.video-section {
  padding: 32px 16px;
  text-align: center;
}

.video-section h2 {
  margin-bottom: 20px;
}

.video-wrap {
  width: 100%;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
}

@media (min-width: 600px) {
  .video-section {
    padding: 48px 24px;
  }
  .video-wrap {
    max-width: 720px;
  }
}

/* ========== CARDS (O que você encontra) ========== */
.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 12px 24px;
  max-width: none;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.card {
  background: #15151a;
  border: 1px solid rgba(204, 85, 50, 0.5);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(204, 85, 50, 0.15);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.card:hover,
.card:focus-within {
  border-color: rgba(204, 85, 50, 0.9);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(204, 85, 50, 0.35),
    0 0 48px rgba(204, 85, 50, 0.25),
    0 0 80px rgba(204, 85, 50, 0.12);
  transform: translateY(-2px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 16px;
}

.card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 700;
}

.card p {
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.btn-wrap {
  text-align: center;
  margin: 8px 0 24px;
}

@media (min-width: 600px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    padding: 0 24px 24px;
    gap: 24px;
  }
  .card img {
    height: 200px;
  }
}

@media (min-width: 900px) {
  .grid-cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    padding: 0 24px 24px;
  }
}

/* ========== PLANOS ========== */
#planos {
  scroll-margin-top: 16px;
}

.planos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 12px 24px;
  max-width: none;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.plano {
  background: var(--bg-card);
  border: 2px solid var(--border-dark);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.plano:hover {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(204, 0, 0, 0.15);
}

.plano--destaque {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(204, 0, 0, 0.12) 0%, var(--bg-card) 100%);
}

.plano__tipo {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.plano h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.plano ul {
  list-style: none;
  text-align: left;
  margin-bottom: 16px;
}

.plano li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text-primary);
}

.plano li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23cc0000' d='M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.plano .badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.plano .preco-antigo {
  color: var(--text-secondary);
  text-decoration: line-through;
  font-size: 0.875rem;
}

.plano .preco {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 8px 0 14px;
}

.plano .btn {
  width: 100%;
  max-width: 280px;
  background: var(--red);
}

.plano .btn:hover,
.plano .btn:focus {
  background: #e00;
  box-shadow: 0 6px 24px rgba(204, 0, 0, 0.35);
}

.plano .parcelas {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 10px;
  line-height: 1.3;
}

@media (min-width: 600px) {
  .planos-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
    gap: 24px;
    padding: 0 24px 24px;
  }
}

@media (min-width: 900px) {
  .planos-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    padding: 0 24px 24px;
  }
}

/* ========== GARANTIA ========== */
.garantia-section {
  padding: 40px 16px 48px;
}

.garantia-section__box {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 24px 44px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, var(--bg-card) 100%);
  border: 1px solid var(--gold);
  border-radius: 16px;
  box-shadow: 0 0 0 1px var(--gold-soft), 0 8px 32px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.garantia-section__badge-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.garantia-section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--gold);
  flex-shrink: 0;
}

.garantia-section__icon svg {
  width: 40px;
  height: 40px;
}

.garantia-section__selo {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.garantia-section__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.garantia-section__subtitle {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.garantia-section__desc {
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.95;
}

.garantia-section .btn {
  margin-top: 4px;
}

@media (min-width: 600px) {
  .garantia-section {
    padding: 56px 24px 64px;
  }
  .garantia-section__box {
    padding: 48px 40px 52px;
    max-width: 600px;
  }
  .garantia-section__selo {
    max-width: 380px;
  }
  .garantia-section__title {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }
  .garantia-section__subtitle {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }
  .garantia-section__desc {
    font-size: 1rem;
    margin-bottom: 28px;
  }
}

/* ========== RODAPÉ – LOGOS E SELOS ========== */
.section-rodape {
  padding: 32px 0 40px;
}

.container--rodape {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-center {
  display: block;
  margin: 0 auto 28px;
  max-width: 120px;
}

.rodape-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 32px 48px;
  width: 100%;
  margin-bottom: 32px;
}

.rodape-logos__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1 1 200px;
  min-width: 0;
  max-width: 320px;
}

.rodape-logos__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rodape-logos__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.rodape-logos__link:hover,
.rodape-logos__link:focus {
  opacity: 0.9;
}

.rodape-logos__item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.footer-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0 16px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .section-rodape {
    padding: 40px 0 48px;
  }
  .logo-center {
    max-width: 160px;
    margin-bottom: 32px;
  }
  .rodape-logos {
    gap: 40px 56px;
    margin-bottom: 40px;
  }
  .rodape-logos__item {
    max-width: 340px;
  }
  .footer-disclaimer {
    font-size: 0.875rem;
    padding: 0 24px;
  }
}

/* Linha divisória acima do rodapé */
.rodape-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-dark) 15%, var(--border-dark) 85%, transparent 100%);
  margin: 0;
}

/* ========== FOOTER OFICIAL ========== */
.footer-official {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 24px 36px;
  background: #0a0a0a;
  text-align: center;
}

.footer-official img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.footer-official p {
  font-size: 0.875rem;
  color: var(--text-primary);
  line-height: 1.5;
  max-width: 360px;
}

/* ========== FOOTER COPY ========== */
.footer-copy {
  text-align: center;
  padding: 28px 24px;
  padding-bottom: max(28px, var(--safe-bottom));
  background: var(--black);
  line-height: 1.5;
}

.footer-copy__text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.footer-copy__links {
  font-size: 0.75rem;
}

.footer-copy a {
  color: var(--text-secondary);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-copy a:hover,
.footer-copy a:focus {
  color: var(--white);
}

/* Evitar overflow horizontal em todos os blocos */
.section,
.section-rodape,
.hero,
.bar-top,
.footer-official,
.footer-copy,
.rodape-logos {
  min-width: 0;
}

/* Área de toque mínima 44px em links/botões (acessibilidade mobile) */
@media (max-width: 600px) {
  .btn,
  a.btn {
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 26px;
  }
  .plano .btn {
    min-height: 62px;
  }
}

/* ========== NOTIFICAÇÕES DE VENDAS ========== */
.sales-notification {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom));
  left: max(16px, env(safe-area-inset-left));
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 32px);
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid rgba(204, 85, 50, 0.4);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(204, 85, 50, 0.15);
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text-primary);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.sales-notification[data-visible="true"] {
  opacity: 1;
  transform: translateX(0);
}

.sales-notification__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 83, 0.2);
  color: #00c853;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.sales-notification__text {
  flex: 1;
  min-width: 0;
}
