/*
    ===================================================================
    NETMAX FIBRA - PÁGINA 
    ===================================================================
    Objetivo: Estilos customizados que complementam o framework Bootstrap.
             Mantém a identidade visual da Netmax com cores, animações
             e layouts responsivos para todas as páginas do site.
    Autor : Rodrigo Barbosa
    Data  : 23/02/2026
    ===================================================================
*/

/* =================================================================== */
/* 1. GERAL E RESETS                                                  */
/* =================================================================== */

/* Remove margens, preenchimentos e define box-sizing para todos elementos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos base do corpo da página */
body {
  font-family: "Segoe UI", Arial, sans-serif; /* Define fonte padrão */
  background: #f1f1f1; /* Cor de fundo cinza claro */
  color: #222; /* Cor do texto principal */
  line-height: 1.6; /* Altura da linha para melhor legibilidade */
  overflow-x: hidden; /* Remove barra de rolagem horizontal */
}

/* Garante que mídias não ultrapassem o container */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Previne overflow horizontal em containers principais */
.container,
.hero,
.ecosystem,
.estante-hero,
.estante-cta-box {
  max-width: 100%;
  overflow-x: hidden;
}

/* =================================================================== */
/* 2. HEADER (GLOBAL)                                                 */
/* =================================================================== */

/* Estilo do cabeçalho principal - fundo preto */
.header {
  background: #000;
  position: relative;
}

/* Área do logo com destaque - centralizado e com sombra */
.logo-area-highlight {
  width: 100%;
  text-align: center;
  padding: 50px 0 25px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.8);
  background-color: #000000;
}

/* Logo principal da Netmax */
.logo-netmax-big {
  height: 180px;
  max-width: 100%;
  object-fit: contain;
}

/* Slogan superior com cor amarela e glow */
.slogan-top {
  color: #ffd000;
  font-size: 1.5em;
  margin-top: 15px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 208, 0, 0.8);
}

/* Container do botão "Central do Assinante" - posicionamento absoluto */
.assinante-container {
  position: absolute;
  top: 45px;
  right: 60px;
  z-index: 100;
}

/* Link da central do assinante - flexível e com transição */
.assinante-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Efeito hover no link do assinante */
.assinante-link:hover {
  transform: scale(1.15);
}

/* Ícone circular da central do assinante */
.assinante-icon {
  background: linear-gradient(135deg, #ffd000, #ffa500);
  width: 94px;
  height: 94px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255, 208, 0, 0.9);
  border: 4px solid #fff;
  transition: all 0.3s ease;
  animation: assinantePulse 2s infinite;
}

/* Efeito hover no ícone - aumenta brilho e rotaciona levemente */
.assinante-link:hover .assinante-icon {
  box-shadow: 0 0 50px rgba(255, 208, 0, 1);
  border-color: #ffd000;
  transform: rotate(5deg);
}

/* Estilo do ícone interno (Font Awesome) */
.assinante-icon i {
  font-size: 52px;
  color: #000;
}

/* Texto abaixo do ícone da central do assinante */
.assinante-text {
  color: #ffd000;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 15px rgba(255, 208, 0, 0.7);
  line-height: 1.3;
}

/* Animação de pulsação para o ícone do assinante */
@keyframes assinantePulse {
  0% {
    box-shadow: 0 0 25px rgba(255, 208, 0, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 50px rgba(255, 208, 0, 1);
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 25px rgba(255, 208, 0, 0.6);
    transform: scale(1);
  }
}

/* Menu de navegação principal - links em linha */
.nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 15px 0;
  background: #000;
  border-top: 1px solid rgba(255, 208, 0, 0.2);
  border-bottom: 1px solid rgba(255, 208, 0, 0.2);
}

/* Estilo dos links do menu */
.nav-menu a {
  color: white;
  margin: 10px 18px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.5px;
  font-size: 1.05em;
  transition: all 0.25s;
  position: relative;
}

/* Efeito hover - muda cor e aumenta ligeiramente */
.nav-menu a:hover {
  color: #ffd000;
  transform: scale(1.1);
}

/* Linha decorativa que aparece abaixo do link ao passar o mouse */
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #ffd000;
  transition: width 0.3s ease;
}

/* Expande a linha ao passar o mouse */
.nav-menu a:hover::after {
  width: 80%;
}

/* =================================================================== */
/* 3. WHATSAPP FLOATING BUTTON (GLOBAL)                               */
/* =================================================================== */

/* Botão flutuante do WhatsApp - fixo no canto inferior direito */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: whatsappPulse 2s infinite;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Estilo do ícone interno do WhatsApp */
.whatsapp-float i {
  transition: transform 0.3s ease;
  font-size: 38px;
}

/* Efeito hover no botão do WhatsApp */
.whatsapp-float:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128c7e, #25d366);
  border-color: #ffd000;
}

/* Pequena rotação do ícone ao passar o mouse */
.whatsapp-float:hover i {
  transform: rotate(5deg);
}

/* Animação de pulsação do botão WhatsApp */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.8);
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transform: scale(1);
  }
}

/* Tooltip que aparece ao lado do botão WhatsApp */
.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  background: linear-gradient(135deg, #000, #ffd000);
  color: #000;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #ffd000;
}

/* Exibe o tooltip ao passar o mouse sobre o botão */
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 90px;
}

/* =================================================================== */
/* 4. HERO SECTIONS (GLOBAL E ESPECÍFICAS)                           */
/* =================================================================== */

/* Seção Hero padrão - gradiente preto para amarelo */
.hero {
  background: linear-gradient(135deg, #000, #ffd000);
  color: white;
  text-align: center;
  padding: 90px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Versão aprimorada do Hero com gradiente triplo */
.hero-boosted {
  background: linear-gradient(135deg, #000, #ffd000, #ffea80);
  padding: 120px 25px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  animation: heroGlow 6s infinite alternate;
}

/* Animação de brilho para o hero */
@keyframes heroGlow {
  0% {
    box-shadow: 0 0 25px rgba(255, 208, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 55px rgba(255, 208, 0, 0.75);
  }
}

/* Título principal do Hero */
.hero-title {
  font-size: 3.3em;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.9),
    0 0 24px rgba(255, 208, 0, 0.7);
  margin-bottom: 20px;
}

/* Estilo do preço padrão */
.price {
  color: #ffd000;
  font-size: 2em;
  font-weight: 900;
  display: inline-block;
}

/* Preço com efeito de fogo - usado em promoções especiais */
.price-fire {
  color: #f24f00;
  font-size: 2em;
  font-weight: 900;
  text-shadow:
    0 0 20px #ffaa00,
    0 0 40px #ff5500,
    0 0 60px #ff0000;
  animation: firePulse 1.2s infinite ease-in-out;
}

/* Título com efeito de fogo */
.title-fire {
  color: #f24f00 !important;
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  text-shadow:
    0 0 20px #ffaa00,
    0 0 40px #ff5500,
    0 0 60px #ff0000 !important;
  animation: firePulse 1.2s infinite ease-in-out !important;
}

/* Subtítulo padrão */
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Subtítulo premium com fundo semi-transparente e blur */
.subtitle-premium {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  max-width: 1100px;
  margin: 30px auto;
  padding: 30px;
  background: rgba(255, 215, 0, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  text-transform: uppercase;
  color: #000;
  text-shadow:
    0 0 15px #ffd000,
    0 0 30px #ffa500;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 208, 0, 0.6);
}

/* Heroes específicos para diferentes seções do site */
.estante-hero,
.jornalz-hero,
.tv-hero,
.news-hero {
  background: linear-gradient(135deg, #000, #ffd000, #ffea80);
  position: relative;
  overflow: hidden;
}

/* Decoração de fundo para Estante Digital - ícone de livro */
.estante-hero::before {
  content: "📚";
  top: -50px;
  right: -50px;
  font-size: 300px;
  opacity: 0.1;
  transform: rotate(15deg);
}
.estante-hero::after {
  content: "📖";
  bottom: -80px;
  left: -40px;
  font-size: 280px;
  opacity: 0.08;
  transform: rotate(-10deg);
}

/* Decoração de fundo para JornalZ - ícone de jornal */
.jornalz-hero::before {
  content: "📰";
  top: -50px;
  right: -50px;
  font-size: 300px;
  opacity: 0.1;
  transform: rotate(15deg);
}
.jornalz-hero::after {
  content: "⚡";
  bottom: -80px;
  left: -40px;
  font-size: 280px;
  opacity: 0.08;
  transform: rotate(-10deg);
}

/* Decoração de fundo para Netmax TV - ícone de TV */
.tv-hero {
  background: linear-gradient(135deg, #000, #ffd000, #ffaa00);
}
.tv-hero::before {
  content: "📺";
  top: -50px;
  right: -50px;
  font-size: 300px;
  opacity: 0.1;
  transform: rotate(15deg);
  color: #fff;
}
.tv-hero::after {
  content: "📱";
  bottom: -80px;
  left: -30px;
  font-size: 250px;
  opacity: 0.1;
  transform: rotate(-10deg);
  color: #fff;
}

/* Decoração de fundo para News - cores mais escuras */
.news-hero {
  background: linear-gradient(135deg, #000, #0a2f44, #1b4f6e);
}
.news-hero::before {
  content: "📚";
  top: -50px;
  right: -50px;
  font-size: 300px;
  opacity: 0.1;
  transform: rotate(15deg);
  color: #fff;
}
.news-hero::after {
  content: "🔍";
  bottom: -80px;
  left: -30px;
  font-size: 250px;
  opacity: 0.1;
  transform: rotate(-10deg);
  color: #ffd000;
}

/* =================================================================== */
/* 5. BOTÕES (GLOBAL)                                                */
/* =================================================================== */

/* Estilos base para botões primários e secundários */
.btn-primary,
.btn-secondary {
  padding: 14px 30px;
  border: none;
  font-size: 1.3em;
  cursor: pointer;
  margin: 10px;
  border-radius: 50px;
  transition: 0.25s;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

/* Botão primário - laranja */
.btn-primary {
  background: #f24f00;
  color: black;
}

/* Botão secundário - branco */
.btn-secondary {
  background: white;
  color: black;
}

/* Efeito hover - aumenta ligeiramente o botão */
.btn-primary:hover,
.btn-secondary:hover {
  transform: scale(1.05);
}

/* Botão com animação de pulsação */
.pulse-btn {
  animation: pulse 2s infinite;
}

/* Animação de pulsação genérica */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 208, 0, 0.6);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 25px rgba(255, 208, 0, 0.9);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 208, 0, 0.6);
  }
}

/* Botão com efeito de brilho no hover */
.glow-btn:hover {
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
}

/* =================================================================== */
/* 6. BANNERS (GLOBAL)                                               */
/* =================================================================== */

/* Área que contém os banners principais */
.banner-area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0 70px;
}

/* Banner grande com sombra e bordas arredondadas */
.big-banner {
  width: 100%;
  max-width: 700px;
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}

/* Efeito hover no banner - aumenta ligeiramente */
.big-banner:hover {
  transform: scale(1.025);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

/* =================================================================== */
/* 7. ECOSYSTEM / SEÇÕES PRINCIPAIS                                  */
/* =================================================================== */

/* Seção do ecossistema com fundo gradiente e animação */
.ecosystem {
  padding: 110px 40px 120px;
  text-align: center;
  background: linear-gradient(140deg, #ffe066, #fff9db, #ffffff);
  animation: bgMove 16s infinite alternate;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Animação de movimento do fundo gradiente */
@keyframes bgMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Título da seção ecossistema com efeito glassmorphism */
.ecosystem-title {
  font-size: 2.8rem;
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 1000px;
  margin: 0 auto 40px;
  line-height: 1.4;
  padding: 35px 25px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  text-shadow: 0 0 10px rgba(255, 208, 0, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

/* =================================================================== */
/* 8. BENEFÍCIOS (GLOBAL - CARD PADRÃO)                              */
/* =================================================================== */

/* Grid de benefícios responsivo */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 45px;
  margin: 70px 0;
}

/* Cards de benefícios com efeito glassmorphism e borda amarela */
.big-cards .benefit-card {
  background: rgba(255, 215, 0, 0.25) !important;
  backdrop-filter: blur(12px) !important;
  border: 2px solid rgba(255, 208, 0, 0.6) !important;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: 0.35s;
  text-align: center;
}

/* Efeito hover - levanta o card */
.big-cards .benefit-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 208, 0, 0.5);
}

/* Título do card de benefício */
.big-cards .benefit-card h3 {
  color: #000;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

/* Parágrafo do card de benefício */
.big-cards .benefit-card p {
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.5;
}

/* Link que envolve o card de benefício - mantém interatividade */
.benefit-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
}

/* Garante que o card ocupe 100% da largura do link */
.benefit-card-link .benefit-card {
  width: 100%;
  height: 100%;
}

/* Efeito hover no link do benefício */
.benefit-card-link:hover .benefit-card {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 208, 0, 0.5);
}

/* Mini logo dentro dos cards */
.mini-logo {
  width: 100px;
  height: auto;
  margin-bottom: 18px;
}

/* Preço final com destaque */
.price-final {
  margin-top: 90px;
  font-size: 2.1rem;
  font-weight: 900;
  color: #000;
  text-shadow: 0 0 8px rgba(255, 208, 0, 0.6);
}

/* Super preço com animações e borda gradiente */
.super-price {
  display: inline-block;
  padding: 30px 55px;
  margin-top: 110px;
  font-size: 2.8rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  border: 3px solid transparent;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
    linear-gradient(120deg, #ffd000, #ffea80, #ffca00);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  text-shadow:
    0 0 12px rgba(255, 208, 0, 0.9),
    0 0 20px rgba(255, 230, 100, 1);
  box-shadow:
    0 0 25px rgba(255, 208, 0, 0.55),
    0 0 50px rgba(255, 208, 0, 0.35);
  animation:
    pricePulse 2.8s ease-in-out infinite,
    borderShine 6s linear infinite;
}

/* Garante que links com super-price mantenham animação */
a > .super-price {
  display: inline-block;
  animation:
    pricePulse 2.8s ease-in-out infinite,
    borderShine 6s linear infinite;
}

/* Remove decoração de links que contêm super-price */
a:has(.super-price) {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

/* Animação de brilho nas bordas */
@keyframes borderShine {
  0% {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
      linear-gradient(120deg, #ffd000, #ffea80, #ffca00);
  }
  50% {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
      linear-gradient(300deg, #ffe066, #ffd000, #ffef9d);
  }
  100% {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
      linear-gradient(120deg, #ffd000, #ffea80, #ffca00);
  }
}

/* Animação de pulsação do preço */
@keyframes pricePulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 18px rgba(255, 208, 0, 0.45),
      0 0 35px rgba(255, 208, 0, 0.25);
  }
  50% {
    transform: scale(1.05);
    box-shadow:
      0 0 35px rgba(255, 208, 0, 0.75),
      0 0 75px rgba(255, 208, 0, 0.45);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 0 18px rgba(255, 208, 0, 0.45),
      0 0 35px rgba(255, 208, 0, 0.25);
  }
}

/* =================================================================== */
/* 9. SOBRE E PARCEIROS                                              */
/* =================================================================== */

/* Seções Sobre e Parceiros com gradiente e borda decorativa */
.sobre,
.parceiros {
  padding: 80px 60px;
  background: linear-gradient(140deg, #ffe066, #fff9db, #ffffff);
  border-radius: 20px;
  margin: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Linha decorativa superior gradiente */
.sobre::before,
.parceiros::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    #ffd000,
    #000,
    #ffd000,
    transparent
  );
}

/* Títulos das seções Sobre e Parceiros */
.sobre h2,
.parceiros h2 {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Linha decorativa abaixo do título */
.sobre h2::after,
.parceiros h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #ffd000,
    #000,
    #ffd000,
    transparent
  );
}

/* Parágrafos das seções Sobre e Parceiros */
.sobre p,
.parceiros p {
  font-size: 1.3rem;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto 35px auto;
  color: #1a1a1a;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* Texto em destaque com gradiente e linha decorativa */
.sobre p strong,
.parceiros p strong {
  font-weight: 800;
  color: #000000;
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Linha decorativa abaixo do texto em destaque */
.sobre p strong::after,
.parceiros p strong::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #ffd000,
    #000,
    #ffd000,
    transparent
  );
}

/* Container dos logos dos parceiros */
.parceiros .partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

/* Logo individual do parceiro com sombra */
.parceiros .partner-logo {
  width: 150px;
  height: auto;
  transition: 0.3s;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.25));
}

/* Efeito hover nos logos */
.parceiros .partner-logo:hover {
  transform: scale(1.15);
}

/* =================================================================== */
/* 10. ANIMAÇÕES GLOBAIS                                             */
/* =================================================================== */

/* Animação de rotação contínua */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Animação de pulsação com efeito de fogo */
@keyframes firePulse {
  0% {
    text-shadow:
      0 0 20px #ffaa00,
      0 0 40px #ff5500,
      0 0 60px #ff0000;
    transform: scale(1);
  }
  50% {
    text-shadow:
      0 0 30px #ffdd55,
      0 0 60px #ff8800,
      0 0 90px #ff3300;
    transform: scale(1.05);
  }
  100% {
    text-shadow:
      0 0 20px #ffaa00,
      0 0 40px #ff5500,
      0 0 60px #ff0000;
    transform: scale(1);
  }
}

/* Animação de pulsação de brilho */
@keyframes glowPulse {
  0% {
    text-shadow:
      0 0 15px #ffd000,
      0 0 30px rgba(255, 208, 0, 0.5);
  }
  50% {
    text-shadow:
      0 0 25px #ffd000,
      0 0 50px rgba(255, 208, 0, 0.8);
  }
  100% {
    text-shadow:
      0 0 15px #ffd000,
      0 0 30px rgba(255, 208, 0, 0.5);
  }
}

/* ============================================ */
/* JORNALZ PAGE - ESTILOS ESPECÍFICOS           */
/* ============================================ */

/* Container responsivo do hero da página JornalZ */
.jornalz-hero-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Texto da coluna esquerda do hero JornalZ */
.jornalz-hero-text {
  text-align: left;
}

/* Badge/distintivo da seção JornalZ */
.jornalz-badge {
  display: inline-block;
  background: #000;
  color: #ffd000;
  font-weight: 800;
  padding: 8px 25px;
  border-radius: 40px;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
  border: 2px solid #ffd000;
}

/* Título principal do hero JornalZ */
.jornalz-hero-title {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000;
  text-shadow: 0 0 20px rgba(255, 208, 0, 0.3);
  position: relative;
}

/* Destaque colorido no título com animação de fogo */
.jornalz-hero-title span {
  color: #f24f00;
  font-size: 5rem;
  text-shadow:
    0 0 30px #ffaa00,
    0 0 60px #ff5500;
  animation: firePulse 1.2s infinite ease-in-out;
  display: inline-block;
  position: relative;
  top: -2px;
}

/* Subtítulo do hero JornalZ */
.jornalz-hero-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

/* Descrição do hero JornalZ */
.jornalz-hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 30px;
  max-width: 600px;
  font-weight: 500;
}

/* Container dos botões do hero JornalZ */
.jornalz-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Botões específicos da seção JornalZ */
.jornalz-hero-buttons .btn-primary,
.jornalz-hero-buttons .btn-secondary {
  font-size: 1.3rem;
  padding: 15px 35px;
}

.jornalz-hero-buttons .btn-primary {
  background: #f24f00;
  color: #000;
  font-weight: 800;
  border: none;
}

.jornalz-hero-buttons .btn-secondary {
  background: #000;
  color: #ffd000;
  border: 2px solid #ffd000;
  font-weight: 600;
}

/* Container dos selos/badges adicionais */
.jornalz-hero-badges {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Badge padrão com fundo semi-transparente */
.jornalz-hero-badge {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #000;
  font-weight: 700;
  color: #000;
}

.jornalz-hero-badge i {
  margin-right: 8px;
  color: #000;
}

/* Badge amarelo com fundo semi-transparente */
.jornalz-hero-badge-yellow {
  background: rgba(255, 208, 0, 0.2);
  backdrop-filter: blur(5px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #ffd000;
  font-weight: 700;
  color: #000;
}

.jornalz-hero-badge-yellow i {
  margin-right: 8px;
  color: #000;
}

/* Coluna da direita - ilustração/animação circular */
.jornalz-hero-illustration {
  text-align: center;
  position: relative;
}

/* Círculo externo com borda tracejada e rotação */
.jornalz-circle-outer {
  width: 350px;
  height: 350px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed #000;
  animation: rotate 30s linear infinite;
}

/* Círculo médio */
.jornalz-circle-middle {
  width: 280px;
  height: 280px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}

/* Círculo interno com conteúdo central */
.jornalz-circle-inner {
  width: 220px;
  height: 220px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  border: 2px solid #ffd000;
  box-shadow: 0 0 50px rgba(255, 208, 0, 0.3);
}

/* Ícone principal dentro do círculo */
.jornalz-circle-inner i {
  font-size: 5rem;
  color: #ffd000;
}

/* Texto dentro do círculo */
.jornalz-circle-inner span:first-of-type {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.jornalz-circle-inner span:last-of-type {
  color: #ffd000;
  font-size: 1.1rem;
}

/* Ícones secundários dentro do círculo */
.jornalz-circle-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.jornalz-circle-icons i {
  font-size: 1.5rem;
  color: #ffd000;
}

/* Cards flutuantes decorativos */
.jornalz-float-card-top {
  position: absolute;
  top: 20%;
  right: 0;
  background: #000;
  padding: 15px 25px;
  border-radius: 20px;
  border: 2px solid #ffd000;
  transform: rotate(5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.jornalz-float-card-top i {
  color: #ffd000;
  margin-right: 8px;
}

.jornalz-float-card-top span {
  color: white;
}

.jornalz-float-card-bottom {
  position: absolute;
  bottom: 20%;
  left: 0;
  background: #000;
  padding: 15px 25px;
  border-radius: 20px;
  border: 2px solid #ffd000;
  transform: rotate(-5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.jornalz-float-card-bottom i {
  color: #ffd000;
  margin-right: 8px;
}

.jornalz-float-card-bottom span {
  color: white;
}

/* Elementos decorativos de fundo com ícones */
.jornalz-bg-icon-top {
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 300px;
  opacity: 0.08;
  transform: rotate(15deg);
  color: #000;
  pointer-events: none;
  z-index: 1;
}

.jornalz-bg-icon-bottom {
  position: absolute;
  bottom: -80px;
  left: -40px;
  font-size: 280px;
  opacity: 0.08;
  transform: rotate(-10deg);
  color: #000;
  pointer-events: none;
  z-index: 1;
}

.jornalz-bg-icon-center {
  position: absolute;
  top: 50%;
  left: 10%;
  font-size: 120px;
  opacity: 0.05;
  transform: translateY(-50%);
  color: #000;
  pointer-events: none;
  z-index: 1;
}

/* Grid de features da seção JornalZ */
.jornalz-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 60px 0;
}

/* Card de feature individual */
.jornalz-feature-card {
  background: rgba(255, 215, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 208, 0, 0.5);
  border-radius: 25px;
  padding: 35px 25px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* Efeito hover no card de feature */
.jornalz-feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 208, 0, 0.3);
  background: rgba(255, 215, 0, 0.25);
  border-color: #ffd000;
}

/* Ícone do card de feature */
.jornalz-feature-icon {
  background: #000;
  min-width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffd000;
  box-shadow: 0 0 20px rgba(255, 208, 0, 0.3);
}

.jornalz-feature-icon i {
  font-size: 2.5rem;
  color: #ffd000;
}

/* Conteúdo do card de feature */
.jornalz-feature-content h3 {
  font-size: 1.6rem;
  color: #000;
  font-weight: 800;
  margin-bottom: 10px;
}

.jornalz-feature-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Seção de dispositivos compatíveis */
.jornalz-devices {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin: 50px 0;
  background: rgba(255, 215, 0, 0.15);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 50px;
  border: 2px solid rgba(255, 208, 0, 0.5);
}

/* Item individual de dispositivo */
.jornalz-device-item {
  text-align: center;
  width: 150px;
}

/* Ícone do dispositivo com gradiente */
.jornalz-device-item i {
  font-size: 5rem;
  color: #000;
  background: linear-gradient(135deg, #ffd000, #ffaa00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

/* Efeito hover no ícone do dispositivo */
.jornalz-device-item:hover i {
  transform: translateY(-10px) scale(1.1);
}

/* Nome do dispositivo */
.jornalz-device-item span {
  display: block;
  margin-top: 15px;
  font-weight: 700;
  color: #000;
  font-size: 1.2rem;
}

/* Descrição adicional do dispositivo */
.jornalz-device-item small {
  display: block;
  color: #666;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Estatísticas da seção JornalZ */
.jornalz-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 50px 0;
  flex-wrap: wrap;
}

/* Item de estatística individual */
.jornalz-stat-item {
  text-align: center;
  background: rgba(0, 0, 0, 0.05);
  padding: 25px 35px;
  border-radius: 30px;
  border: 2px dashed #ffd000;
}

/* Número da estatística */
.jornalz-stat-item .numero {
  font-size: 3.5rem;
  font-weight: 900;
  color: #f24f00;
  text-shadow: 0 0 20px rgba(255, 208, 0, 0.5);
  line-height: 1;
}

/* Rótulo da estatística */
.jornalz-stat-item .rotulo {
  font-size: 1.1rem;
  color: #000;
  font-weight: 600;
  margin-top: 10px;
}

/* Caixa explicativa da seção JornalZ */
.jornalz-explicativo-box {
  background: rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 40px;
  margin: 40px 0;
  border: 2px solid rgba(255, 208, 0, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Parágrafo dentro da caixa explicativa */
.jornalz-explicativo-box p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}

/* Primeiro parágrafo com destaque especial */
.jornalz-explicativo-box p:first-child {
  font-size: 1.8rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
}

/* Caixa de Call-to-Action da seção JornalZ */
.jornalz-cta-box {
  background: linear-gradient(135deg, #000, #1a1a1a);
  border-radius: 40px;
  padding: 60px 40px;
  margin: 60px 0;
  border: 3px solid #ffd000;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Elementos decorativos da CTA box */
.jornalz-cta-box::before,
.jornalz-cta-box::after {
  content: "✨";
  position: absolute;
  font-size: 150px;
  opacity: 0.1;
  color: #ffd000;
}

.jornalz-cta-box::before {
  top: -30px;
  left: -30px;
  transform: rotate(-20deg);
}

.jornalz-cta-box::after {
  content: "📰";
  bottom: -30px;
  right: -30px;
  transform: rotate(15deg);
}

/* Título da CTA box */
.jornalz-cta-box h2 {
  font-size: 2.8rem;
  color: #ffd000;
  margin-bottom: 30px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(255, 208, 0, 0.3);
}

/* Parágrafo da CTA box */
.jornalz-cta-box p {
  font-size: 1.4rem;
  color: white;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Botão principal da CTA box */
.jornalz-cta-box .btn-primary {
  font-size: 2rem;
  padding: 25px 60px;
  background: #f24f00;
  color: #000;
  font-weight: 800;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(255, 208, 0, 0.5);
}

.jornalz-cta-box .btn-primary:hover {
  background: #ffd000;
  transform: scale(1.05);
}

/* Seção de parceiros da JornalZ */
.jornalz-partner-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 40px 0;
  background: rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: 30px 50px;
  border-radius: 60px;
  border: 2px solid rgba(255, 208, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Logo do parceiro */
.jornalz-partner-showcase img {
  width: 120px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.jornalz-partner-showcase img:hover {
  transform: scale(1.1);
}

/* Separador entre logos */
.jornalz-partner-showcase span {
  font-size: 3rem;
  color: #ffd000;
  font-weight: 300;
  text-shadow: 0 0 10px rgba(255, 208, 0, 0.5);
}

/* Responsividade JornalZ - Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  /* Muda layout para coluna única */
  .jornalz-hero-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
  }

  /* Centraliza textos */
  .jornalz-hero-text {
    text-align: center !important;
  }

  /* Centraliza descrição */
  .jornalz-hero-description {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Centraliza botões */
  .jornalz-hero-buttons {
    justify-content: center !important;
  }

  /* Centraliza badges */
  .jornalz-hero-badges {
    justify-content: center !important;
  }

  /* Reduz tamanho dos círculos */
  .jornalz-circle-outer {
    width: 300px !important;
    height: 300px !important;
  }

  .jornalz-circle-middle {
    width: 240px !important;
    height: 240px !important;
  }

  .jornalz-circle-inner {
    width: 190px !important;
    height: 190px !important;
  }

  /* Features em coluna única */
  .jornalz-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsividade JornalZ - Mobile (max-width: 768px) */
@media (max-width: 768px) {
  /* Reduz tamanhos de fonte */
  .jornalz-hero-title {
    font-size: 2.5rem !important;
  }

  .jornalz-hero-title span {
    font-size: 2.8rem !important;
  }

  .jornalz-hero-subtitle {
    font-size: 1.5rem !important;
  }

  .jornalz-hero-description {
    font-size: 1.1rem !important;
  }

  /* Botões menores */
  .jornalz-hero-buttons .btn-primary,
  .jornalz-hero-buttons .btn-secondary {
    font-size: 1rem !important;
    padding: 12px 25px !important;
  }

  /* Círculos menores */
  .jornalz-circle-outer {
    width: 280px !important;
    height: 280px !important;
  }

  .jornalz-circle-middle {
    width: 220px !important;
    height: 220px !important;
  }

  .jornalz-circle-inner {
    width: 180px !important;
    height: 180px !important;
  }

  .jornalz-circle-inner i {
    font-size: 3.5rem !important;
  }

  .jornalz-circle-inner span:first-of-type {
    font-size: 1.2rem !important;
  }

  .jornalz-circle-icons i {
    font-size: 1.2rem !important;
  }

  /* Esconde cards flutuantes no mobile */
  .jornalz-float-card-top,
  .jornalz-float-card-bottom {
    display: none;
  }

  /* Badge menor */
  .jornalz-badge {
    font-size: 0.9rem !important;
    padding: 6px 20px !important;
  }

  /* Ajusta caixa explicativa */
  .jornalz-explicativo-box p:first-child {
    font-size: 1.4rem !important;
  }

  .jornalz-explicativo-box p {
    font-size: 1rem !important;
  }

  /* Ajusta CTA box */
  .jornalz-cta-box h2 {
    font-size: 2rem !important;
  }

  .jornalz-cta-box p {
    font-size: 1.2rem !important;
  }

  .jornalz-cta-box .btn-primary {
    font-size: 1.5rem !important;
    padding: 20px 40px !important;
  }

  /* Ajusta dispositivos */
  .jornalz-devices {
    gap: 20px;
    padding: 30px 20px;
  }

  .jornalz-device-item {
    width: 100px;
  }

  .jornalz-device-item i {
    font-size: 3rem;
  }

  /* Ajusta estatísticas */
  .jornalz-stats {
    gap: 20px;
  }

  .jornalz-stat-item {
    padding: 15px 25px;
  }

  .jornalz-stat-item .numero {
    font-size: 2.5rem;
  }

  /* Ajusta parceiros */
  .jornalz-partner-showcase {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
  }

  .jornalz-partner-showcase span {
    display: none;
  }
}

/* Responsividade JornalZ - Mobile Pequeno (max-width: 480px) */
@media (max-width: 480px) {
  /* Fontes ainda menores */
  .jornalz-hero-title {
    font-size: 2rem !important;
  }

  .jornalz-hero-title span {
    font-size: 2.2rem !important;
  }

  /* Círculos menores ainda */
  .jornalz-circle-outer {
    width: 240px !important;
    height: 240px !important;
  }

  .jornalz-circle-middle {
    width: 200px !important;
    height: 200px !important;
  }

  .jornalz-circle-inner {
    width: 160px !important;
    height: 160px !important;
  }

  .jornalz-circle-inner i {
    font-size: 2.8rem !important;
  }

  /* Botões compactos */
  .jornalz-hero-buttons .btn-primary,
  .jornalz-hero-buttons .btn-secondary {
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
  }

  /* CTA box compacta */
  .jornalz-cta-box .btn-primary {
    font-size: 1.2rem !important;
    padding: 15px 30px !important;
  }

  /* Dispositivos compactos */
  .jornalz-device-item {
    width: 85px;
  }

  .jornalz-device-item i {
    font-size: 2.5rem;
  }

  .jornalz-device-item span {
    font-size: 0.9rem;
  }

  .jornalz-device-item small {
    font-size: 0.7rem;
  }
}

/* =================================================================== */
/* 11. ESTANTE DIGITAL - ESPECÍFICOS                                  */
/* =================================================================== */

/* Hero Grid Container - Layout principal da Estante Digital */
.hero-grid-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Coluna de texto do hero */
.hero-text-column {
  text-align: left;
}

/* Badge do hero */
.hero-badge {
  display: inline-block;
  background: #000;
  color: #ffd000;
  font-weight: 800;
  padding: 8px 25px;
  border-radius: 40px;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
  border: 2px solid #ffd000;
}

/* Título principal do hero */
.hero-main-title {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #000;
  text-shadow: 0 0 20px rgba(255, 208, 0, 0.3);
}

/* Destaque colorido no título principal */
.hero-main-title-highlight {
  color: #f24f00;
  font-size: 4.5rem;
  display: block;
  margin-top: 5px;
  text-shadow:
    0 0 30px #ffaa00,
    0 0 60px #ff5500;
  animation: firePulse 1.2s infinite ease-in-out;
}

/* Subtítulo do hero */
.hero-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

/* Descrição do hero */
.hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 30px;
  max-width: 600px;
  font-weight: 500;
}

/* Container dos botões do hero */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Botão de acesso principal */
.hero-btn-acessar {
  font-size: 1.3rem;
  padding: 15px 35px;
  background: #f24f00;
  color: #000;
  font-weight: 800;
  border: none;
}

/* Botão secundário "saiba mais" */
.hero-btn-saiba {
  font-size: 1.3rem;
  padding: 15px 35px;
  background: #000;
  color: #ffd000;
  border: 2px solid #ffd000;
  font-weight: 600;
}

/* Badges de itens inclusos */
.hero-incluso-badges {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Badge padrão de itens inclusos */
.hero-incluso-badge {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #000;
  color: #000;
  font-weight: 700;
}

.hero-incluso-badge i {
  margin-right: 8px;
  color: #000;
}

/* Badge amarelo de itens inclusos */
.hero-incluso-badge-yellow {
  background: rgba(255, 208, 0, 0.2);
  border: 1px solid #ffd000;
}

/* Container visual do hero (círculos animados) */
.hero-visual-container {
  text-align: center;
  position: relative;
}

/* Círculo externo animado */
.hero-circle-container {
  width: min(350px, 80vw);
  height: min(350px, 80vw);
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed #000;
  animation: rotate 30s linear infinite;
}

/* Círculo do meio */
.hero-circle-middle {
  width: 80%;
  height: 80%;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}

/* Círculo interno com conteúdo */
.hero-circle-inner {
  width: 78%;
  height: 78%;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border: 2px solid #ffd000;
  box-shadow: 0 0 50px rgba(255, 208, 0, 0.3);
  text-align: center;
  padding: 10px;
}

/* Ícone dentro do círculo interno */
.hero-circle-inner i {
  font-size: clamp(2rem, 8vw, 5rem);
  color: #ffd000;
}

/* Número dentro do círculo */
.hero-circle-number {
  color: white;
  font-size: clamp(1rem, 4vw, 1.5rem);
  font-weight: 700;
}

/* Rótulo dentro do círculo */
.hero-circle-label {
  color: #ffd000;
  font-size: clamp(0.7rem, 3vw, 1.1rem);
}

/* Ícones adicionais dentro do círculo */
.hero-circle-icons {
  display: flex;
  gap: 12px;
  margin-top: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-circle-icons i {
  font-size: clamp(1rem, 4vw, 1.5rem);
  color: #ffd000;
}

/* Cards flutuantes decorativos */
.hero-float-card {
  position: absolute;
  background: #000;
  padding: 12px 20px;
  border-radius: 20px;
  border: 2px solid #ffd000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-float-card i {
  color: #ffd000;
  margin-right: 8px;
  font-size: 0.9rem;
}

.hero-float-card span {
  color: white;
  font-size: 0.9rem;
}

/* Card flutuante à direita */
.hero-float-card-right {
  top: 15%;
  right: 0;
  transform: rotate(5deg);
}

/* Card flutuante à esquerda */
.hero-float-card-left {
  bottom: 15%;
  left: 0;
  transform: rotate(-5deg);
}

/* Grid de features da Estante Digital */
.estante-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0;
}

/* Card de feature da Estante Digital */
.estante-feature-card {
  background: rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 208, 0, 0.5);
  border-radius: 25px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

/* Efeito hover no card de feature */
.estante-feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(255, 208, 0, 0.3);
  background: rgba(255, 215, 0, 0.3);
  border-color: #ffd000;
}

/* Ícone do card de feature */
.estante-feature-card i {
  font-size: 3.5rem;
  color: #ffd000;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 208, 0, 0.5);
}

/* Título do card de feature */
.estante-feature-card h3 {
  font-size: 1.6rem;
  color: #000;
  font-weight: 800;
  margin-bottom: 15px;
}

/* Descrição do card de feature */
.estante-feature-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Grid de categorias da Estante Digital */
.estante-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 50px 0;
}

/* Item individual de categoria */
.estante-category-item {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 208, 0, 0.3);
}

/* Efeito hover no item de categoria */
.estante-category-item:hover {
  background: rgba(255, 208, 0, 0.2);
  transform: scale(1.05);
  border-color: #ffd000;
}

/* Ícone da categoria */
.estante-category-item i {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 10px;
}

/* Texto da categoria */
.estante-category-item span {
  display: block;
  font-weight: 700;
  color: #000;
  font-size: 1.1rem;
}

/* Seção de dispositivos compatíveis da Estante Digital */
.estante-devices {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin: 50px 0;
  padding: 40px;
  background: rgba(255, 215, 0, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 2px solid rgba(255, 208, 0, 0.5);
}

/* Item individual de dispositivo */
.estante-device-item {
  text-align: center;
  width: 150px;
}

/* Ícone do dispositivo com gradiente */
.estante-device-item i {
  font-size: 4.5rem;
  background: linear-gradient(135deg, #000, #ffd000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

/* Efeito hover no ícone do dispositivo */
.estante-device-item:hover i {
  transform: translateY(-10px);
}

/* Nome do dispositivo */
.estante-device-item span {
  display: block;
  margin-top: 15px;
  font-weight: 700;
  color: #000;
  font-size: 1.2rem;
}

/* Descrição do dispositivo */
.estante-device-item small {
  display: block;
  color: #666;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Tabela de benefícios da Estante Digital */
.estante-benefits-table {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 40px;
  margin: 60px 0;
  border: 2px solid rgba(255, 208, 0, 0.5);
}

/* Linha de benefício individual */
.estante-benefit-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(255, 208, 0, 0.5);
}

/* Remove borda da última linha */
.estante-benefit-row:last-child {
  border-bottom: none;
}

/* Ícone do benefício */
.estante-benefit-icon {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.estante-benefit-icon i {
  color: #ffd000;
  width: 40px;
}

/* Descrição do benefício */
.estante-benefit-desc {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  text-align: left;
}

.estante-benefit-desc strong {
  color: #000;
}

/* Caixa de CTA da Estante Digital */
.estante-cta-box {
  background: linear-gradient(135deg, #000, #1a1a1a);
  border-radius: 40px;
  padding: 60px 40px;
  margin: 60px 0;
  border: 3px solid #ffd000;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Elementos decorativos da CTA box */
.estante-cta-box::before,
.estante-cta-box::after {
  content: "📚";
  position: absolute;
  font-size: 150px;
  opacity: 0.1;
  color: #ffd000;
}

.estante-cta-box::before {
  top: -30px;
  left: -30px;
  transform: rotate(-20deg);
}

.estante-cta-box::after {
  content: "📖";
  bottom: -30px;
  right: -30px;
  transform: rotate(15deg);
}

/* Título da CTA box */
.estante-cta-box h2 {
  font-size: 2.8rem;
  color: #ffd000;
  margin-bottom: 30px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(255, 208, 0, 0.3);
}

/* Parágrafo da CTA box */
.estante-cta-box p {
  font-size: 1.4rem;
  color: white;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Estatísticas da Estante Digital */
.estante-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 50px 0;
  flex-wrap: wrap;
}

/* Item de estatística */
.estante-stat-item {
  text-align: center;
  background: rgba(0, 0, 0, 0.05);
  padding: 25px 35px;
  border-radius: 30px;
  border: 2px dashed #ffd000;
}

/* Número da estatística */
.estante-stat-item .numero {
  font-size: 3.5rem;
  font-weight: 900;
  color: #f24f00;
  text-shadow: 0 0 20px rgba(255, 208, 0, 0.5);
  line-height: 1;
}

/* Rótulo da estatística */
.estante-stat-item .rotulo {
  font-size: 1.1rem;
  color: #000;
  font-weight: 600;
  margin-top: 10px;
}

/* Seção de FAQ da Estante Digital */
.estante-faq {
  max-width: 900px;
  margin: 60px auto;
  text-align: left;
}

/* Item individual do FAQ */
.estante-faq-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-left: 5px solid #ffd000;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Efeito hover no item do FAQ */
.estante-faq-item:hover {
  background: rgba(255, 208, 0, 0.1);
  transform: translateX(10px);
}

/* Título da pergunta do FAQ */
.estante-faq-item h4 {
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Ícone de expansão do FAQ */
.estante-faq-item h4 i {
  color: #ffd000;
  transition: transform 0.3s ease;
}

/* Rotação do ícone ao passar o mouse */
.estante-faq-item:hover h4 i {
  transform: rotate(90deg);
}

/* Resposta do FAQ - inicialmente oculta */
.estante-faq-item p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  display: none;
}

/* Exibe resposta quando item está ativo */
.estante-faq-item.active p {
  display: block !important;
}

/* Rotação do ícone quando ativo */
.estante-faq-item.active i {
  transform: rotate(180deg);
}

/* Seção de parceiros da Estante Digital */
.estante-partner-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 40px 0;
  background: rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: 30px 50px;
  border-radius: 60px;
  border: 2px solid rgba(255, 208, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Logo do parceiro */
.estante-partner-showcase img {
  width: 120px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.estante-partner-showcase img:hover {
  transform: scale(1.1);
}

/* Separador entre logos */
.estante-partner-showcase span {
  font-size: 3rem;
  color: #ffd000;
  font-weight: 300;
  text-shadow: 0 0 10px rgba(255, 208, 0, 0.5);
}

/* Background Decorations - elementos decorativos de fundo */
.hero-bg-deco-1,
.hero-bg-deco-2,
.magia-bg-deco-1,
.magia-bg-deco-2,
.vantagens-bg-deco-1,
.vantagens-bg-deco-2,
.passos-bg-deco-1,
.passos-bg-deco-2 {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

/* Posicionamento dos elementos decorativos do hero */
.hero-bg-deco-1 {
  top: -30px;
  right: -30px;
  font-size: 300px;
  transform: rotate(15deg);
  color: #000;
}
.hero-bg-deco-2 {
  bottom: -80px;
  left: -40px;
  font-size: 280px;
  transform: rotate(-10deg);
  color: #000;
}

/* Elementos decorativos da seção Magia */
.magia-bg-deco-1 {
  top: -30px;
  right: -20px;
  font-size: 250px;
  transform: rotate(15deg);
  color: #ffd000;
}
.magia-bg-deco-2 {
  bottom: -40px;
  left: -30px;
  font-size: 220px;
  transform: rotate(-10deg);
  color: #ffd000;
}

/* Elementos decorativos da seção Vantagens */
.vantagens-bg-deco-1 {
  top: -40px;
  right: -30px;
  font-size: 280px;
  transform: rotate(20deg);
  color: #ffd000;
}
.vantagens-bg-deco-2 {
  bottom: -50px;
  left: -40px;
  font-size: 250px;
  transform: rotate(-15deg);
  color: #ffd000;
}

/* Elementos decorativos da seção Passos */
.passos-bg-deco-1 {
  top: -30px;
  right: -20px;
  font-size: 200px;
  transform: rotate(15deg);
  color: #ffd000;
}
.passos-bg-deco-2 {
  bottom: -40px;
  left: -30px;
  font-size: 180px;
  transform: rotate(-10deg);
  color: #ffd000;
}

/* =================================================================== */
/* MAGIA SECTION - Seção de conteúdo especial com efeitos mágicos     */
/* =================================================================== */

/* Seção Magia com gradiente e bordas arredondadas */
.magia-section {
  background: linear-gradient(145deg, #fff9e6 0%, #ffffff 100%);
  border-radius: 50px;
  padding: 70px 60px;
  margin: 50px 0;
  box-shadow: 0 30px 50px rgba(255, 208, 0, 0.15);
  border: 2px solid #ffd000;
  position: relative;
  overflow: hidden;
}

/* Conteúdo da seção Magia com z-index para ficar acima dos decorativos */
.magia-content {
  position: relative;
  z-index: 2;
}

/* Badge da seção Magia */
.magia-badge {
  display: inline-block;
  background: #000;
  color: #ffd000;
  font-weight: 800;
  padding: 8px 30px;
  border-radius: 60px;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 30px;
  border: 2px solid #ffd000;
  box-shadow: 0 5px 15px rgba(255, 208, 0, 0.3);
}

/* Cabeçalho da seção Magia com ícone e título */
.magia-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Caixa do ícone da seção Magia com efeito 3D */
.magia-icon-box {
  background: #000;
  padding: 22px;
  border-radius: 30px;
  box-shadow:
    0 12px 0 #ffd000,
    0 15px 30px rgba(0, 0, 0, 0.2);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

/* Efeito hover na caixa do ícone */
.magia-icon-box:hover {
  transform: rotate(0deg) scale(1.05);
}

/* Ícone da seção Magia */
.magia-icon-box i {
  color: #ffd000;
  font-size: 3.5rem;
}

/* Título da seção Magia */
.magia-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #000;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

/* Primeira parte do título com gradiente */
.magia-title span:first-child {
  background: linear-gradient(135deg, #000, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Destaque colorido no título */
.magia-title-highlight {
  color: #ffd000;
  font-size: 3.8rem;
  text-shadow: 0 0 15px rgba(255, 208, 0, 0.3);
}

/* Grid container da seção Magia */
.magia-grid-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Coluna de texto da seção Magia */
.magia-text-col {
  text-align: left;
}

/* Citação da seção Magia */
.magia-quote {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Ícone de citação */
.magia-quote i {
  color: #ffd000;
  font-size: 2rem;
  margin-right: 10px;
  opacity: 0.5;
}

/* Texto destacado com fundo amarelo semi-transparente */
.magia-highlight-text {
  color: #000;
  background: rgba(255, 208, 0, 0.2);
  padding: 2px 8px;
  border-radius: 10px;
}

/* Caixa de destaque com borda lateral */
.magia-highlight-box {
  background: rgba(255, 208, 0, 0.08);
  padding: 25px;
  border-radius: 25px;
  margin: 30px 0;
  border-left: 4px solid #ffd000;
}

/* Texto da caixa de destaque */
.magia-highlight-box-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
  font-style: italic;
}

/* Check de verificação na caixa de destaque */
.magia-highlight-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-weight: 600;
}

.magia-highlight-check i {
  color: #ffd000;
  font-size: 1.3rem;
}

/* Caixa de parceiro da seção Magia */
.magia-partner-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #000;
  padding: 20px 30px;
  border-radius: 40px;
  border: 2px solid #ffd000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  flex-wrap: wrap;
  justify-content: center;
}

/* Ícone do parceiro */
.magia-partner-icon {
  background: #ffd000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.magia-partner-icon i {
  color: #000;
  font-size: 2rem;
}

/* Rótulo do parceiro */
.magia-partner-label {
  margin: 0;
  color: #ffd000;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Título do parceiro */
.magia-partner-title {
  margin: 5px 0 0 0;
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
}

.magia-partner-title strong {
  color: #ffd000;
}

/* Descrição do parceiro */
.magia-partner-desc {
  margin: 5px 0 0 0;
  color: #ccc;
  font-size: 0.95rem;
}

/* Coluna de estatísticas da seção Magia */
.magia-stats-col {
  text-align: left;
}

/* Card de estatísticas da seção Magia */
.magia-stats-card {
  background: #000;
  border-radius: 30px;
  padding: 35px 25px;
  border: 2px solid #ffd000;
  box-shadow: 0 20px 30px rgba(255, 208, 0, 0.2);
  margin-bottom: 25px;
}

/* Container dos números das estatísticas */
.magia-stats-numbers {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

/* Número da estatística */
.magia-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffd000;
}

/* Rótulo da estatística */
.magia-stat-label {
  color: #ccc;
  font-size: 0.9rem;
}

/* Categorias da seção Magia */
.magia-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.magia-categories span {
  background: rgba(255, 208, 0, 0.2);
  color: #ffd000;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 208, 0, 0.3);
}

/* Card de depoimento da seção Magia */
.magia-testimonial-card {
  background: linear-gradient(135deg, #fff, #fff9e6);
  border-radius: 25px;
  padding: 25px;
  border: 1px solid #ffd000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Estrelas do depoimento */
.magia-testimonial-stars {
  margin-bottom: 15px;
}

.magia-testimonial-stars i {
  color: #ffd000;
  font-size: 1rem;
}

/* Texto do depoimento */
.magia-testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin: 15px 0;
  font-style: italic;
}

/* Autor do depoimento */
.magia-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Ícone do autor */
.magia-author-icon {
  background: #000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffd000;
}

.magia-author-icon i {
  color: #ffd000;
}

/* Nome do autor */
.magia-author-name {
  margin: 0;
  font-weight: 700;
}

/* Título/função do autor */
.magia-author-title {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
}

/* Link para explorar mais */
.magia-explore-link {
  margin-top: 25px;
  text-align: right;
}

.magia-explore-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 40px;
  border: 2px dashed #ffd000;
  transition: all 0.3s ease;
}

.magia-explore-link a:hover {
  background: #ffd000;
  color: #000;
  border: 2px solid #000;
}

/* Ícones de dispositivos da seção Magia */
.magia-devices-icons {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
  opacity: 0.5;
  flex-wrap: wrap;
}

.magia-devices-icons i {
  color: #ffd000;
  font-size: 1.5rem;
}

/* =================================================================== */
/* VANTAGENS SECTION - Seção que destaca vantagens do serviço         */
/* =================================================================== */

/* Seção Vantagens com fundo escuro e borda amarela */
.vantagens-section {
  background: linear-gradient(145deg, #000000 0%, #1a1a1a 100%);
  border-radius: 50px;
  padding: 70px 60px;
  margin: 60px 0;
  box-shadow: 0 30px 60px rgba(255, 208, 0, 0.25);
  border: 3px solid #ffd000;
  position: relative;
  overflow: hidden;
}

/* Conteúdo da seção Vantagens */
.vantagens-content {
  position: relative;
  z-index: 2;
}

/* Cabeçalho da seção Vantagens */
.vantagens-header {
  text-align: center;
  margin-bottom: 50px;
}

/* Badge da seção Vantagens */
.vantagens-badge {
  background: #ffd000;
  color: #000;
  font-weight: 900;
  padding: 8px 35px;
  border-radius: 60px;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
  border: 2px solid #fff;
  box-shadow: 0 5px 0 #000;
  display: inline-block;
  cursor: pointer;
}

/* Título da seção Vantagens */
.vantagens-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  text-shadow:
    0 0 15px #ffd000,
    0 0 30px rgba(255, 208, 0, 0.5);
}

/* Destaque colorido no título */
.vantagens-title-highlight {
  color: #ffd000;
  font-size: 4rem;
  display: block;
  margin-top: 5px;
  animation: glowPulse 2s infinite;
}

/* Subtítulo da seção Vantagens */
.vantagens-subtitle {
  font-size: 1.3rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid de cards de vantagens */
.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card individual de vantagem */
.vantagens-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 30px 25px;
  border: 1px solid rgba(255, 208, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Efeito hover no card de vantagem */
.vantagens-card:hover {
  transform: translateY(-15px);
  border-color: #ffd000;
  box-shadow: 0 20px 40px rgba(255, 208, 0, 0.3);
}

/* Elemento decorativo do card */
.vantagens-card-deco {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 100px;
  opacity: 0.1;
  color: #ffd000;
  transform: rotate(10deg);
}

/* Cabeçalho do card de vantagem */
.vantagens-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

/* Ícone do card de vantagem */
.vantagens-card-icon {
  background: #ffd000;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-3deg);
  box-shadow: 0 8px 0 #b38f00;
}

.vantagens-card-icon i {
  color: #000;
  font-size: 2rem;
}

/* Badge do card */
.vantagens-card-badge {
  background: rgba(255, 208, 0, 0.2);
  color: #ffd000;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Título do card */
.vantagens-card h3 {
  margin: 8px 0 0 0;
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
}

/* Descrição do card */
.vantagens-card p {
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Estatísticas do card */
.vantagens-card-stats {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 12px;
  border-left: 3px solid #ffd000;
}

/* Linha de estatísticas */
.vantagens-stats-row {
  display: flex;
  justify-content: space-between;
  color: #ccc;
  font-size: 0.9rem;
}

/* Barra de progresso */
.vantagens-progress-bar {
  height: 6px;
  background: rgba(255, 208, 0, 0.2);
  border-radius: 10px;
  margin-top: 8px;
}

/* Preenchimento da barra de progresso */
.vantagens-progress-fill {
  width: 100%;
  height: 6px;
  background: #ffd000;
  border-radius: 10px;
}

/* Texto de comparação de estatísticas */
.vantagens-stats-compare {
  margin: 8px 0 0 0;
  color: #ffd000;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Caixa de economia */
.vantagens-economy-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Etiqueta de preço */
.vantagens-price-tag {
  background: #ffd000;
  color: #000;
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 15px;
  font-size: 1.5rem;
}

/* Texto de economia */
.vantagens-economy-text span {
  display: block;
  color: #ccc;
  font-size: 0.95rem;
}

.vantagens-economy-text strong {
  color: #ffd000;
  font-weight: 700;
}

/* Itens de privacidade */
.vantagens-privacy-items {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 15px;
}

.vantagens-privacy-items div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffd000;
  flex-wrap: wrap;
}

.vantagens-privacy-items div i {
  color: #ffd000;
}

.vantagens-privacy-items div span {
  color: white;
}

/* Tags de categorias */
.vantagens-categories-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vantagens-categories-tags span {
  background: rgba(255, 208, 0, 0.2);
  color: #ffd000;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Caixa de velocidade */
.vantagens-speed-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.vantagens-speed-box i {
  color: #ffd000;
}

.vantagens-speed-box span {
  color: white;
}

.vantagens-speed-time {
  color: #ffd000;
  margin-left: auto;
}

/* Ícones de plataforma */
.vantagens-platform-icons {
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
  flex-wrap: wrap;
  gap: 15px;
}

.vantagens-platform-icons i {
  color: #ffd000;
  font-size: 2rem;
}

/* Card que ocupa toda largura */
.vantagens-card-full {
  grid-column: span 3;
  background: linear-gradient(
    90deg,
    rgba(255, 208, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  border: 2px solid #ffd000;
}

/* Conteúdo do card full width */
.vantagens-full-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Ícone do card full width */
.vantagens-full-icon {
  background: #ffd000;
  width: 80px;
  height: 80px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-3deg);
}

.vantagens-full-icon i {
  color: #000;
  font-size: 3rem;
}

/* Badge extra */
.vantagens-badge-extra {
  display: inline-block;
  background: rgba(255, 208, 0, 0.3);
  color: #ffd000;
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Título do conteúdo full width */
.vantagens-full-content h3 {
  color: white;
  font-size: 2rem;
  margin: 10px 0;
}

/* Parágrafo do conteúdo full width */
.vantagens-full-content p {
  color: #ddd;
  font-size: 1.2rem;
  margin: 0;
}

/* Badge de espaço */
.vantagens-space-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 30px;
  border: 1px dashed #ffd000;
  color: #ffd000;
  font-weight: 700;
}

/* Rodapé da seção Vantagens */
.vantagens-footer {
  margin-top: 50px;
  text-align: center;
}

/* Caixa do rodapé */
.vantagens-footer-box {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 40px;
  border-radius: 60px;
  border: 1px solid rgba(255, 208, 0, 0.3);
}

.vantagens-footer-box p {
  margin: 0;
  color: #ffd000;
  font-size: 1.2rem;
  text-align: center;
}

.vantagens-footer-box p i {
  margin-right: 10px;
}

.vantagens-footer-box p a {
  color: white;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #ffd000;
  margin-left: 10px;
}

.vantagens-footer-box p a:hover {
  color: #ffd000;
}

/* Audience Box - caixa de público-alvo */
.estante-audience-box {
  background: rgba(255, 215, 0, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 40px;
  margin: 50px 0;
  border: 2px solid rgba(255, 208, 0, 0.5);
}

.estante-audience-box h3 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
}

.estante-audience-box h3 i {
  color: #ffd000;
  margin-right: 10px;
}

/* Grid de público-alvo */
.estante-audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Item individual de público-alvo */
.estante-audience-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.5);
  padding: 15px;
  border-radius: 15px;
}

.estante-audience-item i {
  color: #ffd000;
  font-size: 2rem;
}

.estante-audience-item span {
  font-weight: 600;
}

/* =================================================================== */
/* PASSOS SECTION - Seção de passos para assinatura                   */
/* =================================================================== */

/* Seção Passos com fundo escuro e borda amarela */
.passos-section {
  background: linear-gradient(145deg, #000000 0%, #1a1a1a 100%);
  border-radius: 50px;
  padding: 70px 60px;
  margin: 60px 0;
  box-shadow: 0 30px 60px rgba(255, 208, 0, 0.25);
  border: 3px solid #ffd000;
  position: relative;
  overflow: hidden;
}

/* Conteúdo da seção Passos */
.passos-content {
  position: relative;
  z-index: 2;
}

/* Cabeçalho da seção Passos */
.passos-header {
  text-align: center;
  margin-bottom: 50px;
}

/* Badge da seção Passos */
.passos-badge {
  background: #ffd000;
  color: #000;
  font-weight: 900;
  padding: 8px 35px;
  border-radius: 60px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 2px solid #fff;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
  display: inline-block;
  cursor: pointer;
}

/* Título da seção Passos */
.passos-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: white;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

/* Destaque colorido no título */
.passos-title-highlight {
  color: #ffd000;
  display: block;
  margin-top: 5px;
}

/* Subtítulo da seção Passos */
.passos-subtitle {
  font-size: 1.3rem;
  color: #ccc;
  max-width: 700px;
  margin: 20px auto 0;
}

/* Grid de cards de passos */
.passos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Card individual de passo */
.passos-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 40px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 208, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
}

/* Efeito hover no card de passo */
.passos-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: #ffd000;
  box-shadow: 0 20px 40px rgba(255, 208, 0, 0.2);
}

/* Número de fundo decorativo */
.passos-number-bg {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 208, 0, 0.05);
  line-height: 1;
}

/* Cabeçalho do card de passo */
.passos-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

/* Ícone/numero do passo */
.passos-number-icon {
  background: #ffd000;
  width: 70px;
  height: 70px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-3deg);
  box-shadow: 0 10px 0 #b38f00;
  color: #000;
  font-size: 2.5rem;
  font-weight: 900;
}

/* Título do passo */
.passos-card h3 {
  color: white;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 15px 0;
}

/* Descrição do passo */
.passos-card p {
  color: #ddd;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Check de verificação do passo */
.passos-check {
  background: rgba(255, 208, 0, 0.1);
  border-radius: 20px;
  padding: 15px;
  border-left: 3px solid #ffd000;
}

.passos-check i {
  color: #ffd000;
}

.passos-check span {
  color: #ffd000;
  font-weight: 600;
}

.passos-check p {
  color: #ccc;
  margin: 8px 0 0 0;
  font-size: 0.95rem;
}

/* Botões de ação do passo */
.passos-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.passos-buttons div {
  background: rgba(255, 208, 0, 0.15);
  padding: 10px 15px;
  border-radius: 30px;
  border: 1px solid rgba(255, 208, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.passos-buttons div i {
  color: #ffd000;
  font-size: 1rem;
}

.passos-buttons div span {
  color: #ffd000;
}

/* Tags do passo */
.passos-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.passos-tags span {
  background: rgba(255, 208, 0, 0.1);
  color: #ffd000;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Barra de progresso geral */
.passos-progress {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 60px;
  padding: 25px 30px;
  margin: 40px 0 30px;
  border: 1px solid rgba(255, 208, 0, 0.2);
}

/* Badge da barra de progresso */
.passos-progress-badge {
  background: #ffd000;
  padding: 12px 25px;
  border-radius: 40px;
  font-weight: 800;
  color: #000;
  display: inline-block;
}

.passos-progress-badge i {
  margin-right: 8px;
}

/* Barra de progresso visual */
.passos-progress-bar {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  min-width: 150px;
}

/* Preenchimento da barra de progresso */
.passos-progress-fill {
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #ffd000, #ffaa00);
  border-radius: 10px;
  position: relative;
}

/* Ponto decorativo na barra de progresso */
.passos-progress-dot {
  position: absolute;
  right: -5px;
  top: -8px;
  background: #ffd000;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 15px #ffd000;
}

/* Rótulo da barra de progresso */
.passos-progress-label {
  color: #ffd000;
  font-weight: 700;
}

/* CTA principal da seção Passos */
.passos-cta {
  text-align: center;
  margin-top: 30px;
}

.passos-cta a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #ffd000;
  color: #000;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.8rem;
  padding: 20px 50px;
  border-radius: 60px;
  border: 3px solid white;
  box-shadow: 0 15px 30px rgba(255, 208, 0, 0.3);
  transition: all 0.3s ease;
  flex-wrap: wrap;
  justify-content: center;
}

.passos-cta a:hover {
  transform: scale(1.05);
  background: white;
  color: #000;
  border-color: #ffd000;
}

.passos-cta p {
  color: #999;
  margin-top: 20px;
  font-size: 1rem;
}

.passos-cta p i {
  color: #ffd000;
  margin-right: 5px;
}

/* Botão CTA da Estante Digital */
.estante-cta-button {
  font-size: 2rem;
  padding: 25px 60px;
  background: #f24f00;
  color: #000;
  font-weight: 800;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(255, 208, 0, 0.5);
}

.estante-cta-button:hover {
  background: #ffd000;
  transform: scale(1.05);
}

/* Texto de destaque no CTA */
.estante-cta-highlight {
  font-size: 1.8rem;
  color: #ffd000;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Caixa de assinatura da Estante Digital */
.estante-assinatura-box {
  background: rgba(0, 0, 0, 0.05);
  padding: 50px;
  border-radius: 30px;
  margin: 40px 0;
  text-align: center;
}

.estante-assinatura-box h2 {
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 20px;
}

.estante-assinatura-box p {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 30px;
}

/* Botão de assinatura */
.estante-assinatura-button {
  font-size: 1.8rem;
  padding: 20px 50px;
  text-decoration: none;
  display: inline-block;
}

/* =================================================================== */
/* 12. NETMAX TV - ESPECÍFICOS                                        */
/* =================================================================== */

/* Grid de features da Netmax TV */
.tv-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 60px 0;
}

/* Card de feature da TV */
.tv-feature-card {
  background: rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 208, 0, 0.5);
  border-radius: 25px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

/* Efeito hover no card de feature da TV */
.tv-feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(255, 208, 0, 0.3);
  background: rgba(255, 215, 0, 0.3);
  border-color: #ffd000;
}

/* Ícone do card de feature da TV */
.tv-feature-card i {
  font-size: 4rem;
  color: #ffd000;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 208, 0, 0.5);
}

/* Título do card de feature da TV */
.tv-feature-card h3 {
  font-size: 1.5rem;
  color: #000;
  font-weight: 800;
  margin-bottom: 15px;
}

/* Descrição do card de feature da TV */
.tv-feature-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* Seção de dispositivos da TV */
.tv-devices {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 50px 0;
  background: rgba(0, 0, 0, 0.03);
  padding: 40px;
  border-radius: 50px;
}

/* Item de dispositivo da TV */
.tv-device-item {
  text-align: center;
  width: 150px;
}

/* Ícone do dispositivo da TV */
.tv-device-item i {
  font-size: 5rem;
  background: linear-gradient(135deg, #ffd000, #ffaa00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

.tv-device-item:hover i {
  transform: scale(1.15);
}

/* Nome do dispositivo da TV */
.tv-device-item span {
  display: block;
  margin-top: 15px;
  font-weight: 700;
  color: #000;
  font-size: 1.1rem;
}

/* Descrição do dispositivo da TV */
.tv-device-item small {
  display: block;
  color: #666;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Grid de canais da TV */
.tv-channels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin: 40px 0 60px;
}

/* Categoria de canal */
.tv-channel-category {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 208, 0, 0.3);
  border-radius: 20px;
  padding: 20px 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.tv-channel-category:hover {
  background: rgba(255, 208, 0, 0.2);
  transform: scale(1.05);
  border-color: #ffd000;
}

/* Ícone da categoria de canal */
.tv-channel-category i {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 10px;
}

/* Título da categoria de canal */
.tv-channel-category h4 {
  font-size: 1.2rem;
  color: #000;
  font-weight: 800;
  margin-bottom: 5px;
}

/* Descrição da categoria de canal */
.tv-channel-category p {
  font-size: 0.9rem;
  color: #333;
}

/* Badge de destaque da TV */
.tv-highlight-badge {
  background: linear-gradient(135deg, #ffd000, #ffaa00);
  color: #000;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.3rem;
  display: inline-block;
  margin: 30px 0;
  box-shadow: 0 10px 25px rgba(255, 208, 0, 0.3);
  border: 2px solid #fff;
}

/* Caixa de tecnologia da TV */
.tv-tech-box {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 30px;
  padding: 40px;
  margin: 50px 0;
  border-left: 5px solid #ffd000;
}

.tv-tech-box h3 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.tv-tech-box h3 i {
  color: #ffd000;
  font-size: 2.5rem;
}

.tv-tech-box p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}

/* Depoimento da TV */
.tv-testimonial {
  background: linear-gradient(135deg, #000, #222);
  color: white;
  padding: 50px;
  border-radius: 30px;
  margin: 60px 0;
  position: relative;
  border: 2px solid #ffd000;
}

/* Aspas decorativas do depoimento */
.tv-testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 100px;
  color: rgba(255, 208, 0, 0.2);
  font-family: serif;
}

/* Texto do depoimento */
.tv-testimonial p {
  font-size: 1.5rem;
  line-height: 1.6;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Autor do depoimento */
.tv-testimonial .autor {
  margin-top: 30px;
  color: #ffd000;
  font-weight: bold;
  text-align: center;
  font-size: 1.2rem;
}

/* FAQ da TV */
.tv-faq {
  max-width: 900px;
  margin: 60px auto;
  text-align: left;
}

/* Item do FAQ da TV */
.tv-faq-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-left: 5px solid #ffd000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tv-faq-item:hover {
  background: rgba(255, 208, 0, 0.1);
  transform: translateX(10px);
}

/* Pergunta do FAQ */
.tv-faq-item h4 {
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Ícone de expansão do FAQ */
.tv-faq-item h4 i {
  color: #ffd000;
  transition: transform 0.3s ease;
}

.tv-faq-item:hover h4 i {
  transform: rotate(90deg);
}

/* Resposta do FAQ - inicialmente oculta */
.tv-faq-item p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  display: none;
}

/* Exibe resposta quando ativo */
.tv-faq-item.active p {
  display: block !important;
}

.tv-faq-item.active i {
  transform: rotate(180deg);
}

/* CTA gigante da TV */
.tv-cta-giant {
  background: linear-gradient(135deg, #000, #ffd000);
  padding: 80px 40px;
  border-radius: 50px;
  margin: 60px 0;
  text-align: center;
  box-shadow: 0 20px 50px rgba(255, 208, 0, 0.4);
}

.tv-cta-giant h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 30px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.tv-cta-giant .btn-primary {
  font-size: 2rem;
  padding: 25px 60px;
  background: #000;
  color: #ffd000;
  border: 3px solid #ffd000;
  border-radius: 60px;
  box-shadow: 0 0 30px rgba(255, 208, 0, 0.5);
}

.tv-cta-giant .btn-primary:hover {
  background: #ffd000;
  color: #000;
  transform: scale(1.1);
}

/* =================================================================== */
/* 13. NEWS PERIÓDICOS - ESPECÍFICOS                                  */
/* =================================================================== */

/* Hero Section do News */
.news-hero-section {
  background: linear-gradient(135deg, #000, #ffd000, #ffea80);
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}

/* Elementos decorativos de fundo do News */
.news-bg-icon-top {
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 300px;
  opacity: 0.08;
  transform: rotate(15deg);
  color: #000;
  pointer-events: none;
  z-index: 1;
}

.news-bg-icon-bottom {
  position: absolute;
  bottom: -80px;
  left: -40px;
  font-size: 280px;
  opacity: 0.08;
  transform: rotate(-10deg);
  color: #000;
  pointer-events: none;
  z-index: 1;
}

.news-bg-icon-center {
  position: absolute;
  top: 50%;
  left: 10%;
  font-size: 120px;
  opacity: 0.05;
  transform: translateY(-50%);
  color: #000;
  pointer-events: none;
  z-index: 1;
}

/* Container do hero do News */
.news-hero-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Texto do hero do News */
.news-hero-text {
  text-align: left;
}

/* Badge do News */
.news-badge {
  display: inline-block;
  background: #000;
  color: #ffd000;
  font-weight: 800;
  padding: 8px 25px;
  border-radius: 40px;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
  border: 2px solid #ffd000;
}

/* Título principal do News */
.news-hero-title {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #000;
  text-shadow: 0 0 20px rgba(255, 208, 0, 0.3);
}

/* Destaque colorido no título do News */
.news-hero-title-highlight {
  color: #f24f00;
  font-size: 4.5rem;
  display: block;
  margin-top: 5px;
  text-shadow:
    0 0 30px #ffaa00,
    0 0 60px #ff5500;
  animation: firePulse 1.2s infinite ease-in-out;
}

/* Subtítulo do News */
.news-hero-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

/* Descrição do News */
.news-hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 30px;
  max-width: 600px;
  font-weight: 500;
}

/* Botões do hero do News */
.news-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.news-hero-buttons .btn-primary {
  font-size: 1.3rem;
  padding: 15px 35px;
  background: #f24f00;
  color: #000;
  font-weight: 800;
  border: none;
}

.news-hero-buttons .btn-secondary {
  font-size: 1.3rem;
  padding: 15px 35px;
  background: #000;
  color: #ffd000;
  border: 2px solid #ffd000;
  font-weight: 600;
}

/* Badges do hero do News */
.news-hero-badges {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.news-hero-badge {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #000;
  color: #000;
  font-weight: 700;
}

.news-hero-badge i {
  margin-right: 8px;
  color: #000;
}

.news-hero-badge-yellow {
  background: rgba(255, 208, 0, 0.2);
  backdrop-filter: blur(5px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #ffd000;
  color: #000;
  font-weight: 700;
}

.news-hero-badge-yellow i {
  margin-right: 8px;
  color: #000;
}

/* Ilustração do News (círculos animados) */
.news-hero-illustration {
  text-align: center;
  position: relative;
}

.news-circle-outer {
  width: 350px;
  height: 350px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed #000;
  animation: rotate 30s linear infinite;
}

.news-circle-middle {
  width: 280px;
  height: 280px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}

.news-circle-inner {
  width: 220px;
  height: 220px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  border: 2px solid #ffd000;
  box-shadow: 0 0 50px rgba(255, 208, 0, 0.3);
}

.news-circle-inner i {
  font-size: 5rem;
  color: #ffd000;
}

.news-circle-number {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.news-circle-label {
  color: #ffd000;
  font-size: 1.1rem;
}

.news-circle-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.news-circle-icons i {
  font-size: 1.5rem;
  color: #ffd000;
}

/* Cards flutuantes do News */
.news-float-card-top {
  position: absolute;
  top: 20%;
  right: 0;
  background: #000;
  padding: 15px 25px;
  border-radius: 20px;
  border: 2px solid #ffd000;
  transform: rotate(5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.news-float-card-top i {
  color: #ffd000;
  margin-right: 8px;
}

.news-float-card-top span {
  color: white;
}

.news-float-card-bottom {
  position: absolute;
  bottom: 20%;
  left: 0;
  background: #000;
  padding: 15px 25px;
  border-radius: 20px;
  border: 2px solid #ffd000;
  transform: rotate(-5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.news-float-card-bottom i {
  color: #ffd000;
  margin-right: 8px;
}

.news-float-card-bottom span {
  color: white;
}

/* Caixa de informação do News */
.news-info-box {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  border-radius: 40px;
  padding: 60px 50px;
  margin: 40px 0;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 208, 0, 0.3);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 30px;
}

/* Decoração de fundo da caixa de informação */
.news-info-bg-deco {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 200px;
  opacity: 0.03;
  transform: rotate(10deg);
  color: #ffd000;
  pointer-events: none;
}

/* Cabeçalho da caixa de informação */
.news-info-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Ícone da caixa de informação */
.news-info-icon {
  background: #000;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 0 #ffd000;
}

.news-info-icon i {
  color: #ffd000;
  font-size: 3rem;
}

/* Título da caixa de informação */
.news-info-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #000;
  margin: 0;
}

.news-info-title .highlight {
  color: #ffd000;
}

/* Texto da caixa de informação */
.news-info-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

.news-info-text .text-dark {
  color: #000;
}

/* Subtexto da caixa de informação */
.news-info-subtext {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
}

/* Seção de parceiros do News */
.news-partner-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 40px 0;
  background: rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: 30px 50px;
  border-radius: 60px;
  border: 2px solid rgba(255, 208, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-partner-showcase img {
  width: 120px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.news-partner-showcase img:hover {
  transform: scale(1.1);
}

.news-partner-showcase span {
  font-size: 3rem;
  color: #ffd000;
  font-weight: 300;
  text-shadow: 0 0 10px rgba(255, 208, 0, 0.5);
}

/* Grid de features do News */
.news-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 60px 0;
}

/* Card de feature do News */
.news-feature-card {
  background: rgba(255, 215, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 208, 0, 0.5);
  border-radius: 25px;
  padding: 35px 25px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.news-feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 208, 0, 0.3);
  background: rgba(255, 215, 0, 0.25);
  border-color: #ffd000;
}

/* Ícone do card de feature do News */
.news-feature-icon {
  background: #000;
  min-width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffd000;
  box-shadow: 0 0 20px rgba(255, 208, 0, 0.3);
}

.news-feature-icon i {
  font-size: 2.5rem;
  color: #ffd000;
}

/* Conteúdo do card de feature do News */
.news-feature-content h3 {
  font-size: 1.6rem;
  color: #000;
  font-weight: 800;
  margin-bottom: 10px;
}

.news-feature-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Seção de dispositivos do News */
.news-devices {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin: 50px 0;
  padding: 40px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 50px;
}

.news-device-item {
  text-align: center;
  width: 140px;
}

.news-device-item i {
  font-size: 4rem;
  background: linear-gradient(135deg, #000, #1b4f6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

.news-device-item:hover i {
  transform: translateY(-10px);
}

.news-device-item span {
  display: block;
  margin-top: 15px;
  font-weight: 700;
  color: #000;
}

/* CTA Box do News */
.news-cta-box {
  background: linear-gradient(135deg, #000, #1a1a1a);
  border-radius: 40px;
  padding: 60px 40px;
  margin: 60px 0;
  border: 3px solid #ffd000;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Elementos decorativos da CTA box do News */
.news-cta-deco-left,
.news-cta-deco-right {
  position: absolute;
  font-size: 150px;
  opacity: 0.1;
  color: #ffd000;
  pointer-events: none;
}

.news-cta-deco-left {
  top: -30px;
  left: -30px;
  transform: rotate(-20deg);
}

.news-cta-deco-right {
  bottom: -30px;
  right: -30px;
  transform: rotate(15deg);
}

/* Título da CTA box do News */
.news-cta-box h2 {
  font-size: 2.8rem;
  color: #ffd000;
  margin-bottom: 30px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(255, 208, 0, 0.3);
  position: relative;
  z-index: 2;
}

/* Parágrafo da CTA box do News */
.news-cta-box p {
  font-size: 1.4rem;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.news-cta-box .text-yellow {
  color: #ffd000;
}

/* Texto de destaque na CTA box */
.news-cta-highlight {
  font-size: 1.8rem;
  color: #ffd000;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

/* Botão principal da CTA box do News */
.news-cta-box .btn-primary {
  font-size: 2rem;
  padding: 25px 60px;
  background: #f24f00;
  color: #000;
  font-weight: 800;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(255, 208, 0, 0.5);
}

.news-cta-box .btn-primary:hover {
  background: #ffd000;
  transform: scale(1.05);
}

/* Responsividade NEWS Periódicos */
@media (max-width: 1200px) {
  /* Muda layout para coluna única */
  .news-hero-container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center !important;
  }

  .news-hero-text {
    text-align: center !important;
  }

  .news-hero-description {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .news-hero-buttons {
    justify-content: center !important;
  }

  .news-hero-badges {
    justify-content: center !important;
  }

  /* Reduz tamanho dos círculos */
  .news-circle-outer {
    width: 300px !important;
    height: 300px !important;
  }

  .news-circle-middle {
    width: 240px !important;
    height: 240px !important;
  }

  .news-circle-inner {
    width: 190px !important;
    height: 190px !important;
  }

  /* Features em duas colunas */
  .news-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
  }
}

@media (max-width: 1024px) {
  /* Ajustes para tablet */
  .news-hero-section {
    padding: 60px 20px !important;
  }

  .news-hero-title {
    font-size: 3rem !important;
  }

  .news-hero-title-highlight {
    font-size: 3.2rem !important;
  }

  .news-hero-subtitle {
    font-size: 1.6rem !important;
  }

  .news-hero-description {
    font-size: 1.1rem !important;
  }

  .news-hero-buttons .btn-primary,
  .news-hero-buttons .btn-secondary {
    font-size: 1.1rem !important;
    padding: 12px 28px !important;
  }

  /* Círculos menores */
  .news-circle-outer {
    width: 280px !important;
    height: 280px !important;
  }

  .news-circle-middle {
    width: 220px !important;
    height: 220px !important;
  }

  .news-circle-inner {
    width: 180px !important;
    height: 180px !important;
  }

  .news-circle-inner i {
    font-size: 3.5rem !important;
  }

  .news-circle-number {
    font-size: 1.2rem !important;
  }

  .news-circle-label {
    font-size: 0.9rem !important;
  }

  /* Ajusta cards flutuantes */
  .news-float-card-top,
  .news-float-card-bottom {
    top: 5% !important;
    bottom: 5% !important;
    padding: 8px 18px !important;
    font-size: 0.85rem !important;
    transform: rotate(0deg) !important;
  }

  /* Ajusta caixa de informação */
  .news-info-box {
    padding: 40px 30px !important;
    margin: 30px 0 !important;
  }

  .news-info-title {
    font-size: 2.2rem !important;
  }

  .news-info-text {
    font-size: 1.1rem !important;
  }

  /* Ajusta ecossistema */
  .ecosystem {
    padding: 60px 20px !important;
  }

  .ecosystem-title {
    font-size: 2rem !important;
    margin: 40px auto 25px !important;
  }
}

@media (max-width: 768px) {
  /* Ajustes para mobile */
  .news-hero-section {
    padding: 50px 15px !important;
  }

  .news-hero-title {
    font-size: 2.2rem !important;
  }

  .news-hero-title-highlight {
    font-size: 2.4rem !important;
  }

  .news-hero-subtitle {
    font-size: 1.3rem !important;
  }

  .news-hero-description {
    font-size: 1rem !important;
  }

  .news-badge {
    font-size: 0.85rem !important;
    padding: 6px 18px !important;
    margin-bottom: 20px !important;
  }

  .news-hero-buttons .btn-primary,
  .news-hero-buttons .btn-secondary {
    font-size: 1rem !important;
    padding: 10px 22px !important;
  }

  /* Círculos ainda menores */
  .news-circle-outer {
    width: 240px !important;
    height: 240px !important;
  }

  .news-circle-middle {
    width: 190px !important;
    height: 190px !important;
  }

  .news-circle-inner {
    width: 150px !important;
    height: 150px !important;
  }

  .news-circle-inner i {
    font-size: 2.8rem !important;
  }

  .news-circle-number {
    font-size: 1rem !important;
  }

  .news-circle-label {
    font-size: 0.85rem !important;
  }

  .news-circle-icons i {
    font-size: 1.2rem !important;
  }

  /* Esconde cards flutuantes no mobile */
  .news-float-card-top,
  .news-float-card-bottom {
    display: none !important;
  }

  /* Ajusta caixa de informação */
  .news-info-box {
    padding: 30px 20px !important;
    margin: 20px 0 !important;
  }

  .news-info-header {
    flex-direction: column !important;
    text-align: center !important;
    margin-bottom: 25px !important;
  }

  .news-info-title {
    font-size: 1.8rem !important;
    text-align: center !important;
  }

  .news-info-text {
    font-size: 1rem !important;
    text-align: center !important;
  }

  .news-info-subtext {
    text-align: center !important;
  }

  /* Ajusta ecossistema */
  .ecosystem {
    padding: 40px 15px !important;
  }

  .ecosystem-title {
    font-size: 1.6rem !important;
    margin: 30px auto 20px !important;
    padding: 20px 15px !important;
  }

  /* Features em coluna única */
  .news-features-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .news-feature-card {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    padding: 25px 20px !important;
  }

  .news-feature-icon {
    margin-bottom: 15px !important;
  }

  /* Ajusta dispositivos */
  .news-devices {
    gap: 25px !important;
    padding: 25px 15px !important;
  }

  .news-device-item {
    width: 100px !important;
  }

  .news-device-item i {
    font-size: 3rem !important;
  }

  .news-device-item span {
    font-size: 0.9rem !important;
  }

  /* Ajusta CTA box */
  .news-cta-box {
    padding: 40px 20px !important;
    margin: 40px 0 !important;
  }

  .news-cta-box h2 {
    font-size: 1.8rem !important;
  }

  .news-cta-box p {
    font-size: 1.1rem !important;
  }

  .news-cta-highlight {
    font-size: 1.4rem !important;
  }

  .news-cta-box .btn-primary {
    font-size: 1.3rem !important;
    padding: 15px 30px !important;
  }

  /* Ajusta caixa de assinatura */
  .estante-assinatura-box {
    padding: 30px 20px !important;
    margin: 30px 0 !important;
  }

  .estante-assinatura-box h2 {
    font-size: 1.6rem !important;
  }

  .estante-assinatura-box p {
    font-size: 1.2rem !important;
  }

  .estante-assinatura-button {
    font-size: 1.3rem !important;
    padding: 15px 35px !important;
  }

  /* Ajusta parceiros */
  .news-partner-showcase {
    flex-direction: column !important;
    gap: 20px !important;
    padding: 25px 20px !important;
  }

  .news-partner-showcase span {
    display: none !important;
  }

  .news-partner-showcase img {
    width: 100px !important;
  }
}

@media (max-width: 480px) {
  /* Ajustes para mobile pequeno */
  .news-hero-section {
    padding: 40px 12px !important;
  }

  .news-hero-title {
    font-size: 1.8rem !important;
  }

  .news-hero-title-highlight {
    font-size: 2rem !important;
  }

  .news-hero-subtitle {
    font-size: 1.2rem !important;
  }

  .news-hero-buttons .btn-primary,
  .news-hero-buttons .btn-secondary {
    font-size: 0.9rem !important;
    padding: 8px 18px !important;
  }

  .news-hero-badges > div {
    padding: 6px 12px !important;
  }

  .news-hero-badges span {
    font-size: 0.8rem !important;
  }

  /* Círculos ainda menores */
  .news-circle-outer {
    width: 200px !important;
    height: 200px !important;
  }

  .news-circle-middle {
    width: 160px !important;
    height: 160px !important;
  }

  .news-circle-inner {
    width: 130px !important;
    height: 130px !important;
  }

  .news-circle-inner i {
    font-size: 2.2rem !important;
  }

  /* Ajusta títulos */
  .news-info-title {
    font-size: 1.5rem !important;
  }

  .ecosystem-title {
    font-size: 1.4rem !important;
  }

  /* Ajusta CTA box */
  .news-cta-box h2 {
    font-size: 1.5rem !important;
  }

  .news-cta-box p {
    font-size: 1rem !important;
  }

  .news-cta-highlight {
    font-size: 1.2rem !important;
  }

  .news-cta-box .btn-primary {
    font-size: 1.1rem !important;
    padding: 12px 25px !important;
  }

  /* Ajusta assinatura */
  .estante-assinatura-box h2 {
    font-size: 1.4rem !important;
  }

  .estante-assinatura-box p {
    font-size: 1rem !important;
  }

  .estante-assinatura-button {
    font-size: 1.1rem !important;
    padding: 12px 25px !important;
  }

  /* Ajusta dispositivos */
  .news-device-item {
    width: 85px !important;
  }

  .news-device-item i {
    font-size: 2.5rem !important;
  }

  .news-device-item span {
    font-size: 0.8rem !important;
  }
}

/* =================================================================== */
/* 14. NOSSO PROPÓSITO - ESPECÍFICOS                                  */
/* =================================================================== */

/* Container da página "Nosso Propósito" */
.proposito-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* Imagem decorativa dos irmãos fundadores */
.irmaos-image {
  width: 100%;
  max-width: 900px;
  height: 400px;
  margin: 30px auto;
  border-radius: 20px;
  background: linear-gradient(135deg, #000, #ffd000);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid #ffd000;
}

/* Efeito de brilho rotativo na imagem */
.irmaos-image::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 208, 0, 0.2) 0%,
    transparent 50%
  );
  animation: rotate 20s linear infinite;
}

/* Texto sobreposto na imagem */
.irmaos-image .overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  text-shadow:
    0 0 20px #ffd000,
    0 0 40px #000;
  z-index: 3;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
}

/* Destaque de conteúdo com efeito glassmorphism */
.proposito-highlight {
  background: rgba(255, 215, 0, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 40px;
  margin: 40px 0;
  border: 2px solid rgba(255, 208, 0, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.proposito-highlight p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #000;
  font-weight: 500;
}

.proposito-highlight p:first-child {
  font-size: 1.8rem;
  font-weight: 800;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(255, 208, 0, 0.5);
}

/* Grid de diferenciais */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 50px 0;
}

/* Card de diferencial */
.diferencial-card {
  background: rgba(255, 215, 0, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  border: 2px solid rgba(255, 208, 0, 0.5) !important;
  border-left: 5px solid #ffd000 !important;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.diferencial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 208, 0, 0.3);
  background: rgba(255, 215, 0, 0.3) !important;
}

/* Título do diferencial */
.diferencial-card h3 {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.diferencial-card h3 i {
  color: #ffd000;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.diferencial-card:hover h3 i {
  transform: scale(1.1);
}

/* Descrição do diferencial */
.diferencial-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

/* Caixa de missão com aspas decorativas */
.missao-box {
  background: linear-gradient(135deg, #000, #1a1a1a);
  color: white;
  padding: 50px;
  border-radius: 30px;
  margin: 60px 0;
  text-align: center;
  border: 2px solid #ffd000;
  position: relative;
  overflow: hidden;
}

/* Aspas decorativas */
.missao-box::before,
.missao-box::after {
  content: '"';
  position: absolute;
  font-size: 200px;
  color: rgba(255, 208, 0, 0.1);
  font-family: serif;
}

.missao-box::before {
  top: -50px;
  left: 20px;
}

.missao-box::after {
  bottom: -100px;
  right: 20px;
}

/* Texto da missão */
.missao-box p {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Autor da citação */
.missao-box .autor {
  margin-top: 30px;
  color: #ffd000;
  font-size: 1.2rem;
  font-style: italic;
}

/* Rodapé da página "Nosso Propósito" */
.rodape-proposito {
  background: linear-gradient(135deg, #000, #222);
  color: white;
  padding: 30px;
  border-radius: 20px;
  margin: 40px 0 20px;
  text-align: center;
  border: 1px solid #ffd000;
}

.rodape-proposito p {
  margin: 10px 0;
  font-size: 1.2rem;
}

.rodape-proposito p:first-child {
  color: #ffd000;
  font-weight: bold;
  font-size: 1.4rem;
}

/* Responsividade NOSSO PROPÓSITO */
@media (max-width: 1024px) {
  .proposito-container {
    padding: 30px 20px;
  }

  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
  }

  .diferencial-card {
    padding: 25px !important;
  }

  .diferencial-card h3 {
    font-size: 1.5rem !important;
  }

  .proposito-highlight p:first-child {
    font-size: 1.5rem !important;
  }

  .proposito-highlight p {
    font-size: 1.15rem !important;
  }

  .missao-box p {
    font-size: 1.5rem !important;
  }

  .irmaos-image {
    height: 350px !important;
  }
}

@media (max-width: 900px) {
  .diferenciais-grid {
    gap: 20px !important;
  }

  .diferencial-card {
    padding: 22px !important;
  }

  .diferencial-card h3 {
    font-size: 1.4rem !important;
  }

  .diferencial-card h3 i {
    font-size: 1.6rem !important;
  }

  .diferencial-card p {
    font-size: 1rem !important;
  }
}

@media (max-width: 768px) {
  .proposito-container {
    padding: 20px 16px !important;
  }

  .irmaos-image {
    height: 280px !important;
    margin: 20px auto !important;
  }

  .irmaos-image .overlay-text {
    font-size: 1.1rem !important;
    padding: 12px !important;
  }

  .irmaos-image .overlay-text i {
    font-size: 2.5rem !important;
    margin-bottom: 8px !important;
  }

  .proposito-highlight {
    padding: 25px 20px !important;
    margin: 25px 0 !important;
  }

  .proposito-highlight p:first-child {
    font-size: 1.25rem !important;
    margin-bottom: 18px !important;
  }

  .proposito-highlight p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  .ecosystem-title {
    font-size: 1.6rem !important;
    margin: 40px auto 25px auto !important;
    padding: 25px 20px !important;
  }

  .ecosystem-title .price-fire {
    font-size: 1.8rem !important;
    margin-top: 12px !important;
  }

  /* Diferenciais em coluna única no mobile */
  .diferenciais-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin: 25px 0 !important;
  }

  .diferencial-card {
    padding: 22px !important;
  }

  .diferencial-card h3 {
    font-size: 1.35rem !important;
  }

  .diferencial-card h3 i {
    font-size: 1.6rem !important;
  }

  .diferencial-card p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }

  /* Ajusta caixa de missão */
  .missao-box {
    padding: 35px 20px !important;
    margin: 35px 0 !important;
  }

  .missao-box p {
    font-size: 1.25rem !important;
    line-height: 1.5 !important;
  }

  .missao-box .autor {
    font-size: 1rem !important;
    margin-top: 20px !important;
  }

  /* Ajusta rodapé */
  .rodape-proposito {
    padding: 18px !important;
  }

  .rodape-proposito p {
    font-size: 0.95rem !important;
  }

  .rodape-proposito p:first-child {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 600px) {
  .proposito-container {
    padding: 15px 12px !important;
  }

  .irmaos-image {
    height: 240px !important;
  }

  .irmaos-image .overlay-text {
    font-size: 0.95rem !important;
    padding: 10px !important;
  }

  .irmaos-image .overlay-text i {
    font-size: 2rem !important;
  }

  .proposito-highlight {
    padding: 20px 15px !important;
  }

  .proposito-highlight p:first-child {
    font-size: 1.15rem !important;
  }

  .ecosystem-title {
    font-size: 1.4rem !important;
    padding: 20px 15px !important;
  }

  .ecosystem-title .price-fire {
    font-size: 1.6rem !important;
  }

  .diferencial-card {
    padding: 18px !important;
  }

  .diferencial-card h3 {
    font-size: 1.25rem !important;
  }

  .diferencial-card h3 i {
    font-size: 1.4rem !important;
  }

  .missao-box {
    padding: 28px 18px !important;
  }

  .missao-box p {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 480px) {
  .irmaos-image {
    height: 200px !important;
    border-radius: 16px !important;
  }

  .irmaos-image .overlay-text {
    font-size: 0.85rem !important;
    padding: 8px !important;
  }

  .irmaos-image .overlay-text i {
    font-size: 1.8rem !important;
    margin-bottom: 5px !important;
  }

  .proposito-highlight {
    padding: 18px 12px !important;
    border-radius: 20px !important;
  }

  .proposito-highlight p:first-child {
    font-size: 1.05rem !important;
  }

  .proposito-highlight p {
    font-size: 0.9rem !important;
  }

  .ecosystem-title {
    font-size: 1.2rem !important;
    padding: 18px 12px !important;
  }

  .ecosystem-title .price-fire {
    font-size: 1.4rem !important;
  }

  .diferencial-card {
    padding: 16px !important;
    border-radius: 16px !important;
  }

  .diferencial-card h3 {
    font-size: 1.15rem !important;
    margin-bottom: 10px !important;
  }

  .diferencial-card h3 i {
    font-size: 1.3rem !important;
  }

  .diferencial-card p {
    font-size: 0.85rem !important;
  }

  .missao-box {
    padding: 22px 15px !important;
    border-radius: 20px !important;
  }

  .missao-box p {
    font-size: 1rem !important;
  }

  .missao-box .autor {
    font-size: 0.9rem !important;
  }

  .rodape-proposito {
    padding: 15px !important;
    border-radius: 16px !important;
  }

  .rodape-proposito p {
    font-size: 0.85rem !important;
  }

  .rodape-proposito p:first-child {
    font-size: 1rem !important;
  }
}

@media (max-width: 375px) {
  .irmaos-image {
    height: 180px !important;
  }

  .irmaos-image .overlay-text {
    font-size: 0.75rem !important;
  }

  .irmaos-image .overlay-text i {
    font-size: 1.5rem !important;
  }

  .proposito-highlight p:first-child {
    font-size: 0.95rem !important;
  }

  .proposito-highlight p {
    font-size: 0.85rem !important;
  }

  .diferencial-card h3 {
    font-size: 1rem !important;
  }

  .diferencial-card h3 i {
    font-size: 1.2rem !important;
  }

  .diferencial-card p {
    font-size: 0.8rem !important;
  }

  .missao-box p {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 340px) {
  .diferencial-card h3 {
    flex-direction: column;
    text-align: center;
    gap: 8px !important;
  }

  .diferencial-card h3 i {
    margin-bottom: 5px;
  }

  .proposito-highlight p:first-child {
    text-align: center;
  }
}

/* =================================================================== */
/* 15. FOOTER (GLOBAL)                                                */
/* =================================================================== */

/* Rodapé global do site */
.footer {
  background: #000;
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-size: 1.1em;
  border-top: 4px solid #ffd000;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.8);
}

/* Conteúdo do rodapé - centralizado */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Texto do rodapé */
.footer-text p {
  margin: 5px 0;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.footer-text p:first-child {
  font-weight: 600;
  color: #ffd000;
}

/* Links de redes sociais */
.footer-social {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
}

.footer-social a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 10px 15px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  color: #ffd000;
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

/* Ícones das redes sociais */
.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.footer-social a:hover img {
  filter: brightness(0) invert(0.8) sepia(1) hue-rotate(360deg) saturate(5);
}

/* Copyright do rodapé */
.footer-copyright {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 208, 0, 0.3);
  width: 100%;
  max-width: 800px;
}

.footer-copyright p {
  margin: 5px 0;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
}

/* =================================================================== */
/* 16. MODAL NETMAX TV                                                */
/* =================================================================== */

/* Overlay do modal - inicialmente oculto */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Estado visível do overlay */
.modal-overlay.show {
  opacity: 1;
}

/* Container do modal */
.modal-container {
  width: 95%;
  max-width: 1100px;
  margin: 30px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

/* Escala normal quando visível */
.modal-overlay.show .modal-container {
  transform: scale(1);
}

/* Card do modal */
.modal-card {
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  border-radius: 50px;
  box-shadow:
    0 30px 70px rgba(255, 208, 0, 0.35),
    0 10px 30px rgba(0, 0, 0, 0.5);
  border: 3px solid #ffd000;
  overflow: hidden;
  position: relative;
}

/* Botão de fechar do modal */
.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: #000;
  color: #ffd000;
  border: 2px solid #ffd000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 0 15px rgba(255, 208, 0, 0.5);
}

.modal-close-btn:hover {
  background: #ffd000;
  color: #000;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 25px rgba(255, 208, 0, 0.8);
}

/* Cabeçalho do modal */
.modal-header {
  text-align: center;
  padding: 40px 40px 20px 40px;
  background: linear-gradient(135deg, #000, #1a1a1a);
  border-bottom: 3px solid #ffd000;
}

/* Ícone do modal */
.modal-icon-wrapper {
  background: #ffd000;
  width: 90px;
  height: 90px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 15px 25px rgba(255, 208, 0, 0.4);
  border: 3px solid #fff;
}

.modal-icon-wrapper i {
  font-size: 4rem;
  color: #000;
}

/* Título do modal */
.modal-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Subtítulo do modal */
.modal-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  font-weight: 400;
}

/* Corpo do modal */
.modal-body {
  padding: 40px;
}

/* Card de acesso do modal */
.access-card {
  background: linear-gradient(145deg, #000, #111);
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 35px;
  border: 2px solid #ffd000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Cabeçalho do card de acesso */
.access-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px dashed #ffd000;
}

.access-card-header i {
  font-size: 2rem;
  color: #ffd000;
}

.access-card-header span {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffd000;
  letter-spacing: 1px;
}

/* Item de acesso individual */
.access-item {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 208, 0, 0.3);
}

/* Rótulo do acesso */
.access-label {
  font-weight: 700;
  color: #ffd000;
  min-width: 130px;
  font-size: 1.1rem;
}

/* Valor do acesso */
.access-value {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Destaque no acesso */
.access-highlight {
  background: #ffd000;
  color: #000;
  font-weight: 800;
  padding: 5px 15px;
  border-radius: 40px;
}

/* Rodapé do card de acesso */
.access-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 15px 20px;
  background: rgba(255, 208, 0, 0.15);
  border-radius: 60px;
  border: 1px dashed #ffd000;
}

.access-card-footer i {
  color: #ffd000;
  font-size: 1.2rem;
}

.access-card-footer span {
  color: #fff;
  font-size: 0.95rem;
}

/* Grid de ações do modal */
.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

/* Card de ação individual */
.action-card {
  background: linear-gradient(145deg, #f0f0f0, #fff);
  border-radius: 30px;
  padding: 25px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* Efeito de brilho ao passar o mouse */
.action-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 208, 0, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.action-card:hover::before {
  left: 100%;
}

.action-card:hover {
  transform: translateY(-5px);
  border-color: #ffd000;
  box-shadow: 0 15px 30px rgba(255, 208, 0, 0.25);
}

/* Estilos específicos para cada tipo de ação */
.action-card-watch {
  border-left: 5px solid #ffd000;
}

.action-card-whatsapp {
  border-left: 5px solid #25d366;
}

/* Ícone da ação */
.action-icon {
  min-width: 60px;
  height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.action-card-watch .action-icon i {
  color: #ffd000;
}

.action-card-whatsapp .action-icon i {
  color: #25d366;
}

/* Conteúdo da ação */
.action-content {
  flex: 1;
}

.action-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 5px;
}

.action-content p {
  font-size: 0.9rem;
  color: #555;
}

/* Seta da ação */
.action-arrow i {
  color: #ccc;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.action-card:hover .action-arrow i {
  transform: translateX(5px);
  color: #ffd000;
}

/* Lista de instruções */
.instruction-list {
  background: #f0f0f0;
  border-radius: 30px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Item de instrução */
.instruction-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.instruction-item:last-child {
  border-bottom: none;
}

.instruction-item i {
  font-size: 1.3rem;
  color: #28a745;
}

.instruction-item span {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.6;
  font-weight: 500;
}

.instruction-item strong {
  color: #000;
  font-weight: 800;
}

/* Caixa de dica */
.tip-box {
  background: #ffd000;
  border-radius: 60px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 0 #b39500;
  border: 2px solid #000;
}

.tip-box i {
  font-size: 1.8rem;
  color: #000;
}

.tip-box p {
  font-size: 1rem;
  color: #000;
  font-weight: 500;
  flex: 1;
}

/* Link da dica */
.tip-link {
  background: #000;
  color: #ffd000;
  padding: 5px 15px;
  border-radius: 40px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Rodapé do modal */
.modal-footer {
  background: linear-gradient(135deg, #000, #111);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: 3px solid #ffd000;
  color: white;
}

.modal-footer i {
  color: #ffd000;
  font-size: 1.2rem;
}

.modal-footer span {
  font-size: 1rem;
  font-weight: 500;
}

/* Modal de Ativação específico */
#tvAtivacaoModal .modal-container {
  transform: scale(0.8);
  transition: transform 0.3s ease;
  max-width: 950px;
  margin: 20px;
}

#tvAtivacaoModal.show .modal-container {
  transform: scale(0.8);
}

/* Card de destaque no modal */
.highlight-card {
  background: linear-gradient(145deg, #ffd000, #ffaa00);
  border: 2px solid #000;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 25px;
  text-align: center;
}

.highlight-card i {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 10px;
}

.highlight-card p {
  margin: 0;
}

.highlight-card p:first-of-type {
  color: #000;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.highlight-card p:last-of-type {
  color: #333;
  font-size: 0.95rem;
}

/* =================================================================== */
/* 17. PROMO COUNTER                                                  */
/* =================================================================== */

/* Contador de promoção */
.promo-counter {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #ffd000, #ffa500);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(255, 208, 0, 0.3);
  animation: pulse-glow 2s infinite;
}

.promo-counter h3 {
  color: #000;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Timer do contador */
.counter-timer {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Unidade individual do timer */
.counter-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 25px;
  border-radius: 15px;
  min-width: 100px;
}

.counter-unit span:first-child {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd000;
  line-height: 1;
}

.counter-unit span:last-child {
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animação de brilho pulsante */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 10px 30px rgba(255, 208, 0, 0.3);
  }
  50% {
    box-shadow: 0 10px 50px rgba(255, 208, 0, 0.6);
  }
  100% {
    box-shadow: 0 10px 30px rgba(255, 208, 0, 0.3);
  }
}

/* =================================================================== */
/* 18. PÁGINA 404                                                    */
/* =================================================================== */

/* Container da página 404 */
.container-404 {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #fff9e6, #ffffff);
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid #ffd000;
}

/* Logo na página 404 */
.logo-404 {
  width: 200px;
  margin-bottom: 30px;
}

/* Título 404 com efeito de fogo */
.titulo-404 {
  font-size: 5rem;
  color: #f24f00;
  text-shadow: 0 0 20px #ffaa00;
  margin-bottom: 20px;
  animation: firePulse 1.2s infinite ease-in-out;
}

/* Mensagem da página 404 */
.mensagem-404 {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Botão principal 404 */
.btn-404 {
  background: #f24f00;
  color: #000;
  border: none;
  padding: 15px 40px;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px;
  box-shadow: 0 5px 15px rgba(255, 208, 0, 0.3);
}

.btn-404:hover {
  background: #ffd000;
  transform: scale(1.05);
}

/* Botão secundário 404 */
.btn2-404 {
  background: #000;
  color: #ffd000;
  border: 2px solid #ffd000;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px;
}

.btn2-404:hover {
  background: #ffd000;
  color: #000;
}

/* Piada/troca de palavras na página 404 */
.piadinha-404 {
  font-size: 1.1rem;
  color: #666;
  margin: 30px 0 20px;
  font-style: italic;
}

/* Resultado do trocadilho */
.resultado-404 {
  font-size: 1.3rem;
  color: #f24f00;
  font-weight: bold;
  margin-top: 20px;
  min-height: 40px;
}

/* =================================================================== */
/* 19. MEDIA QUERIES (RESPONSIVIDADE GERAL)                           */
/* =================================================================== */

@media (max-width: 1200px) {
  /* Ajustes para telas grandes (tablet landscape) */
  .assinante-container {
    top: 40px;
    right: 50px;
  }
  .assinante-icon {
    width: 85px;
    height: 85px;
  }
  .assinante-icon i {
    font-size: 48px;
  }
  .assinante-text {
    font-size: 16px;
  }

  .hero-grid-container {
    gap: 40px;
  }
  .hero-main-title {
    font-size: 2.8rem;
  }
  .hero-main-title-highlight {
    font-size: 3.2rem;
  }
  .hero-subtitle {
    font-size: 1.4rem;
  }
  .hero-description {
    font-size: 1rem;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  /* Ajustes para tablet */
  .assinante-container {
    top: 35px;
    right: 40px;
  }
  .assinante-icon {
    width: 80px;
    height: 80px;
  }
  .assinante-icon i {
    font-size: 44px;
  }
  .assinante-text {
    font-size: 15px;
  }

  /* Hero em coluna única */
  .hero-grid-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
  }
  .hero-text-column {
    text-align: center !important;
  }
  .hero-description {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-buttons {
    justify-content: center !important;
  }
  .hero-incluso-badges {
    justify-content: center !important;
  }

  /* Ajusta cards flutuantes */
  .hero-float-card-right,
  .hero-float-card-left {
    position: absolute !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }
  .hero-float-card-right {
    top: 10% !important;
    right: 5% !important;
  }
  .hero-float-card-left {
    bottom: 10% !important;
    left: 5% !important;
  }

  /* Grids responsivos */
  .magia-grid-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .vantagens-grid {
    grid-template-columns: 1fr !important;
  }
  .vantagens-card-full {
    grid-column: span 1 !important;
  }
  .passos-grid {
    grid-template-columns: 1fr !important;
  }
  .estante-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .estante-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tv-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tv-channels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .jornalz-features-grid,
  .news-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Ajustes para mobile */
  .logo-netmax-big {
    height: auto;
    max-height: 120px;
    width: auto;
  }
  .logo-area-highlight {
    padding: 30px 0 20px;
  }
  .slogan-top {
    font-size: 1.2rem;
    margin-top: 10px;
  }

  /* Central do Assinante se torna estática no mobile */
  .assinante-container {
    position: static;
    display: flex;
    justify-content: center;
    margin: 20px 0 10px;
  }
  .assinante-link {
    flex-direction: row;
    gap: 15px;
    background: rgba(255, 208, 0, 0.2);
    padding: 12px 25px;
    border-radius: 60px;
    border: 1px solid rgba(255, 208, 0, 0.5);
  }
  .assinante-icon {
    width: 60px;
    height: 60px;
    animation: none;
  }
  .assinante-icon i {
    font-size: 36px;
  }
  .assinante-text {
    margin-top: 0;
    font-size: 16px;
  }

  /* WhatsApp menor no mobile */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  .whatsapp-float i {
    font-size: 32px;
  }
  .whatsapp-tooltip {
    display: none;
  }

  /* Hero com padding reduzido */
  .hero {
    padding: 60px 20px;
  }
  .hero-boosted {
    padding: 60px 20px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-main-title {
    font-size: 2.2rem !important;
  }
  .hero-main-title-highlight {
    font-size: 2.5rem !important;
    display: inline-block !important;
  }
  .hero-subtitle {
    font-size: 1.3rem !important;
  }
  .hero-description {
    font-size: 1rem !important;
  }
  .hero-btn-acessar,
  .hero-btn-saiba {
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
  }
  .hero-float-card-right,
  .hero-float-card-left {
    display: none;
  }
  .subtitle-premium {
    font-size: 1.4rem;
    padding: 20px;
  }

  /* Seções com padding reduzido */
  .magia-section,
  .vantagens-section,
  .passos-section {
    padding: 40px 20px !important;
  }
  .magia-title,
  .vantagens-title,
  .passos-title {
    font-size: 2rem !important;
  }
  .magia-title-highlight,
  .vantagens-title-highlight {
    font-size: 2.2rem !important;
  }
  .vantagens-title-highlight {
    font-size: 2.5rem !important;
  }
  .passos-title-highlight {
    font-size: 1.8rem !important;
  }

  /* Grids em coluna única */
  .estante-features-grid,
  .estante-categories-grid {
    grid-template-columns: 1fr !important;
  }
  .estante-devices,
  .jornalz-devices,
  .tv-devices {
    gap: 20px;
    padding: 30px 20px;
  }
  .estante-device-item,
  .jornalz-device-item,
  .tv-device-item {
    width: 100px;
  }
  .estante-device-item i,
  .jornalz-device-item i,
  .tv-device-item i {
    font-size: 3rem;
  }
  .estante-benefit-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Parceiros em coluna */
  .estante-partner-showcase,
  .jornalz-partner-showcase,
  .news-partner-showcase {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
  }
  .estante-partner-showcase span,
  .jornalz-partner-showcase span,
  .news-partner-showcase span {
    display: none;
  }

  /* Estatísticas */
  .estante-stats,
  .jornalz-stats {
    gap: 15px;
  }
  .estante-stat-item,
  .jornalz-stat-item {
    padding: 12px 20px;
  }
  .estante-stat-item .numero,
  .jornalz-stat-item .numero {
    font-size: 2rem;
  }

  /* Cards de feature */
  .estante-feature-card,
  .tv-feature-card {
    min-height: auto;
  }

  /* Feature cards em coluna no mobile */
  .jornalz-feature-card,
  .news-feature-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .jornalz-explicativo-box p:first-child {
    font-size: 1.3rem;
  }

  /* Canais da TV */
  .tv-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tv-cta-giant h2 {
    font-size: 1.8rem;
  }
  .tv-cta-giant .btn-primary {
    font-size: 1.3rem;
    padding: 15px 30px;
  }
  .tv-testimonial p {
    font-size: 1.1rem;
  }

  /* Dispositivos do News */
  .news-devices {
    gap: 25px;
  }
  .news-device-item {
    width: 100px;
  }

  /* Diferenciais em coluna única */
  .diferenciais-grid {
    grid-template-columns: 1fr;
  }
  .irmaos-image {
    height: 250px;
  }
  .missao-box p {
    font-size: 1.2rem;
  }
  .proposito-highlight p:first-child {
    font-size: 1.3rem;
  }
  .proposito-highlight p {
    font-size: 1rem;
  }

  /* Modal responsivo */
  .modal-card {
    border-radius: 30px;
  }
  .modal-header {
    padding: 25px 20px 15px 20px;
  }
  .modal-title {
    font-size: 1.5rem;
  }
  .modal-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  .modal-icon-wrapper i {
    font-size: 2.5rem;
  }
  .modal-body {
    padding: 20px;
  }
  .action-grid {
    grid-template-columns: 1fr;
  }
  .access-item {
    flex-direction: column;
    gap: 5px;
  }
  .access-label {
    min-width: auto;
  }

  /* Contador de promoção */
  .counter-timer {
    gap: 10px;
  }
  .counter-unit {
    padding: 8px 12px;
    min-width: 60px;
  }
  .counter-unit span:first-child {
    font-size: 1.5rem;
  }

  /* Página 404 */
  .container-404 {
    margin: 30px 15px;
    padding: 30px 15px;
  }
  .titulo-404 {
    font-size: 3rem;
  }
  .mensagem-404 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  /* Ajustes para mobile pequeno */
  .logo-netmax-big {
    max-height: 80px;
  }
  .slogan-top {
    font-size: 0.9rem;
  }

  /* Central do Assinante compacta */
  .assinante-link {
    padding: 6px 15px;
  }
  .assinante-icon {
    width: 45px;
    height: 45px;
  }
  .assinante-icon i {
    font-size: 26px;
  }
  .assinante-text {
    font-size: 12px;
  }

  /* WhatsApp compacto */
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float i {
    font-size: 26px;
  }

  /* Hero compacto */
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-main-title {
    font-size: 1.8rem !important;
  }
  .hero-main-title-highlight {
    font-size: 2rem !important;
  }
  .hero-subtitle {
    font-size: 1.1rem !important;
  }
  .subtitle-premium {
    font-size: 1.2rem;
  }

  /* Super preço compacto */
  .super-price {
    font-size: 1.4rem;
    padding: 15px 20px;
  }
  .sobre h2,
  .parceiros h2 {
    font-size: 1.5rem;
  }
  .sobre p,
  .parceiros p {
    font-size: 0.9rem;
  }
  .ecosystem-title {
    font-size: 1.5rem;
    padding: 15px 10px;
  }
  .benefit-card {
    min-height: 200px !important;
    padding: 20px 12px !important;
  }
  .mini-logo {
    width: 60px !important;
    margin-bottom: 12px !important;
  }

  /* Footer redes sociais sem texto */
  .footer-social a span {
    display: none;
  }
  .footer-social a {
    padding: 8px;
  }

  /* Dispositivos compactos */
  .estante-devices,
  .jornalz-devices {
    gap: 12px;
  }
  .estante-device-item,
  .jornalz-device-item {
    width: 85px;
  }
  .estante-device-item i,
  .jornalz-device-item i {
    font-size: 2.5rem;
  }
  .estante-device-item span {
    font-size: 0.9rem;
  }
  .estante-device-item small {
    font-size: 0.7rem;
  }

  /* CTA boxes compactas */
  .estante-cta-box,
  .jornalz-cta-box,
  .news-cta-box {
    padding: 30px 15px;
  }
  .estante-cta-box h2,
  .jornalz-cta-box h2,
  .news-cta-box h2 {
    font-size: 1.5rem;
  }
  .estante-cta-button,
  .estante-assinatura-button {
    font-size: 1.1rem !important;
    padding: 12px 20px !important;
  }

  /* Audience grid em coluna única */
  .estante-audience-grid {
    grid-template-columns: 1fr !important;
  }
  .estante-assinatura-box {
    padding: 25px 15px !important;
  }
  .estante-assinatura-box h2 {
    font-size: 1.5rem !important;
  }
  .estante-assinatura-box p {
    font-size: 1rem !important;
  }

  /* JornalZ explicativo compacto */
  .jornalz-explicativo-box {
    padding: 20px;
  }
  .jornalz-explicativo-box p {
    font-size: 0.9rem;
  }

  /* TV canais em coluna única */
  .tv-channels-grid {
    grid-template-columns: 1fr;
  }
  .tv-device-item {
    width: 85px;
  }
  .tv-device-item i {
    font-size: 2.8rem;
  }

  /* News dispositivos compactos */
  .news-devices {
    gap: 15px;
  }
  .news-device-item {
    width: 85px;
  }
  .news-device-item i {
    font-size: 2.5rem;
  }

  /* Propósito */
  .irmaos-image {
    height: 200px;
  }
  .missao-box {
    padding: 25px 15px;
  }
  .missao-box p {
    font-size: 1rem;
  }
  .diferencial-card h3 {
    font-size: 1.3rem;
  }
  .rodape-proposito {
    padding: 15px;
  }
  .rodape-proposito p {
    font-size: 0.9rem;
  }

  /* Modal compacto */
  .modal-close-btn {
    top: 8px;
    right: 12px;
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
  .access-card {
    padding: 15px;
  }
  .tip-box {
    flex-direction: column;
    text-align: center;
    border-radius: 25px;
  }
  .instruction-item span {
    font-size: 0.9rem;
  }
  #tvAtivacaoModal .modal-container {
    transform: scale(0.7);
    max-width: 95%;
    margin: 10px;
  }

  /* 404 compacto */
  .titulo-404 {
    font-size: 2rem;
  }
  .mensagem-404 {
    font-size: 0.9rem;
  }
  .btn-404,
  .btn2-404 {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Ajustes intermediários entre tablet e desktop */
  .estante-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .estante-categories-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .vantagens-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .vantagens-card-full {
    grid-column: span 2 !important;
  }
}

/* Estilos específicos para o modal principal da TV com escala reduzida */
#tvModal .modal-container {
  transform: scale(0.7125);
  transition: transform 0.3s ease;
}

#tvModal.show .modal-container {
  transform: scale(0.7125);
}

@media (max-width: 768px) {
  #tvModal .modal-container {
    transform: scale(0.6625);
  }
}

/* =================================================================== */
/* ESTILOS EXTRAS EXTRAÍDOS DO NETMAX_TV.HTML                         */
/* =================================================================== */

/* Seção "O Mundo Netmax TV" */
.tv-world-section {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  border-radius: 40px;
  padding: 60px 50px;
  margin: 60px 0;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 208, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* Elementos decorativos da seção Mundo TV */
.tv-world-deco-top,
.tv-world-deco-bottom {
  position: absolute;
  font-size: 250px;
  opacity: 0.03;
  pointer-events: none;
  color: #ffd000;
}

.tv-world-deco-top {
  top: -20px;
  right: -20px;
  transform: rotate(10deg);
}

.tv-world-deco-bottom {
  bottom: -30px;
  left: -30px;
  transform: rotate(-15deg);
}

/* Cabeçalho da seção Mundo TV */
.tv-world-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

/* Ícone da seção Mundo TV */
.tv-world-icon-box {
  background: #000;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 10px 0 #ffd000;
}

.tv-world-icon-box i {
  color: #ffd000;
  font-size: 2.8rem;
}

/* Título da seção Mundo TV */
.tv-world-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #000;
  margin: 0;
}

.tv-world-title span {
  color: #ffd000;
  text-shadow: 0 0 5px rgba(255, 208, 0, 0.3);
}

/* Badge da seção Mundo TV */
.tv-world-badge {
  background: #000;
  padding: 12px 25px;
  border-radius: 60px;
  border: 2px solid #ffd000;
}

.tv-world-badge span {
  color: #ffd000;
  font-weight: 800;
  font-size: 1.2rem;
}

.tv-world-badge i {
  margin-right: 8px;
}

/* Grid da seção Mundo TV */
.tv-world-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Texto da seção Mundo TV */
.tv-world-text p:first-child {
  font-size: 1.6rem;
  font-weight: 800;
  color: #000;
  display: block;
  margin-bottom: 15px;
}

.tv-world-text p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

.tv-world-text .tech-highlight {
  background: linear-gradient(135deg, #ffd000, #ffaa00);
  color: #000;
  padding: 2px 10px;
  border-radius: 20px;
}

/* Link da seção Mundo TV */
.tv-world-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #ffd000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid #ffd000;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.tv-world-link:hover {
  background: #ffd000;
  color: #000;
}

/* Painel direito da seção Mundo TV */
.tv-world-right-panel {
  background: #000;
  border-radius: 30px;
  padding: 35px 25px;
  box-shadow: 0 20px 30px rgba(255, 208, 0, 0.25);
  border: 2px solid #ffd000;
}

/* Item de benefício do Mundo TV */
.tv-world-benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 208, 0, 0.2);
}

.tv-world-benefit-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Ícone do benefício */
.tv-world-benefit-icon {
  background: #ffd000;
  min-width: 55px;
  height: 55px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-world-benefit-icon i {
  color: #000;
  font-size: 1.8rem;
}

/* Conteúdo do benefício */
.tv-world-benefit-content h4 {
  color: #ffd000;
  margin: 0 0 5px 0;
  font-size: 1.3rem;
}

.tv-world-benefit-content p {
  color: #ccc;
  margin: 0;
  font-size: 0.95rem;
}

/* Nota de rodapé do Mundo TV */
.tv-world-footer-note {
  font-size: 0.7rem;
  color: #666;
  margin-top: 25px;
  text-align: center;
}

/* Estatísticas do Mundo TV */
.tv-world-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px dashed rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.tv-world-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tv-world-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffd000;
}

.tv-world-stat-label {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

/* =================================================================== */
/* SEÇÃO DE TECNOLOGIA CDNTV                                          */
/* =================================================================== */

/* Seção CDNTV com fundo escuro */
.tv-cdntv-section {
  background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
  border-radius: 40px;
  padding: 60px 40px;
  margin: 70px 0;
  border: 2px solid #ffd000;
  box-shadow: 0 25px 40px rgba(255, 208, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/* Elementos decorativos da seção CDNTV */
.tv-cdntv-deco-top,
.tv-cdntv-deco-bottom {
  position: absolute;
  font-size: 200px;
  opacity: 0.03;
  pointer-events: none;
  color: #ffd000;
}

.tv-cdntv-deco-top {
  top: -30px;
  right: -30px;
  transform: rotate(20deg);
}

.tv-cdntv-deco-bottom {
  bottom: -40px;
  left: -40px;
  transform: rotate(-15deg);
}

/* Cabeçalho da seção CDNTV */
.tv-cdntv-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

/* Badge da seção CDNTV */
.tv-cdntv-badge {
  background: #ffd000;
  color: #000;
  padding: 8px 25px;
  border-radius: 60px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 20px;
}

/* Título da seção CDNTV */
.tv-cdntv-title {
  font-size: 3rem;
  color: white;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tv-cdntv-title i {
  color: #ffd000;
  font-size: 3.5rem;
  filter: drop-shadow(0 0 15px rgba(255, 208, 0, 0.5));
}

.tv-cdntv-title span {
  background: linear-gradient(135deg, #fff, #ffd000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtítulo da seção CDNTV */
.tv-cdntv-subtitle {
  font-size: 1.8rem;
  color: #ffd000;
  font-weight: 300;
  margin-top: 10px;
}

/* Grid da seção CDNTV */
.tv-cdntv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Card da seção CDNTV */
.tv-cdntv-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 35px;
  border: 1px solid rgba(255, 208, 0, 0.3);
}

/* Cabeçalho do card CDNTV */
.tv-cdntv-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

/* Ícone do card CDNTV */
.tv-cdntv-card-icon {
  background: #ffd000;
  width: 50px;
  height: 50px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-cdntv-card-icon i {
  color: #000;
  font-size: 1.8rem;
}

/* Título do card CDNTV */
.tv-cdntv-card-header h3 {
  color: white;
  font-size: 1.8rem;
  margin: 0;
}

/* Texto do card CDNTV */
.tv-cdntv-card p {
  color: #ddd;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tv-cdntv-card p strong {
  color: #ffd000;
}

/* Features do CDNTV */
.tv-cdntv-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Item de feature do CDNTV */
.tv-cdntv-feature-item {
  background: rgba(255, 208, 0, 0.1);
  border: 1px solid rgba(255, 208, 0, 0.3);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.tv-cdntv-feature-item:hover {
  transform: translateX(10px);
  background: rgba(255, 208, 0, 0.2);
}

/* Ícone da feature CDNTV */
.tv-cdntv-feature-icon {
  background: #ffd000;
  min-width: 60px;
  height: 60px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-cdntv-feature-icon i {
  color: #000;
  font-size: 1.8rem;
}

/* Conteúdo da feature CDNTV */
.tv-cdntv-feature-content h4 {
  color: #ffd000;
  margin: 0 0 5px 0;
  font-size: 1.3rem;
}

.tv-cdntv-feature-content p {
  color: #fff;
  margin: 0;
  font-size: 1rem;
}

/* Rodapé da seção CDNTV */
.tv-cdntv-footer {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

/* Compatibilidade da seção CDNTV */
.tv-cdntv-compatibility {
  display: inline-flex;
  gap: 10px;
  background: rgba(255, 208, 0, 0.2);
  padding: 15px 30px;
  border-radius: 60px;
  border: 1px dashed #ffd000;
}

.tv-cdntv-compatibility i {
  color: #ffd000;
}

.tv-cdntv-compatibility span {
  color: white;
  font-weight: 500;
}

/* =================================================================== */
/* ESTILOS ESPECÍFICOS PARA POR QUE ESCOLHER A NETMAX                 */
/* =================================================================== */

/* Responsividade adicional para página "Por Que Escolher a Netmax" */
@media (max-width: 1024px) {
  .benefits-grid.big-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }

  .super-price {
    font-size: 2.2rem !important;
    padding: 25px 40px !important;
  }
}

@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 2rem !important;
  }

  .hero .subtitle-premium {
    font-size: 1.3rem !important;
    padding: 20px !important;
  }

  .ecosystem {
    padding: 60px 20px !important;
  }

  .ecosystem-title {
    font-size: 1.8rem !important;
    padding: 20px 15px !important;
    margin-bottom: 30px !important;
  }

  .benefits-grid.big-cards {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    margin: 40px 0 !important;
  }

  .benefit-card {
    padding: 30px 20px !important;
    min-height: auto !important;
  }

  .benefit-card i {
    font-size: 3rem !important;
    margin-bottom: 15px !important;
  }

  .benefit-card h3 {
    font-size: 1.3rem !important;
    margin-bottom: 10px !important;
  }

  .benefit-card p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }

  .super-price {
    font-size: 1.8rem !important;
    padding: 20px 30px !important;
    margin-top: 40px !important;
  }

  .super-price p:first-child {
    font-size: 1.3rem !important;
  }

  .super-price p:first-of-type {
    font-size: 1.3rem !important;
  }

  .super-price p:nth-child(2) {
    font-size: 2.5rem !important;
  }

  .super-price .btn-primary {
    font-size: 1.3rem !important;
    padding: 15px 30px !important;
  }

  .sobre,
  .parceiros {
    padding: 40px 25px !important;
    margin: 20px !important;
  }

  .sobre h2,
  .parceiros h2 {
    font-size: 1.8rem !important;
    margin-bottom: 30px !important;
  }

  .sobre p,
  .parceiros p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }

  .partner-logos {
    gap: 25px !important;
  }

  .partner-logo {
    width: 100px !important;
  }

  [style*="margin-top: 60px"] .btn-primary {
    font-size: 1.3rem !important;
    padding: 15px 30px !important;
  }
}

@media (max-width: 480px) {
  .hero .hero-title {
    font-size: 1.6rem !important;
  }

  .hero .subtitle-premium {
    font-size: 1.1rem !important;
    padding: 15px !important;
  }

  .ecosystem-title {
    font-size: 1.5rem !important;
    padding: 15px !important;
  }

  .benefit-card h3 {
    font-size: 1.2rem !important;
  }

  .benefit-card p {
    font-size: 0.9rem !important;
  }

  .super-price {
    font-size: 1.5rem !important;
    padding: 15px 20px !important;
  }

  .super-price p:first-of-type {
    font-size: 1.1rem !important;
  }

  .super-price p:nth-child(2) {
    font-size: 2rem !important;
  }

  .sobre h2,
  .parceiros h2 {
    font-size: 1.5rem !important;
  }

  .partner-logo {
    width: 80px !important;
  }

  [style*="margin-top: 60px"] .btn-primary {
    font-size: 1.1rem !important;
    padding: 12px 25px !important;
  }
}
