/* Importação das fontes */
@import url('https://fonts.cdnfonts.com/css/soulcraft');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@500;600;700;800;900&display=swap');

/* Correção para fontes variáveis - Safari iOS */
* {
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Configuração explícita da fonte Soulcraft para prevenir slant no Safari */
[class*="Soulcraft"],
.hero-title,
.agencia-title,
.maraca-title,
.newsletter-title,
.faq-title,
.pacote-title,
.banner-content h1,
.nav-links li a,
.mobile-nav-links a,
h1, h2, h3, h4, h5, h6,
#databig {
  font-variation-settings: 'slnt' 0, 'wdth' 100;
  font-style: normal !important;
  font-synthesis: none;
}

/* ===== VARIÁVEIS CSS - PALETA DE CORES ===== */
:root {
  /* Cores principais do Flamengo */
  --cor-vermelho-principal: #B51210;
  --cor-vermelho-escuro: #A00A28;
  --cor-preto: #000000;
  --cor-branco: #FFFFFF;

  /* Cores de apoio */
  --cor-cinza-claro: #F5F5F5;
  --cor-cinza-medio: #CCCCCC;
  --cor-cinza-escuro: #333333;
  --cor-cinza-texto: #666666;

  /* cores cards */
  --cor-card-static: #890000;
  --cor-card-hover: #CC1919;
  --cor-card-embreve: #818181;

  /* Sombras */
  --sombra-card: 0 4px 8px rgba(0, 0, 0, 0.1);
  --sombra-hover: 0 8px 16px rgba(0, 0, 0, 0.15);

  /* Espaçamentos */
  --espacamento-xs: 0.5rem;
  --espacamento-sm: 1rem;
  --espacamento-md: 2rem;
  --espacamento-lg: 3rem;
  --espacamento-xl: 4rem;
}

/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Correção para mobile - desabilitar scroll suave que pode causar problemas */
@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
  }
  
  body {
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
  }
  
  /* Garantir que todos os containers respeitem a largura da tela */
  .container,
  .hero-banner,
  .agencia-oficial-secao,
  .maraca-secao,
  .pacotes-secao,
  .beneficios-container,
  .newsletter-section,
  .ec-footer {
    max-width: 100%;
    overflow-x: hidden;
  }
}

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: var(--cor-cinza-escuro);
  background-color: var(--cor-branco);
}


/* NOVO CARD */
.grupo1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.grupo2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

#databig {
  font-family: 'Soulcraft', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  color: #fff;
  /* Evitar quebra de linha */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

#time1,
#time2 {
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

#datasmall,
#horariosmall,
#localsmall {
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}




.cardjogo {
  display: inline-flex;
  padding: 47px 25px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  border-radius: 12px;
  background: var(--cor-card-static);
  width: 322px;
  height: 420px;
  aspect-ratio: 322/420;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  user-select: none;
  /* Impede a seleção do texto */
  cursor: pointer;
  /* Indica que o card é clicável */
}

.embreve {
  background: var(--cor-card-embreve);
}

.cardjogo.embreve img {
  filter: invert(0);
}

.cardjogo.embreve .btncardjogo {
  background: #adadad;
  color: #c8c8c8;
}

.embreve:hover {
  background: var(--cor-card-embreve) !important;
}

.cardjogo:hover .btncardjogo {
  transform: translateY(0px) !important;
  background: #000 !important;
  color: #fff !important;
}

.cardjogo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(198, 12, 48, 0.3);
  background: var(--cor-card-hover);
  color: #FFF;
}

.cardjogo:hover .grupo1,
.cardjogo:hover .grupo2 {
  color: #FFF;
}

.cardjogo:hover .btncardjogo {
  transform: translateY(-7px);
  transition: all 0.3s ease;
  background: #fff;
  color: #000;
}






.cardjogo p {
  color: #000;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.logocampeonato {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  
}

.logocampeonato img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  aspect-ratio: 1/1;
  filter: invert(1);
  
}

.infos1cardjogo {
  display: flex;
  font-size: 18px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 5px;

}

.infos2cardjogo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  align-self: stretch;
}

.btncardjogo {
  display: flex;
  padding: 12px 0px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: #FFF;
  text-align: center;
  font-family: Barlow;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 50px;
  background: #000;
  text-decoration: none;
}

/* FIM NOVO CARD */

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--cor-preto);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--cor-vermelho-principal);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--espacamento-sm) 0;
}

/* ===== LOGO E TEXTO ===== */
.header-left {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--espacamento-sm);
}

.logo-img {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: var(--cor-branco);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== NAVEGAÇÃO DESKTOP ===== */
.header-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--espacamento-lg);
}

.nav-links li a {
  font-family: 'Soulcraft', sans-serif;
  color: var(--cor-branco);
  text-decoration: none;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--espacamento-xs) var(--espacamento-sm);
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a:hover {
  color: var(--cor-vermelho-principal);
  background-color: rgba(198, 12, 48, 0.1);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--cor-vermelho-principal);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links li a:hover::after {
  width: 100%;
}

/* ===== FONTE BARLOW PARA LINKS DO HEADER (APENAS DESKTOP) ===== */
@media (min-width: 769px) {
  .nav-links li a {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
  }
}

/* ===== MENU MOBILE TOGGLE ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: var(--espacamento-xs);
  background: none;
  border: none;
  position: relative;
  z-index: 1001;
  /* Correções para mobile */
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--cor-branco);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== MENU MOBILE ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--cor-preto);
  z-index: 999;
  transition: left 0.3s ease;
  padding: var(--espacamento-xl) var(--espacamento-md);
  padding-top: 100px;
  /* Espaço para o header */
  /* Correções para mobile */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mobile-menu.open {
  left: 0;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  margin: var(--espacamento-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: var(--espacamento-md);
}

.mobile-nav-links li:last-child {
  border-bottom: none;
}

.mobile-nav-links a {
  font-family: 'Soulcraft', sans-serif;
  color: var(--cor-branco);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  padding: var(--espacamento-sm) 0;
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--cor-vermelho-principal);
  padding-left: var(--espacamento-sm);
}

/* ===== RESPONSIVIDADE DO HEADER ===== */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .logo-text {
    font-size: 0.6rem;
  }

  .logo-img {
    height: 40px;
  }

  .header-content {
    padding: var(--espacamento-xs) 0;
  }
  
  /* Correções específicas para mobile */
  body {
    /* Prevenir scroll indesejado no mobile */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    /* Desabilitar scroll suave no mobile para evitar problemas */
    scroll-behavior: auto;
  }
  
  /* Prevenir zoom indesejado no mobile */
  .mobile-menu {
    touch-action: pan-y;
  }
  
  .mobile-nav-links a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 0.6rem;
  }

  .logo-img {
    height: 35px;
  }

  .container {
    padding: 0 var(--espacamento-sm);
  }
}

body {
  padding-top: 80px;
  /* Espaço para o header fixo */
}

/* ===== RESPONSIVIDADE DO BODY ===== */
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 50px;
  }
}

/* ===== TIPOGRAFIA ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Soulcraft', sans-serif;
  font-weight: bold;
  color: var(--cor-branco);
  margin-bottom: var(--espacamento-sm);
}

h1 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  font-size: 2rem;
  text-transform: uppercase;
}

h4 {
  font-size: 1.5rem;
}

p {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  margin-bottom: var(--espacamento-sm);
  line-height: 1.8;
}

/* Pesos específicos para textos corridos */
.text-medium {
  font-weight: 500;
}

.text-semibold {
  font-weight: 600;
}

.text-bold {
  font-weight: 700;
}

.text-extrabold {
  font-weight: 800;
}

.text-black {
  font-weight: 900;
}

/* Aplicar Barlow em elementos de texto corrido */
span,
div,
label,
input,
textarea,
select {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
}

/* Botões com peso específico */
button {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
}

/* ===== HERO BANNER ===== */
.hero-banner {
  height: 80vh;
  position: relative;
  overflow: hidden;
  color: var(--cor-branco);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-banner .container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  padding-bottom: 60px;
}

.hero-title {
  font-family: 'Soulcraft', sans-serif;
  width: 100%;
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: var(--espacamento-sm);
  line-height: 1.2;
  min-height: 180px;
  display: flex;
  align-items: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  margin-bottom: var(--espacamento-md);
  color: var(--cor-branco);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-cta {
  background: var(--cor-vermelho-principal);
  color: var(--cor-branco);
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 50px;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  background: var(--cor-vermelho-escuro);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 12, 48, 0.3);
}

/* Efeito máquina de escrever */
.cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--cor-branco);
  margin-left: 5px;
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* #typewriter-text {
  display: inline-block;
  font-family: 'Soulcraft', 'Barlow', sans-serif;
  font-weight: 600; /* Semibold para melhor legibilidade */
  /* color: var(--cor-branco); */
  /* transition: all 0.3s ease; */
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); */
/* } */ 

/* Redução gradual do peso da fonte para mobile */
/* @media (max-width: 768px) { */
  /* #typewriter-text {
    font-weight: 500; /* Medium para mobile */
    /* font-size: 0.95em; Redução sutil do tamanho */
  /* } */
/* } */


 /* @media (max-width: 480px) { */
  /* #typewriter-text { */
    /* font-weight: 400; Regular para telas muito pequenas */
    /* font-size: 0.9em; Redução adicional do tamanho */
  /* } */
/* }  */


/* Responsive para vídeo */
@media (max-width: 768px) {
  .hero-banner {
    height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 20px;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.7);
  }
}

@media (max-width: 576px) {
  .hero-banner {
    height: 100vh;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* ===== SEÇÕES PRINCIPAIS ===== */
.section-flamengo {
  padding: var(--espacamento-xl) 0;
  background-color: var(--cor-cinza-claro);
}

.section-flamengo.dark {
  background-color: var(--cor-preto);
  color: var(--cor-branco);
}

.section-flamengo.dark h2,
.section-flamengo.dark h3 {
  color: var(--cor-branco);
}

.section-title {
  text-align: left;
  margin-bottom: var(--espacamento-lg);
}

.section-title h2 {
  color: #000000;
  font-family: 'Barlow', sans-serif;
  font-size: 35px;
  position: relative;
  padding-bottom: var(--espacamento-sm);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #000000;
}

/* ===== CARDS DE PARTIDAS ===== */
.partidas-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--espacamento-md);
  margin-top: var(--espacamento-lg);
}

.partida-card {
  background: var(--cor-branco);
  border-radius: 10px;
  padding: var(--espacamento-md);
  box-shadow: var(--sombra-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.partida-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-hover);
  border-color: var(--cor-vermelho-principal);
}

.partida-card.destaque {
  background: var(--cor-vermelho-principal);
  color: var(--cor-branco);
}

.partida-card.destaque h4 {
  color: var(--cor-branco);
}

.partida-data {
  font-family: 'Barlow', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--cor-vermelho-principal);
  margin-bottom: var(--espacamento-xs);
}

.partida-card.destaque .partida-data {
  color: var(--cor-branco);
}

.partida-mes {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--espacamento-sm);
}

.partida-info {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  margin-bottom: var(--espacamento-md);
}

.partida-btn {
  background-color: var(--cor-vermelho-principal);
  color: var(--cor-branco);
  border: none;
  padding: var(--espacamento-xs) var(--espacamento-md);
  border-radius: 25px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.9rem;
}

.partida-btn:hover {
  background-color: var(--cor-vermelho-escuro);
  transform: scale(1.05);
}

.partida-card.destaque .partida-btn {
  background-color: var(--cor-branco);
  color: var(--cor-vermelho-principal);
}

/* ===== SEÇÃO TURISMO ===== */
.turismo-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('path/to/turismo-bg.jpg') center/cover;
  color: var(--cor-branco);
  padding: var(--espacamento-xl) 0;
}

.turismo-content {
  max-width: 600px;
}

.turismo-section h2 {
  color: var(--cor-branco);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.turismo-section p {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: var(--espacamento-lg);
}

/* ===== SEÇÃO MARACANÃ ===== */
.maracana-section {
  background-color: var(--cor-preto);
  color: var(--cor-branco);
  padding: var(--espacamento-xl) 0;
}

.maracana-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--espacamento-lg);
  align-items: center;
}

.maracana-text h2 {
  color: var(--cor-branco);
  font-size: 3rem;
  margin-bottom: var(--espacamento-md);
}

.maracana-text h2 span {
  color: var(--cor-vermelho-principal);
}

.maracana-image {
  text-align: center;
}

.maracana-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: var(--sombra-card);
}

/* ===== PRODUTOS/OFERTAS ===== */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--espacamento-md);
  margin-top: var(--espacamento-lg);
}

.produto-card {
  background: var(--cor-branco);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sombra-card);
  transition: transform 0.3s ease;
}

.produto-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-hover);
}

.produto-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.produto-content {
  padding: var(--espacamento-md);
}

.produto-title {
  font-size: 1.5rem;
  margin-bottom: var(--espacamento-sm);
  color: var(--cor-preto);
}

.produto-description {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: var(--cor-cinza-texto);
  margin-bottom: var(--espacamento-md);
}



/* ===== PERGUNTAS FREQUENTES ===== */
.faq-section {
  background-color: var(--cor-preto);
  color: var(--cor-branco);
  padding: var(--espacamento-xl) 0;
}

.faq-item {
  margin-bottom: var(--espacamento-md);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  padding: var(--espacamento-md);
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.faq-answer {
  padding: 0 var(--espacamento-md) var(--espacamento-md);
  display: none;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: var(--cor-cinza-medio);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ===== RESPONSIVIDADE ===== */

/* Tablet */
@media (max-width: 768px) {
  :root {
    --espacamento-xl: 2rem;
    --espacamento-lg: 2rem;
  }

  .hero-banner {
    margin-top: 0;
    padding-top: 0;
  }

  .hero-title {
    font-size: 2.5rem;
    min-height: 120px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-content {
    padding-bottom: 40px;
  }

  h2 {
    font-size: 2rem;
  }

  .partidas-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--espacamento-sm);
  }

  .maracana-content {
    grid-template-columns: 1fr;
    gap: var(--espacamento-md);
  }

  .produtos-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .maracana-text h2 {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  :root {
    --espacamento-xl: 1.5rem;
    --espacamento-lg: 1.5rem;
    --espacamento-md: 1rem;
  }

  .hero-banner {
    margin-top: 0;
    padding-top: 0;
  }

  .hero-title {
    font-size: 2rem;
    min-height: 100px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-content {
    padding-bottom: 30px;
  }

  h2 {
    font-size: 1.8rem;
  }

  .partidas-container {
    grid-template-columns: 1fr;
  }

  .produtos-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 var(--espacamento-sm);
  }

  .turismo-section,
  .maracana-section,
  .section-flamengo {
    padding: var(--espacamento-lg) 0;
  }

  .maracana-text h2 {
    font-size: 1.5rem;
  }

  .section-title h2::after {
    width: 60px;
  }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== NOTIFICAÇÕES ===== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: var(--espacamento-sm) var(--espacamento-md);
  border-radius: 5px;
  box-shadow: var(--sombra-hover);
  z-index: 1000;
  max-width: 400px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.notification-info {
  background-color: #3498db;
  color: var(--cor-branco);
}

.notification-success {
  background-color: #2ecc71;
  color: var(--cor-branco);
}

.notification-error {
  background-color: #e74c3c;
  color: var(--cor-branco);
}

.notification-warning {
  background-color: #f39c12;
  color: var(--cor-branco);
}

.notification-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-close {
  background: none;
  border: none;
  color: var(--cor-branco);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  margin-left: var(--espacamento-sm);
}

.notification-close:hover {
  opacity: 0.8;
}

/* ===== VALIDAÇÃO DE FORMULÁRIOS ===== */
.form-control.error {
  border-color: #e74c3c;
  background-color: #fdf2f2;
}

.form-control.success {
  border-color: #2ecc71;
  background-color: #f2fdf2;
}

.error-message {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: var(--espacamento-xs);
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
}

/* ===== LOADING STATES ===== */
.btn-primary.loading,
.partida-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-primary.loading:hover,
.partida-btn.loading:hover {
  transform: none;
}

/* ===== COUNTDOWN TIMER ===== */
.countdown {
  display: flex;
  justify-content: center;
  gap: var(--espacamento-md);
  margin: var(--espacamento-md) 0;
}

.countdown-item {
  text-align: center;
  padding: var(--espacamento-sm);
  background-color: var(--cor-vermelho-principal);
  color: var(--cor-branco);
  border-radius: 5px;
  min-width: 60px;
}

.countdown-number {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
}

.countdown-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-top: var(--espacamento-xs);
}

/* ===== LAZY LOADING ===== */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.lazy.loaded {
  opacity: 1;
}

/* ===== HEADER SCROLLED ===== */
.header.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ===== UTILIDADES ===== */
.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: var(--espacamento-xs) !important;
}

.mb-2 {
  margin-bottom: var(--espacamento-sm) !important;
}

.mb-3 {
  margin-bottom: var(--espacamento-md) !important;
}

.mb-4 {
  margin-bottom: var(--espacamento-lg) !important;
}

.mb-5 {
  margin-bottom: var(--espacamento-xl) !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: var(--espacamento-xs) !important;
}

.mt-2 {
  margin-top: var(--espacamento-sm) !important;
}

.mt-3 {
  margin-top: var(--espacamento-md) !important;
}

.mt-4 {
  margin-top: var(--espacamento-lg) !important;
}

.mt-5 {
  margin-top: var(--espacamento-xl) !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

.text-white {
  color: var(--cor-branco) !important;
}

.text-red {
  color: var(--cor-vermelho-principal) !important;
}

.bg-red {
  background-color: var(--cor-vermelho-principal) !important;
}

.bg-black {
  background-color: var(--cor-preto) !important;
}

.bg-white {
  background-color: var(--cor-branco) !important;
}

/* Seção Você Aonde o Flamengo Estiver */
.voce-aonde-flamengo {
  position: relative;
  overflow: hidden;
}

.banner-container {
  position: relative;
  width: 100%;
  padding: var(--espacamento-xl) 0;
  background: url('img/torcedor-flameng-absolut-sport-agencia-oficial.jpg') top/cover;
}

/* Imagem específica para mobile */
@media (max-width: 768px) {
  .banner-container {
    background: url('img/ONDE ESTIVER ESTAREMOS MOBILE.jpg') top/cover;
  }
  
  /* Escurecimento suave de 20% para mobile */
  .banner-container::before {
    background: rgba(0, 0, 0, 0.2);
  }
}

.banner-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.banner-content h1 {
  font-family: 'Soulcraft', sans-serif;
  font-size: 3.5rem;
  color: var(--cor-branco);
  text-transform: uppercase;
  margin: 0;
  text-align: left;
  line-height: 1.2;
}

.matches-slider-container {
  padding: 40px 0;
  position: relative;
}

.matches-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 100px;
  padding-top: 20px;
  padding-bottom: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.matches-slider::-webkit-scrollbar {
  display: none;
}

.match-card {
  flex: 0 0 280px;
  background: #2a2a2a;
  border-radius: 15px;
  padding: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.match-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(198, 12, 48, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.match-card:hover::before {
  opacity: 1;
}

.match-card:hover {
  transform: translateY(-5px);
  border-color: #C60C30;
  box-shadow: 0 10px 25px rgba(198, 12, 48, 0.3);
}

.match-card.featured {
  background: #C60C30;
  border-color: #ff4d6d;
}

.match-card.featured::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.match-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.team-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.match-date-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.match-day {
  font-size: 1.2rem;
  font-weight: 900;
  color: #FFFFFF;
}

.match-month {
  font-size: 0.8rem;
  color: #cccccc;
  font-weight: 600;
}

.match-time {
  font-size: 0.9rem;
  color: #FFFFFF;
  font-weight: 700;
}

.match-stadium {
  font-size: 0.8rem;
  color: #cccccc;
}

.match-teams {
  margin-bottom: 25px;
}

.match-date-large {
  font-size: 2.2 rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Soulcraft', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.teams-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 1px;
}

.team-opponent {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 600;
}

.match-cta {
  width: 100%;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.match-cta:hover {
  background: #FFFFFF;
  color: #000000;
  transform: translateY(-2px);
}

.match-card.featured .match-cta {
  background: rgba(0, 0, 0, 0.9);
  border-color: #FFFFFF;
}

.match-card.featured .match-cta:hover {
  background: #FFFFFF;
  color: #C60C30;
}

.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--cor-vermelho-principal);
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  line-height: 1;
  text-align: center;
  padding: 0;
  font-weight: bold;
}

.slider-btn i {
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #C60C30;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(198, 12, 48, 0.4);
}

.slider-btn:active {
  transform: scale(0.95);
}

/* Responsividade */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2.5rem;
  }

  .matches-slider {
    padding: 0 10px;
  }

  .match-card {
    flex: 0 0 250px;
  }

  .slider-controls {
    display: none;
  }
}

@media (max-width: 480px) {
  .banner-container {
    height: 250px;
  }

  .banner-content {
    padding-left: 20px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .match-card {
    flex: 0 0 220px;
    padding: 15px;
  }

  .match-date-large {
    font-size: 2.1rem;
  }
}

/* Estilos adicionais para o slider */
.matches-slider.active {
  cursor: grabbing;
}

.matches-slider:not(.active) {
  cursor: grab;
}

.match-card {
  user-select: none;
  cursor: pointer;
}

.match-card:active {
  transform: scale(0.98);
}

/* Indicadores de scroll */
.matches-slider-container::before,
.matches-slider-container::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.matches-slider-container::before {
  left: 0;
}

.matches-slider-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}

.matches-slider-container:hover::before,
.matches-slider-container:hover::after {
  opacity: 1;
}

/* Animações de entrada */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.match-card {
  animation: slideInFromRight 0.6s ease-out;
}

.match-card:nth-child(1) {
  animation-delay: 0.1s;
}

.match-card:nth-child(2) {
  animation-delay: 0.2s;
}

.match-card:nth-child(3) {
  animation-delay: 0.3s;
}

.match-card:nth-child(4) {
  animation-delay: 0.4s;
}

.match-card:nth-child(5) {
  animation-delay: 0.5s;
}

/* Melhorias no banner */


.banner-content h1 {
  text-transform: uppercase;

}

/* Responsividade aprimorada */
@media (max-width: 1024px) {

  .matches-slider-container::before,
  .matches-slider-container::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .banner-content {
    padding-left: 15px;
  }

  .banner-content h1 {
    color: #FFFFFF;
  }
}

/* ===== SEÇÃO AGÊNCIA OFICIAL DA NAÇÃO ===== */
.agencia-oficial-secao {
  padding: var(--espacamento-xl) 0;
  background-color: var(--cor-cinza-claro);
  background-image:
    /*linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),*/
    url('img/flamengo-agencia-oficial-absolut-sport.jpg');
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  position: relative;
  overflow: hidden;
}

.agencia-oficial-secao::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(135deg, 
    rgba(198, 12, 48, 0.9) 0%, 
    rgba(0, 0, 0, 0.7) 100%); */
  z-index: 1;
}

.agencia-oficial-secao .container {
  position: relative;
  z-index: 2;
}

.agencia-content {
  max-width: 600px;
}



.agencia-title {
  font-family: 'Soulcraft', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cor-branco);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: var(--espacamento-md);
  text-align: left;
}

.agencia-title>span {
  font-family: 'Soulcraft', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cor-vermelho-principal);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: var(--espacamento-md);
  text-align: left;
}

.agencia-description {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cor-branco);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 0;
}

.agencia-oficial-img {
  display: none;
}

/* Responsivo */
@media (max-width: 1024px) {
  .agencia-oficial-secao {
    background-attachment: scroll;

  }

  .agencia-title {
    font-size: 3rem;
  }

  .agencia-description {
    font-size: 1.1rem;

  }
}

@media (max-width: 768px) {
  .agencia-oficial-secao {
    padding: var(--espacamento-lg) 0;
    background-image: none;
  }

  .agencia-content {
    padding: var(--espacamento-md);
    text-align: center;

  }

  .agencia-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--cor-preto);

  }

  .agencia-oficial-img,
  .agencia-oficial-img>img {
    display: flex;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    padding: 10px;
  }

  .agencia-title>span {
    font-family: 'Soulcraft', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: va(--cor-vermelho-principal);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: var(--espacamento-md);
    text-align: center;
  }

  .agencia-description {
    font-size: 1rem;
    text-align: center;
    color: var(--cor-preto);
    text-shadow: none;
  }
}

@media (max-width: 576px) {
  .agencia-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .agencia-description {
    font-size: 0.95rem;

  }

  .agencia-content {
    padding: var(--espacamento-sm);
  }
}

/* ===== SEÇÃO O MARACA É NOSSO ===== */
.maraca-secao {
  position: relative;
  padding: 20px 0;
  background: #fafafa;
  overflow: hidden;
  margin-bottom: 0;
}



.maraca-secao .container {
  position: relative;
  z-index: 2;
}

.maraca-content {
  padding: var(--espacamento-lg) 0;
  color: var(--cor-preto);
  margin-top: 10%
}

.maraca-title {
  font-family: 'Soulcraft', sans-serif;
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--espacamento-md);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: none;
  color: var(--cor-preto);
}

.maraca-title>span {
  font-family: 'Soulcraft', sans-serif;
  color: var(--cor-vermelho-principal);
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--espacamento-md);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.maraca-title .text-red {
  font-family: 'Soulcraft', sans-serif;
  font-size: 3.5rem;
  color: var(--cor-vermelho-principal);
  display: block;
  text-shadow: 2px 2px 4px rgba(198, 12, 48, 0.3);
}

.maraca-description {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: var(--espacamento-lg);
  color: var(--cor-cinza-escuro);
  max-width: 500px;
}

.maraca-cta {
  background: linear-gradient(135deg, var(--cor-vermelho-principal) 0%, var(--cor-vermelho-escuro) 100%);
  color: var(--cor-branco);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(198, 12, 48, 0.3);
  position: relative;
  overflow: hidden;
}

.maraca-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.maraca-cta:hover::before {
  left: 100%;
}

.maraca-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 12, 48, 0.4);
}

.maraca-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(198, 12, 48, 0.3);
}

.maraca-image {
  position: relative;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cor-vermelho-principal) 0%, var(--cor-vermelho-escuro) 100%);
  background-image: url('img/o-maraca-é-nosso-o-lugar-e-seu-absolut-sport-agencia-oficial-do-flamengo.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.maraca-image2 {
  position: relative;
  height: 400px;
  margin-right: 50px;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cor-vermelho-principal) 0%, var(--cor-vermelho-escuro) 100%);
  background-image: url('img/siga-o-flamengo.png');
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.maraca-image3 {
  position: relative;
  height: 400px;
  margin-right: 50px;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cor-vermelho-principal) 0%, var(--cor-vermelho-escuro) 100%);
  background-image: url('img/equipe-absolut-sport.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* .maraca-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(198, 12, 48, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
} */

.maraca-image::after {
  content: 'MARACANÃ';
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--cor-branco);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

/* ===== RESPONSIVIDADE DA SEÇÃO MARACA ===== */
@media (max-width: 1024px) {
  .maraca-secao {
    padding: 80px 0;
  }

  .maraca-title {
    font-size: 3rem;
  }

  .maraca-description {
    font-size: 1.1rem;
  }

  .maraca-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .maraca-secao {
    padding: 60px 0;
  }

  /* Trocar ordem dos elementos na primeira seção maraca (maraca-title-1) */
  .maraca-secao .row {
    display: flex;
    flex-direction: column;
  }

  .maraca-secao .col-lg-6:first-child {
    order: 2;
  }

  .maraca-secao .col-lg-6:last-child {
    order: 1;
  }

  .maraca-content {
    text-align: center;
    padding: var(--espacamento-md) 0;
  }

  .maraca-title,
  #maraca-title-1,
  #maraca-title-2,
  #absolut-title,
  #beneficios-title-1 {
    font-family: 'Soulcraft', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cor-preto);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: var(--espacamento-md);
    text-align: center;
  }
  
  .maraca-title > span,
  #maraca-title-1 > span,
  #maraca-title-2 > span,
  #absolut-title > span {
    font-family: 'Soulcraft', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cor-vermelho-principal);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: var(--espacamento-md);
    text-align: center;
  }

  /* Estilos específicos para o novo layout de 3 linhas do maraca-title-1 */
  #maraca-title-1 {
    line-height: 1.2;
    margin-bottom: var(--espacamento-lg);
    display: block;
  }

  #maraca-title-1 br {
    display: block;
    content: "";
    margin: 0.2rem 0;
  }

  /* Garantir que o span mantenha a cor vermelha */
  #maraca-title-1 > span {
    color: var(--cor-vermelho-principal) !important;
  }

  .maraca-description,
  #maraca-description-1,
  #maraca-description-2,
  #absolut-description {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--cor-preto);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
    text-shadow: none;
  }

  .maraca-image,
  .maraca-image2,
  .maraca-image3 {
    height: 300px;
    margin: var(--espacamento-md) auto var(--espacamento-lg) auto;
    display: block;
  }

  .maraca-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 576px) {
  .maraca-secao {
    padding: 40px 0;
  }
  
  .maraca-title,
  #maraca-title-1,
  #maraca-title-2,
  #absolut-title,
  #beneficios-title-1 {
    font-family: 'Soulcraft', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--cor-preto);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: var(--espacamento-md);
    text-align: center;
  }

  /* Forçar cor preta para beneficios-title-1 no mobile */
  #beneficios-title-1 {
    color: #000000 !important;
  }

  /* Forçar cor preta para beneficios-title-2 no mobile */
  #beneficios-title-2 {
    color: #000000 !important;
  }
  
  .maraca-title > span,
  #maraca-title-1 > span,
  #maraca-title-2 > span,
  #absolut-title > span {
    font-family: 'Soulcraft', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--cor-vermelho-principal);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: var(--espacamento-md);
    text-align: center;
  }

  /* Estilos específicos para o novo layout de 3 linhas do maraca-title-1 - Mobile */
  #maraca-title-1 {
    line-height: 1.2;
    margin-bottom: var(--espacamento-md);
    display: block;
  }

  #maraca-title-1 br {
    display: block;
    content: "";
    margin: 0.15rem 0;
  }

  /* Garantir que o span mantenha a cor vermelha no mobile */
  #maraca-title-1 > span {
    color: var(--cor-vermelho-principal) !important;
  }

  .maraca-description,
  #maraca-description-1,
  #maraca-description-2,
  #absolut-description {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--cor-preto);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
    text-shadow: none;
  }

  .maraca-image,
  .maraca-image2,
  .maraca-image3 {
    height: 250px;
    margin: var(--espacamento-md) auto 0 auto;
    display: block;
  }

  .maraca-cta {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
    border-radius: 40px;
    letter-spacing: 1.5px;
    margin-top: var(--espacamento-sm);
  }

  .maraca-content {
    padding: var(--espacamento-sm) 0;
  }
}

/* ===== ANIMAÇÕES PARA A SEÇÃO MARACA ===== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.maraca-content {
  animation: fadeInLeft 0.8s ease-out;
}

.maraca-image {
  animation: fadeInRight 0.8s ease-out;
}

/* ===== EFEITOS DE HOVER PARA A SEÇÃO MARACA ===== */
.maraca-image:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.maraca-image:hover::before {
  background: linear-gradient(45deg, rgba(198, 12, 48, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* ===== SEÇÃO PACOTES DISPONÍVEIS ===== */
.pacotes-secao {
  padding: var(--espacamento-sm) 0;
  background-color: var(--cor-branco);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pacotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 10px;
  margin-top: var(--espacamento-md);
  /* Remover width: 95vw; e max-width: 95vw; */
  width: 100%;
  max-width: 1200px;
  /* Definir largura máxima */
}

.pacote-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--sombra-card);
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 1;
  width: 100%;
}

.pacote-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: var(--sombra-hover);
}

/* Animação de destaque para cards de pacote */
.pacote-card.pacote-highlight {
  animation: pacoteHighlight 1s ease-in-out;
  box-shadow: 0 0 30px rgba(181, 18, 16, 0.6);
  transform: scale(1.05);
}

@keyframes pacoteHighlight {
  0% {
    transform: scale(1);
    box-shadow: var(--sombra-card);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(181, 18, 16, 0.8);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(181, 18, 16, 0.6);
  }
}

.pacote-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.pacote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease;
}

/* Remover o hover simples - será controlado via JavaScript */
/* .pacote-card:hover .pacote-image img {
  transform: scale(1.05);
} */

/* Classes para o efeito de zoom progressivo */
.pacote-card.zoom-step-1 .pacote-image img {
  transform: scale(1.15);
}

.pacote-card.zoom-step-2 .pacote-image img {
  transform: scale(1.30);
}

.pacote-card.zoom-step-3 .pacote-image img {
  transform: scale(1.15);
}

.pacote-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--espacamento-md);
  z-index: 2;
  color: var(--cor-branco);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--espacamento-sm);
}

.pacote-title {
  font-family: 'Soulcraft', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
  color: var(--cor-branco);
  /* Alteração aqui para deixar o título branco */
}

/* Botão dos pacotes */
.pacote-cta {
  background: linear-gradient(135deg, var(--cor-vermelho-principal) 0%, var(--cor-vermelho-escuro) 100%);
  color: var(--cor-branco);
  border: none;
  padding: 0.3rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  font-family: 'Barlow', sans-serif;
}

.pacote-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(198, 12, 48, 0.1), transparent);
  transition: left 0.5s ease;
}

.pacote-cta:hover::before {
  left: 100%;
}

.pacote-cta:hover {
  background: linear-gradient(135deg, var(--cor-vermelho-escuro) 0%, var(--cor-vermelho-principal) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(198, 12, 48, 0.4);
}

.pacote-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}





/* ===== MODAL STYLES ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--cor-branco);
  border-radius: 20px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  position: relative;
  transform: scale(0.8) translateY(50px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(198, 12, 48, 0.1);
  display: flex;
  flex-direction: row;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 1.8rem;
  color: var(--cor-branco);
  cursor: pointer;
  z-index: 10002;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-weight: 300;
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background-color: var(--cor-vermelho-principal);
  border-color: var(--cor-vermelho-principal);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 5px 15px rgba(198, 12, 48, 0.4);
}



/* Modal Left - Imagem */
.modal-left {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.modal-image {
  width: 100%;
  height: 100%;
  
  object-fit: cover;
  object-position: top;
}

/* Modal Right - Conteúdo */
.modal-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--cor-branco);
}

.modal-body {
  padding: 40px 30px 30px;
  position: relative;
  flex: 1;
  overflow-y: auto;
  max-height: calc(85vh - 80px); /* Altura total - CTA */
}

.modal-body h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cor-preto);
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-body p {
  color: var(--cor-cinza-texto);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  font-weight: 500;
}

.modal-features {
  margin-bottom: 30px;
  padding: 25px 0;
}

.modal-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.modal-features li {
  display: flex;
  align-items: center;
  color: var(--cor-cinza-escuro);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 12px;
  position: relative;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.modal-features li::before {
  content: "✓";
  color: var(--cor-vermelho-principal);
  font-weight: bold;
  margin-right: 10px;
  font-size: 1rem;
  background: rgba(198, 12, 48, 0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CTA PROMINENTE - POSICIONADO ESTRATEGICAMENTE */
.modal-cta-container {
  background: var(--cor-branco);
  padding: 30px;
  text-align: center;
  flex-shrink: 0;
  z-index: 10;
  border-top: 1px solid #e9ecef;
}

.modal-cta {
  background: var(--cor-vermelho-principal);
  color: var(--cor-branco);
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(198, 12, 48, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
  font-family: 'Barlow', sans-serif;
}

.modal-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.modal-cta:hover::before {
  left: 100%;
}

.modal-cta:hover {
  background: var(--cor-vermelho-escuro);
  color: var(--cor-branco);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 12, 48, 0.4);
}

.modal-cta:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ANIMAÇÃO DE ENTRADA PARA O CTA */
.modal-overlay.active .modal-cta {
  animation: modalCtaSlideIn 0.6s ease 0.3s both;
}

@keyframes modalCtaSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* DESTAQUE PULSANTE PARA O CTA */
.modal-overlay.active .modal-cta {
  animation: modalCtaSlideIn 0.6s ease 0.3s both, modalCtaPulse 2s ease 1s infinite;
}

@keyframes modalCtaPulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 8px 25px rgba(198, 12, 48, 0.4);
  }
}

/* INDICADOR VISUAL DE AÇÃO */
.modal-cta::after {
  content: '→';
  margin-left: 8px;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.modal-cta:hover::after {
  transform: translateX(3px);
}

/* ===== MEDIA QUERIES PARA PACOTES ===== */
@media (max-width: 768px) {
  .pacotes-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .pacote-card {
    aspect-ratio: 1;
  }

  .pacote-title {
    font-size: 1.3rem;
  }

  .pacote-cta {
    padding: 0.25rem 0.7rem;
    font-size: 0.8rem;
  }

  /* MODAL RESPONSIVO - OTIMIZADO */
  .modal-overlay {
    padding: 8px;
  }

  .modal-content {
    width: 100%;
    max-height: 85vh;
    border-radius: 16px;
    margin: 0 auto;
    flex-direction: column;
  }

  .modal-left {
    flex: none;
    height: 200px;
  }

  .modal-right {
    flex: 1;
  }

  .modal-body {
    padding: 25px 16px;
    max-height: calc(94vh - 70px);
  }

  .modal-body h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .modal-body p {
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .modal-features {
    padding: 18px 14px;
    margin-bottom: 20px;
    border-radius: 10px;
  }

  .modal-features ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .modal-cta-container {
    padding: 20px 16px;
  }

  .modal-cta {
    padding: 16px 28px;
    font-size: 1rem;
  }

  .modal-features li {
    font-size: 0.85rem;
    padding: 6px 0;
    line-height: 1.4;
  }

  .modal-features li::before {
    width: 18px;
    height: 18px;
    font-size: 0.8rem;
    margin-right: 8px;
  }

  /* CTA MOBILE OTIMIZADO */
  .modal-cta-container {
    margin: 0 -16px -16px -16px;
    padding: 18px 16px;
    position: sticky;
    bottom: 0;
  }

  .modal-cta {
    min-width: 100%;
    padding: 16px 28px;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 40px;
  }

  .modal-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .pacotes-secao {
    padding: var(--espacamento-md) 0;
  }

  .pacote-card {
    aspect-ratio: 1;
  }

  .pacote-title {
    font-size: 1.2rem;
  }

  /* MODAL MOBILE PEQUENO - OTIMIZADO */
  .modal-overlay {
    padding: 4px;
  }

  .modal-content {
    max-height: 98vh;
    border-radius: 12px;
    flex-direction: column;
  }

  .modal-left {
    flex: none;
    height: 180px;
  }

  .modal-right {
    flex: 1;
  }

  .modal-body {
    padding: 20px 12px;
    max-height: calc(98vh - 60px);
  }

  .modal-body h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .modal-body p {
    font-size: 0.85rem;
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .modal-features {
    padding: 14px 12px;
    margin-bottom: 16px;
    border-radius: 8px;
  }

  .modal-features li {
    font-size: 0.8rem;
    padding: 5px 0;
    line-height: 1.4;
  }

  .modal-features li::before {
    width: 16px;
    height: 16px;
    font-size: 0.75rem;
    margin-right: 8px;
  }

  .modal-cta-container {
    margin: 0 -12px -12px -12px;
    padding: 14px 12px;
  }

  .modal-cta {
    padding: 14px 24px;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
    border-radius: 35px;
  }

  .modal-close {
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  /* OTIMIZAÇÕES ADICIONAIS PARA MOBILE PEQUENO */
  .modal-body {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .modal-body > *:last-child {
    margin-bottom: 0;
  }

  .modal-features li:last-child {
    margin-bottom: 0;
  }

  .modal-body h2 + p {
    margin-top: 0;
  }

  .modal-features ul {
    margin: 0;
  }
}

/* TELAS MUITO PEQUENAS - OTIMIZAÇÃO EXTREMA */
@media (max-width: 360px) {
  .modal-overlay {
    padding: 2px;
  }

  .modal-content {
    max-height: 99vh;
    border-radius: 8px;
  }



  .modal-body {
    padding: 12px 8px;
    max-height: calc(99vh - 100px - 50px);
  }

  .modal-body h2 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .modal-body p {
    font-size: 0.75rem;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .modal-features {
    padding: 10px 8px;
    margin-bottom: 12px;
    border-radius: 6px;
  }

  .modal-features li {
    font-size: 0.7rem;
    padding: 3px 0;
    line-height: 1.3;
  }

  .modal-features li::before {
    width: 14px;
    height: 14px;
    font-size: 0.65rem;
    margin-right: 6px;
  }

  .modal-cta-container {
    margin: 0 -8px -8px -8px;
    padding: 10px 8px;
  }

  .modal-cta {
    padding: 10px 16px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
  }

  .modal-close {
    top: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  /* OTIMIZAÇÕES ADICIONAIS PARA TELAS MUITO PEQUENAS */
  .modal-body {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .modal-body > *:last-child {
    margin-bottom: 0;
  }

  .modal-features li:last-child {
    margin-bottom: 0;
  }

  .modal-body h2 + p {
    margin-top: 0;
  }

  .modal-features ul {
    margin: 0;
  }
}

/* DESKTOP LARGE - OTIMIZAÇÕES */
@media (min-width: 1200px) {
  .modal-content {
    max-width: 1000px;
  }

  .modal-body {
    padding: 40px;
  }

  .modal-body h2 {
    font-size: 2.5rem;
  }

  .modal-features {
    padding: 30px 0;
  }

  .modal-features ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-cta-container {
    padding: 35px 40px;
  }

  .modal-cta {
    padding: 20px 45px;
    font-size: 1.2rem;
  }
}

/* ANIMAÇÕES ESPECÍFICAS PARA MOBILE */
@media (max-width: 768px) {
  .modal-overlay.active .modal-content {
    animation: modalMobileSlideIn 0.4s ease both;
  }

  @keyframes modalMobileSlideIn {
    from {
      opacity: 0;
      transform: translateY(100px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .modal-overlay.active .modal-left {
    animation: modalImageSlideIn 0.5s ease 0.1s both;
  }

  @keyframes modalImageSlideIn {
    from {
      opacity: 0;
      transform: scale(1.1);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .modal-overlay.active .modal-cta {
    animation: modalCtaMobileSlideIn 0.5s ease 0.2s both;
  }

  @keyframes modalCtaMobileSlideIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* MELHORIAS ADICIONAIS PARA MOBILE */
  .modal-content {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .modal-body {
    scrollbar-width: thin;
    scrollbar-color: var(--cor-vermelho-principal) transparent;
  }

  .modal-body::-webkit-scrollbar {
    width: 6px;
  }

  .modal-body::-webkit-scrollbar-track {
    background: transparent;
  }

  .modal-body::-webkit-scrollbar-thumb {
    background: var(--cor-vermelho-principal);
    border-radius: 3px;
  }

  .modal-cta-container {
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(181, 18, 16, 0.95) 0%, rgba(160, 10, 40, 0.95) 100%);
  }

  .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(90deg);
  }

  /* OTIMIZAÇÕES ADICIONAIS PARA MOBILE */
  .modal-body {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .modal-body > *:last-child {
    margin-bottom: 0;
  }

  .modal-features li:last-child {
    margin-bottom: 0;
  }

  /* REDUZIR ESPAÇAMENTOS GERAIS NO MOBILE */
  .modal-body h2 + p {
    margin-top: 0;
  }

  .modal-features ul {
    margin: 0;
  }
}

/* ===== SEÇÃO BENEFÍCIOS ===== */
.beneficios-container {
  padding: 2rem 0;
  margin-top: 0;
  background-color: var(--cor-cinza-claro);
}

.beneficios-title {
  text-align: center;
  margin-bottom: 3rem;
}

.beneficios-title p {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cor-cinza-escuro);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.beneficio-card {
  background-color: var(--cor-branco);
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  box-shadow: var(--sombra-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(196, 12, 48, 0.1);
}

.beneficio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-hover);
}

.beneficio-icon {
  margin-bottom: 1.5rem;
}

.beneficio-icon i {
  font-size: 3rem;
  color: var(--cor-vermelho-principal);
}

.beneficio-icon img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(7482%) hue-rotate(357deg) brightness(95%) contrast(118%);
}

.beneficio-text h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cor-cinza-escuro);
  line-height: 1.4;
  margin: 0;
}

/* Media Queries para Benefícios */
@media (max-width: 768px) {
  .beneficios-container {
    padding: 1.5rem 0;
    margin-top: 0;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .beneficio-card {
    padding: 1.5rem;
  }

  .beneficio-icon i {
    font-size: 2.5rem;
  }

  .beneficio-icon img {
    width: 2.5rem;
    height: 2.5rem;
    filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(7482%) hue-rotate(357deg) brightness(95%) contrast(118%);
  }

  .beneficio-text h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .beneficios-container {
    padding: 1rem 0;
    margin-top: 0;
  }

  .beneficios-title p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .beneficio-card {
    padding: 1.2rem;
  }

  .beneficio-icon i {
    font-size: 2rem;
  }

  .beneficio-icon img {
    width: 2rem;
    height: 2rem;
    filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(7482%) hue-rotate(357deg) brightness(95%) contrast(118%);
  }

  .beneficio-text h4 {
    font-size: 1rem;
  }
}

/* Media Query para resolução acima de 1440px - 5 cards em uma linha */
@media (min-width: 1441px) {
  .beneficios-grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1400px;
    gap: 1.5rem;
  }

  .beneficio-card {
    padding: 1.8rem;
  }

  .beneficio-icon i {
    font-size: 2.5rem;
  }

  .beneficio-icon img {
    width: 2.5rem;
    height: 2.5rem;
    filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(7482%) hue-rotate(357deg) brightness(95%) contrast(118%);
  }

  .beneficio-text h4 {
    font-size: 1.1rem;
  }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: linear-gradient(135deg, #2c1810 0%, #1a0f08 50%, #0d0604 100%);
  padding: 100px 0 40px 0;
  position: relative;
  overflow: visible;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(198, 12, 48, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 500px 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.newsletter-left {
  padding-right: 20px;
}

.newsletter-title {
  font-family: 'Soulcraft', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cor-branco);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.newsletter-description {
  color: var(--cor-branco);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
  opacity: 0.9;
}

.newsletter-form-container {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px);
  border-radius: 6px;
  padding: 10px 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Estilos para o formulário do RD Station */
.rd-form-wrapper {
  width: 100%;
}

/* Reset dos estilos padrão do RD Station */
.rd-form-wrapper form {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

/* Campos de input do RD Station */
.rd-form-wrapper input[type="text"],
.rd-form-wrapper input[type="email"],
.rd-form-wrapper input[type="tel"],
.rd-form-wrapper input[type="number"],
.rd-form-wrapper select,
.rd-form-wrapper textarea {
  width: 100% !important;
  padding: 12px 15px !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-family: 'Barlow', sans-serif !important;
  transition: all 0.3s ease !important;
  background-color: var(--cor-branco) !important;
  color: var(--cor-cinza-escuro) !important;
  margin-bottom: 20px !important;
  box-sizing: border-box !important;
}

.rd-form-wrapper input[type="text"]:focus,
.rd-form-wrapper input[type="email"]:focus,
.rd-form-wrapper input[type="tel"]:focus,
.rd-form-wrapper input[type="number"]:focus,
.rd-form-wrapper select:focus,
.rd-form-wrapper textarea:focus {
  outline: none !important;
  border-color: var(--cor-vermelho-principal) !important;
  box-shadow: 0 0 0 3px rgba(198, 12, 48, 0.1) !important;
}

/* Labels do RD Station */
.rd-form-wrapper label {
  display: block !important;
  margin-bottom: 8px !important;
  font-weight: 600 !important;
  color: var(--cor-branco) !important;
  font-size: 0.9rem !important;
  font-family: 'Barlow', sans-serif !important;
}

/* Botão de envio do RD Station */
.rd-form-wrapper button[type="submit"],
.rd-form-wrapper input[type="submit"] {
  width: 100% !important;
  background: linear-gradient(45deg, var(--cor-vermelho-principal), var(--cor-vermelho-escuro)) !important;
  color: var(--cor-branco) !important;
  border: none !important;
  padding: 15px 30px !important;
  border-radius: 50px !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  margin-top: 10px !important;
}

.rd-form-wrapper button[type="submit"]:hover,
.rd-form-wrapper input[type="submit"]:hover {
  background: linear-gradient(45deg, var(--cor-vermelho-escuro), var(--cor-vermelho-principal)) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(198, 12, 48, 0.4) !important;
}

/* Efeito de brilho no botão */
.rd-form-wrapper button[type="submit"]::before,
.rd-form-wrapper input[type="submit"]::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
  transition: left 0.5s !important;
}

.rd-form-wrapper button[type="submit"]:hover::before,
.rd-form-wrapper input[type="submit"]:hover::before {
  left: 100% !important;
}

/* Remover espaçamentos desnecessários */
.rd-form-wrapper .rd-form-field {
  margin-bottom: 0 !important;
}

.rd-form-wrapper .rd-form-field-group {
  margin-bottom: 0 !important;
}

/* Estilo para mensagens de erro/sucesso */
.rd-form-wrapper .rd-form-error,
.rd-form-wrapper .rd-form-success {
  font-family: 'Barlow', sans-serif !important;
  font-size: 0.9rem !important;
  margin-top: 5px !important;
  padding: 8px 12px !important;
  border-radius: 6px !important;
}

.rd-form-wrapper .rd-form-error {
  background-color: rgba(211, 47, 47, 0.1) !important;
  color: #d32f2f !important;
  border: 1px solid rgba(211, 47, 47, 0.3) !important;
}

.rd-form-wrapper .rd-form-success {
  background-color: rgba(76, 175, 80, 0.1) !important;
  color: #4caf50 !important;
  border: 1px solid rgba(76, 175, 80, 0.3) !important;
}

.newsletter-form .form-group {
  margin-bottom: 20px;
}

.newsletter-form .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--cor-branco);
  font-size: 0.9rem;
}

.newsletter-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--cor-branco);
}

.newsletter-form .form-control:focus {
  outline: none;
  border-color: var(--cor-vermelho-principal);
  box-shadow: 0 0 0 3px rgba(198, 12, 48, 0.1);
}

.btn-newsletter {
  width: 100%;
  background: linear-gradient(45deg, var(--cor-vermelho-principal), var(--cor-vermelho-escuro));
  color: var(--cor-branco);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.btn-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-newsletter:hover::before {
  left: 100%;
}

.btn-newsletter:hover {
  background: linear-gradient(45deg, var(--cor-vermelho-escuro), var(--cor-vermelho-principal));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 12, 48, 0.4);
}

.newsletter-image {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: flex-end;
  padding: 20px;
  position: relative;
}

.newsletter-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(198, 12, 48, 0.05) 0%, transparent 70%);
  z-index: -1;
  animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.players-image {
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  margin-bottom: -50px;
  margin-top: -20px;
}

.players-image:hover {
  transform: scale(1.08) translateY(-10px);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(198, 12, 48, 0.3));
}

.players-image::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, transparent, rgba(198, 12, 48, 0.05), transparent);
  border-radius: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.players-image:hover::after {
  opacity: 1;
}

/* Responsividade */
@media (max-width: 1200px) {
  .newsletter-content {
    grid-template-columns: 1fr 550px 1fr;
    gap: 40px;
  }

  .newsletter-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .newsletter-left {
    padding-right: 0;
  }

  .newsletter-image {
    order: -1;
    padding-left: 0;
    align-items: flex-end;
  }

  .newsletter-form-container {
    max-width: 280px;
    margin: 0 auto;
  }

  .players-image {
    max-width: 700px;
    margin-bottom: -40px;
    margin-top: -30px;
  }
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 80px 0 30px 0;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .newsletter-description {
    font-size: 1rem;
  }

  /* Responsividade do formulário RD Station */
  .rd-form-wrapper input[type="text"],
  .rd-form-wrapper input[type="email"],
  .rd-form-wrapper input[type="tel"],
  .rd-form-wrapper input[type="number"],
  .rd-form-wrapper select,
  .rd-form-wrapper textarea {
    padding: 10px 12px !important;
    font-size: 0.95rem !important;
  }

  .rd-form-wrapper button[type="submit"],
  .rd-form-wrapper input[type="submit"] {
    padding: 12px 25px !important;
    font-size: 0.95rem !important;
  }

  .newsletter-form-container {
    padding: 30px 25px;
    margin: 0 auto;
    max-width: 300px;
    display: flex;
    justify-content: center;
  }

  .newsletter-form {
    width: 100%;
    text-align: center;
  }

  .players-image {
    max-width: 550px;
    margin-bottom: -30px;
    margin-top: -20px;
  }
}

@media (max-width: 576px) {
  .newsletter-section {
    padding: 60px 0 25px 0;
  }

  .newsletter-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .newsletter-description br {
    display: none;
  }

  .newsletter-form-container {
    padding: 25px 20px;
    margin: 0 auto;
    max-width: 280px;
    display: flex;
    justify-content: center;
  }

  .newsletter-form {
    width: 100%;
    text-align: center;
  }

  .newsletter-form .form-control {
    padding: 10px 12px;
  }

  .btn-newsletter {
    padding: 12px 25px;
  }

  /* Responsividade do formulário RD Station para mobile pequeno */
  .rd-form-wrapper input[type="text"],
  .rd-form-wrapper input[type="email"],
  .rd-form-wrapper input[type="tel"],
  .rd-form-wrapper input[type="number"],
  .rd-form-wrapper select,
  .rd-form-wrapper textarea {
    padding: 8px 10px !important;
    font-size: 0.9rem !important;
  }

  .rd-form-wrapper button[type="submit"],
  .rd-form-wrapper input[type="submit"] {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
  }

  .rd-form-wrapper label {
    font-size: 0.85rem !important;
  }

  .players-image {
    max-width: 250px;
    position: relative;
  }

  /* Fade transparente para suavizar transição entre jogadores e fundo no mobile */
  .players-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 0 0 0 0;
  }
}

.cardjogo * {
  user-select: none;
  pointer-events: none;
}

.cardjogo .btncardjogo {
  pointer-events: auto;
  /* Permite cliques no botão */
}

/* Estilos para estados de carregamento dos cards */
.loading-cards,
.error-cards,
.no-games {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  color: var(--cor-cinza-texto);
  background: var(--cor-cinza-claro);
  border-radius: 12px;
  margin: 20px;
}

.loading-cards {
  color: var(--cor-vermelho-principal);
  font-weight: 500;
}

.error-cards {
  color: #d32f2f;
  font-weight: 500;
}

.no-games {
  color: var(--cor-cinza-texto);
  font-style: italic;
}

/* Responsividade para os cards */
@media (max-width: 768px) {
  .cardjogo {
    width: 280px;
    height: 380px;
    padding: 30px 20px;
  }
}

/* Footer Styles */
.ec-footer {
	width: 100%;
	color: #FFFFFF;
	background-color: #080B1E;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ec-footer-upper-div {
	width: 100%;
	height: 100%;		
	display: flex;
	flex-direction: column;
	place-items: center;
	justify-content: center;
	gap: 45px;
	padding: 40px 0 36px;
	margin-top: 0;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.ec-anchor-top {
	position: absolute;
	bottom: 90px;
	right: 40px;
	width: 44px;
	height: 33px;
	background-color: #155F97;
	border-radius: 35px;
	color: white;
	display: flex;
	place-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
}

.ec-anchor-top-mobile {
	position: absolute;
	right: 50%;
	transform: translateX(50%);
	top: -18px;
	width: 44px;
	height: 33px;
	background-color: #155F97;
	border-radius: 35px;
	color: white;
	place-items: center;
	justify-content: center;
	display: none;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
}

.ec-anchor-top:hover, .ec-anchor-top-mobile:hover {
	background-color: #FFFFFF;
	color: #155F97;
}

.ec-footer-upper-div hr {
	width: 100%;
	height: 1px;
	background-color: #FFFFFF;
	opacity: 0.1;
	margin: 0;
	border: none;
}



.ec-footer-links {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 60px;
}

.ec-footer-links-container {
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style-type: none;
	padding: 0;
	margin: 0;
	margin-block-start: 0;
	margin-block-end: 0;
	padding-inline-start: 0;   
}

.ec-footer-links-container a {
	text-decoration: none;
	font-size: 14px;
	line-height: 150%;
	font-weight: 500;
	color: #FFFFFF;
}

.ec-footer-links-container a:hover {
	color: #828A95;
}

.ec-footer-links h3 {
	text-transform: uppercase;
	color: #FFFFFF;
	font-weight: 800;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 8px;
	letter-spacing: 3px;
}

.ec-footer-column {
	display: flex;
	flex-direction: column;
}

.ec-footer-other-logos {
	display: flex;
	flex-direction: column;
	gap: 33px;
}

.ec-footer-contacts-container {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ec-footer-contacts-container a {
	display: flex;
	place-items: center;
	gap: 4px;
	text-decoration: none;
	color: white;
	font-size: 14px;
	line-height: 150%;
	font-weight: 500;
}

.ec-footer-contacts-container a:hover {
	color: #828A95;
}

.ec-footer-contacts-container h3 {
	text-transform: uppercase;
	color: #FFFFFF;
	font-weight: 800;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 8px;
	letter-spacing: 3px;
}

.ec-footer-social {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 12px;
}

.ec-footer-social a {
	color: white;
	width: 32px;
	height: 32px;
	border-radius: 20px;
	display: flex;
	place-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.2);
	text-decoration: none;
	font-size: 14px;
	text-align: center;
	transition: all 0.3s ease;
}

.ec-footer-social a i {
	font-size: 14px;
	line-height: 1;
}

.ec-footer-social a:hover {
	color: #080B1E;
	background-color: #FFFFFF;
}

.ec-footer-bottom-text {
	width: 100vw;
	min-height: 52px;
	background-color:rgba(24, 28, 48, 1);	
	display: flex;
	place-items: center;
	justify-content: center;
	gap: 12px;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
}

.ec-footer-bottom-text span {
	font-weight: 400;
	font-size: 14px;
	line-height: 13px;
	color: #FFFFFF;
}

.ec-footer-certificates {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 21px;
}

.ec-footer-certificates div {
	display: flex;
	flex-direction: column;
	gap: 16px;
}







.ec-footer-certificate {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 1059px) {
	.ec-footer-certificate {
		width: 65%;
		height: 65%;
	}


	.ec-footer-links {
		flex-wrap: wrap;
		gap: 50px 20px;
		justify-content: center;
	}	
}

@media screen and (max-width: 768px) {
	.ec-footer-upper-div {			
		padding: 36px 25px;
		gap: 50px;
		max-width: 100%;
	}	
	.ec-footer-upper-div hr {
		display: none;
	}
	.ec-footer-links {
		justify-content: center;
		padding: 0 25px;
	}
	.ec-footer-links h3 {
		font-size: 14px;
		letter-spacing: 2px;
	}
	.ec-footer-links-container a, .ec-footer-contacts-container a {
		font-size: 12px;
	}
	.ec-footer-column {
		flex-shrink: 1;
	}
	.ec-footer-other-logos:last-of-type {
		flex-direction: row;
	}	
	.ec-footer-bottom-text {
		padding: 24px;	
		flex-wrap: wrap;
		text-align: center;	
		position: relative;
		margin-top: 30px;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
	}
	.ec-anchor-top {
		display: none;
	}
	.ec-anchor-top-mobile {
		display: flex;
	}
}

@media screen and (max-width: 460px) {
	.ec-footer-links {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		padding: 0 15px;
		gap: 20px;
	}

	.ec-footer-social a {
		width: 28px;
		height: 28px;
	}
	.ec-footer-certificates {
		display: flex;
		flex-direction: column;
	}
	.ec-footer-certificates div {
		width: 85px;
	}

	/* Estrutura do grid para mobile:
	   Linha 1: Institucional (ocupa ambas as colunas)
	   Linha 2: Atendimento (coluna 1) | Acompanhe-nos + Certificados (coluna 2)
	*/
	
	/* Institucional - Ocupa ambas as colunas na primeira linha */
	.ec-footer-links-2.ec-footer-column {
		grid-column: 1 / span 2;
		grid-row: 1;
	}
	
	/* Atendimento - Coluna 1, Linha 2 */
	.ec-footer-other-logos:first-of-type {
		grid-column: 1;
		grid-row: 2;
	}
	
	/* Certificados - Coluna 2, Linha 2 (ao lado de Acompanhe-nos) */
	.ec-footer-other-logos:last-of-type {
		grid-column: 2;
		grid-row: 2;
		align-self: start;
	}
	
}

/* ===== ESTILOS DO FAQ ===== */
.faq-section {
  background-color: var(--cor-preto);
  color: var(--cor-branco);
}

.faq-title {
  font-family: 'Soulcraft', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cor-branco);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--espacamento-lg);
}

.faq-accordion .accordion-item {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px !important;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--cor-branco);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  padding: 20px 25px;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--cor-vermelho-principal);
  color: var(--cor-branco);
  box-shadow: none;
}

.faq-accordion .accordion-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--cor-branco);
}

.faq-accordion .accordion-button:not(.collapsed):hover {
  background-color: var(--cor-vermelho-escuro);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--cor-vermelho-principal);
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-body {
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--cor-branco);
  padding: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-accordion .accordion-body p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.faq-accordion .accordion-body ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.faq-accordion .accordion-body li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
}

.faq-accordion .accordion-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cor-vermelho-principal);
  font-weight: bold;
  font-size: 1.1rem;
  top: 10px;
}

/* Estilo para quando há descrição seguida de lista */
.faq-accordion .accordion-body p + ul {
  margin-top: 20px;
}

/* Garantir que o último item não tenha margem inferior */
.faq-accordion .accordion-body li:last-child {
  padding-bottom: 0;
}

.faq-accordion .accordion-body .faq-highlight {
  background: rgba(198, 12, 48, 0.2);
  padding: 15px;
  border-left: 4px solid var(--cor-vermelho-principal);
  margin: 15px 0;
  border-radius: 5px;
}

.faq-accordion .accordion-body .faq-highlight h5 {
  color: var(--cor-branco);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Botão FAQ Completo */
.faq-complete-btn {
  background: transparent !important;
  border: 2px solid var(--cor-branco) !important;
  color: var(--cor-branco) !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 15px 35px !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.faq-complete-btn::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
  transition: left 0.5s ease !important;
}

.faq-complete-btn:hover::before {
  left: 100% !important;
}

.faq-complete-btn:hover {
  background: var(--cor-branco) !important;
  color: var(--cor-preto) !important;
  border-color: var(--cor-branco) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3) !important;
}

.faq-complete-btn:active {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2) !important;
}

/* Responsividade do FAQ */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
    text-align: center;
  }

  .faq-accordion .accordion-button {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .faq-accordion .accordion-body {
    padding: 20px;
  }

  .faq-accordion .accordion-body p {
    font-size: 0.95rem;
  }

  .faq-complete-btn {
    padding: 12px 25px !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 576px) {
  .faq-title {
    font-size: 1.8rem;
    margin-bottom: var(--espacamento-md);
  }

  .faq-accordion .accordion-button {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  .faq-accordion .accordion-body {
    padding: 15px;
  }

  .faq-accordion .accordion-body p {
    font-size: 0.9rem;
  }

  .faq-accordion .accordion-body .faq-highlight {
    padding: 12px;
    margin: 10px 0;
  }

  .faq-complete-btn {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.8px !important;
  }
}

/* ==========================================
   PRELOADER E VÍDEO DE INTRODUÇÃO
   ========================================== */

/* Overlay geral */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Preloader */
.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.preloader-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.preloader-logo {
    width: 200px;
    max-width: 80vw;
    height: auto;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

/* Loader animado */
.loader {
    margin: 20px auto;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(181, 18, 16, 0.2);
    border-top-color: #B51210;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader-text {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

/* Container do vídeo de introdução */
.intro-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Para caso use GIF ao invés de vídeo */
.intro-gif {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Botão de pular intro */
.skip-intro-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(181, 18, 16, 0.9);
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100000;
    animation: fadeInUp 0.5s ease 1s forwards;
    opacity: 0;
}

.skip-intro-btn:hover {
    background: #FFFFFF;
    color: #B51210;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(181, 18, 16, 0.3);
}

/* Animações */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .preloader-logo {
        width: 150px;
    }
    
    .skip-intro-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .preloader-text {
        font-size: 1rem;
    }
}