/* ============================
   CAPOEIRA VIVA - STYLE.CSS
   ============================ */

html, body {
  height: 100%;
}

footer {
  background-color: #111;          /* cor de fundo do footer */
  padding: 30px 20px;
  text-align: center;
}

.footer-sponsors {
  display: flex;
  flex-wrap: wrap;                 /* quebra linha se precisar */
  justify-content: center;         /* centraliza as imagens */
  align-items: center;
  gap: 20px;                       /* espaço entre as imagens */
}

.footer-image {
  height: 50px;                    /* tamanho uniforme */
  width: auto;
  filter: grayscale(100%) brightness(80%); /* deixa mais discreto */
  transition: all 0.3s ease;       /* animação suave */
}

.footer-image:hover {
  filter: grayscale(0%) brightness(100%); /* volta à cor ao passar o mouse */
  transform: scale(1.05);                 /* leve zoom */
}

 .podcast-description {
   font-size: 1.2rem;
   max-width: 800px;
   margin: 0 auto 1.5rem auto;
   text-align: center;
   color: #333;
 }
podcast-player {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

/* Personaliza o elemento <audio> */
.podcast-player audio {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  background: #fff8e1;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  outline: none;
  padding: 6px 0;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/*gambiarra tamanho de letra*/
.participe{
  font-size: 1.3rem;
}
.noticias{
  font-size: 1.3rem;
}
/* Importante! antes de usar, lembra de incluir as fontes no HTML:
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto&family=Saira+Condensed&display=swap" rel="stylesheet" />
*/

/* === Fonte e reset === */
body {
  font-family: 'Roboto', 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5e9da;
  color: #1C1C1C;
  line-height: 1.6;
  padding-top: 80px;
}

main {
  flex: 1 0 auto;
}

footer, .rodape {
  flex-shrink: 0;
  margin-top: 0; /* Rodapé sempre  no final */
}

.img-ajustada {
 display: block;              /* evita que fique com espaços estranhos */
  margin: 20px auto;           /* centraliza horizontalmente e dá um espaço +/- */
  max-width: 60%;              /* ocupa no máximo 90% da largura da tela */
  height: auto;                /* mantém a proporção */
  border-radius: 12px;         /* cantos arredondados */
  box-shadow: 0 4px 12px rgba(0,0,0,0.25); /* sombra suave */
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.5s ease;
  filter: brightness(0.95);
}
.img-ajustada:hover {
  transform: scale(1.03); /* zoom */
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  filter: brightness(1.05);
}

.img-ajustada:hover {
  transform: scale(1.03) rotate(1deg);
  filter: brightness(1.05);
}

/* Efeito ao passar o mouse */
.img-site:hover {
  transform: scale(1.03);      /* zoom */
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Remove o padding-top do body so na home */
body.home {
  padding-top: 0 !important;
}

/* Botão voltar ao top */
.btn-topo {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(135deg, #B71C1C 60%, #FFC107 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  z-index: 2000;
  display: none;
  transition: background 0.3s, color 0.3s, opacity 0.3s, transform 0.2s;
  opacity: 0.92;
}
.btn-topo:hover, .btn-topo:focus {
  background: linear-gradient(135deg, #FFC107 60%, #B71C1C 100%);
  color: #B71C1C;
  outline: 2px solid #FFC107;
  opacity: 1;
  transform: scale(1.08);
}

/* Container padrão */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* header-specific container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Cabeçalho (pra não falar palavrão) */
header {
  background: rgba(0, 0, 0, 0.3); /* Preto com 30% de opacidade */
  color: white;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-family: 'Saira Condensed', sans-serif;
  box-shadow: none;
  transition: background-color 0.35s, box-shadow 0.35s, height 0.3s, padding 0.3s;
  height: 80px;
  backdrop-filter: blur(4px); /* Efeito de desfoque suave */
}

header.scrolled {
  background-color: #B71C1C;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  height: 60px;
  padding: 0.6rem 0;
  backdrop-filter: none; /* Remove o desfoque quando scrolled */
}

.logo {
  height: 70px;
  vertical-align: middle;
  max-width: 100%;
  object-fit: contain;
  transition: height 0.3s;
  border-radius: 5px;
}

header.scrolled .logo {
  height: 48px;
}

/* === Menu === */
.nav-menu {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 600;
  margin: 0;
  align-items: center;
}

.nav-menu li {
  display: inline-block;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.25);
}

/* Underline animado */
.nav-menu li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #FFC107;
  transition: width 0.3s;
}

.nav-menu li a:hover {
  color: #FFC107;
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* Acessibilidade: foco no visível */
.btn:focus, .nav-menu li a:focus {
  outline: 2px solid #FFC107;
  outline-offset: 2px;
}

/* Botão hamburger animado */
.menu-toggle {
  position: relative;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  outline: none;
  display: none;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  background-color: white;
  height: 3px;
  border-radius: 3px;
  position: absolute;
  width: 100%;
  transition: all 0.3s;
}

.menu-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle span::before {
  content: "";
  top: -10px;
}

.menu-toggle span::after {
  content: "";
  top: 10px;
}

.menu-toggle.active span {
  background-color: transparent;
}

.menu-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/*  HERO (que não é super heroi) */
.hero {
  position: relative;
  padding: 0;
  text-align: center;
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  animation: fadeIn 1s ease-in;
  background: none;
  overflow: hidden;
  min-height: 100vh;
}

/* Overlay degradê para contraste */
.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

/* Container pra imagens del carrossel */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Carrossel de imagens com efeitinho de zoom */
.carousel-image {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.7s, transform 0.7s;
  transform: scale(1.03);
  filter: brightness(0.7); /* ESCURECE A IMAGEM */
}
.carousel-image.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* Conteúdo da hero acima pra ficar em cima */
.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

.hero p {
  color: #fcf8f8;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  text-shadow: 4px 4px 5px rgba(0,0,0,0.25);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  background-color: #1C1C1C;
  color: #FFC107;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-family: 'Saira Condensed', sans-serif;
  transition: background 0.3s, color 0.3s;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.btn:hover {
  background-color: #FFC107;
  color: #eeb806;
  box-shadow: 0 5px 10px rgba(255,193,7,0.7);
}

/* === Seções gerais === */
section {
  padding: 4rem 0;
  font-family: 'Roboto', sans-serif;
}

h2 {
  font-family:'Saira Condensed', sans-serif;
  font-size: clamp(4rem, 5vw, 2.8rem);
  margin-bottom: 2.5rem;
  text-align: center;
  color: #B71C1C;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #B71C1C, #FFC107);
  border-radius: 2px;
}

.subsecao {
  margin-bottom: 3rem;
}

.subsecao  p {
  font-size: 1.3rem;
}

.subsecao h3 {
  color: #7f1212;
  font-size: 2.8rem;
  margin-bottom: 1.3rem;
  font-family: 'Saira Condensed', sans-serif;
  position: relative;
  padding-left: 15px;
}

.subsecao h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 5px;
  background-color: #B71C1C;
  border-radius: 3px;
}

.subsecao ul {
  padding-left: 1.5rem;
  list-style: disc;
  font-size: 1.3rem;
}

.subsecao ul li {
  margin-bottom: 0.6rem;
  color: #1C1C1C;
}

.video-exemplo iframe {
  border-radius: 8px;
  margin-top: 1rem;
}

/* Intro intruduzir -_-*/
.intro {
  background-color: #F5E9DA;
  animation: fadeInUp 0.8s ease-in;
  color: #1C1C1C;
  font-family: 'Roboto', sans-serif;
}

.intro p {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* === Rodapé === */
footer {
  background-color: #1C1C1C;
  color: #FFC107;
  text-align: center;
  padding: 1rem 0;
  margin-top: 0; /* Rodapé colado no final */
  font-family: 'Saira Condensed', sans-serif;
}

/*  Animações  */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* fade-in com scroll  */
.fade-in {
  animation: fadeInUp 0.8s ease-in forwards;
  animation-play-state: paused;
}

/* RESPONSIVIDADE MOBILE  */
@media (max-width: 768px) {
  /* Ajuste de tamanhos de fonte para mobile */
  .participe, .noticias, .subsecao p, .subsecao ul, .intro p, .hero p {
    font-size: 1.1rem !important;
  }
  
  /* Melhorias de espaçamento para mobile */
  section {
    padding: 2.5rem 0;
  }
  
  .container {
    width: 85%;
    padding: 0 10px;
  }
  
  h2 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    padding-bottom: 12px;
  }
  
  h2::after {
    width: 60px;
    height: 3px;
  }
  
  .subsecao h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-left: 12px;
  }
  
  .subsecao {
    margin-bottom: 2.2rem;
  }
  
  /* Melhorias de toque para botões */
  .btn {
    padding: 0.9rem 1.6rem;
    min-width: 44px; /* Tamanho mínimo para toque */
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .cta-buttons {
    gap: 0.8rem;
  }
  
  .lista-btn {
    padding: 10px 16px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .card-depoimento {
    max-height: 300px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
    margin: 1.5rem 0;
    position: relative;
    text-align: justify;
    hyphens: auto;
    /* Ajustes específicos para melhorar o texto */
    word-spacing: -0.05em;
    text-rendering: optimizeLegibility;
  }
  
  .card-depoimento img.foto-mestre {
    max-width: 100px;
    margin: 0 auto 1rem;
    display: block;
  }
  
  .texto-depoimento blockquote {
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
    /* Ajustes para melhor ocupação do espaço */
    word-spacing: -0.05em;
  }
  
  /* Melhorar a quebra de palavras longas */
  .texto-depoimento {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  /* Indicador visual de que há mais conteúdo para scroll */
  .card-depoimento::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, transparent, white 80%);
    pointer-events: none;
  }
  
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
    width: 44px;
    height: 44px;
  }

  .nav-menu {
    flex-direction: column;
    background-color: #B71C1C;
    position: fixed;
    top: 80px; /* Header tem 80px quando não scrolled */
    right: 0;
    left: auto; /* Alterado para sair da direita */
    width: 80%; /* Ocupa 80% da largura da tela */
    max-width: 320px;
    display: flex;
    padding: 1rem 0;
    z-index: 2000;
    box-shadow: -4px 0 12px rgba(0,0,0,0.2);
    height: calc(100vh - 80px);
    overflow-y: auto;
    transform: translateX(100%); /* Inicia fora da tela */
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    /* Previne scroll do body quando menu está aberto */
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    transform: translateX(0); /* Entra na tela */
    opacity: 1;
    animation: slideInRight 0.4s ease forwards;
    display: flex !important;
  }

  .nav-menu.closing {
    animation: slideOutRight 0.4s ease forwards;
  }

  /* Quando header está scrolled (60px) */
  header.scrolled ~ .nav-menu {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu li a {
    display: block;
    padding: 1rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Garante que ocupe toda a largura */
    box-sizing: border-box; /* Inclui padding na largura total */
  }

  .nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  /* CORREÇÃO: Garantir que todos os itens do menu fiquem um embaixo do outro */
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
  }
  
  .nav-menu li {
    display: block;
    width: 100%;
    margin: 0;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .video-exemplo iframe {
    height: 200px;
  }

  .educacao {
    background-color: #F5E9DA;
  }

  .educacao img {
    display: block;
    max-width: 100%;
    border-radius: 8px;
    margin-top: 1rem;
  }

  .educacao ul {
    padding-left: 1.5rem;
    list-style: square;
  }

  .educacao ul li {
    margin-bottom: 0.5rem;
  }

  .noticias {
    background-color: #fff5f5;
  }

  .lista-noticias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .card-noticia {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .card-noticia img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .card-noticia h3 {
    font-size: 1.3rem;
    margin: 1rem;
    color: #B71C1C;
  }

  .card-noticia p {
    flex-grow: 1;
    margin: 0 1rem 1rem 1rem;
    
  }

  .card-noticia .btn {
    margin: 0 1rem 1.5rem 1rem;
    align-self: flex-start;
  }

  .card-noticia:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }

  .participe {
    background-color: #fff5f5;
    text-align: center;
  }

  .participe p {
    max-width: 800px;
    margin: 0 auto 1rem auto;
  }

  .participe h3 {
    color: #B71C1C;
    margin-top: 2rem;
    
  }

  .participe a {
    font-weight: bold;
    transition: color 0.3s;
  }

  .participe a:hover {
    color: #7f1212;
  }

  .contato {
    background-color: #F5E9DA;
    text-align: center;
    padding: 3rem 1rem;
  }

  .contato .info-contato {
    margin-top: 1.5rem;
  }

  .redes-sociais {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .redes-sociais a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s, filter 0.3s;
  }

  .redes-sociais a img:hover {
    transform: scale(1.1);
    filter: brightness(0.8);
  }

  .rodape {
    background-color: #B71C1C;
    color: #FFC107;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    margin-top: 0; /* Rodapé colado no final (gambiarra)*/
  }

  .rodape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFC107 , #B71C1C);
  }

  .rodape p {
    margin: 0.3rem 0;
  }

  /* Botão voltar ao topo do responsivo */
  .btn-topo {
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
  
  /* Ajustes de imagens para mobile */
  .img-ajustada {
    max-width: 85%;
    margin: 15px auto;
  }
  
  .img-esquerda {
    max-width: 100%;
    float: none;
    margin: 0 auto 20px auto;
    display: block;
  }
  
  /* Melhorias no carrossel para mobile */
  .carrossel-item iframe {
    height: 220px;
  }
  
  .btns {
    padding: 10px 16px;
    font-size: 20px;
  }
  
  /* Ajustes de texto para melhor legibilidade */
  .texto-depoimento blockquote {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* Melhorias de espaçamento para elementos de lista */
  .subsecao ul {
    padding-left: 1.2rem;
  }
  
  .subsecao ul li {
    margin-bottom: 0.8rem;
  }
}

/* Para telas muito pequenas, ajustes adicionais */
@media (max-width: 480px) {
  .card-depoimento {
    max-height: 250px;
    padding: 0.8rem;
  }
  
  .texto-depoimento blockquote {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  h2 {
    font-size: 1.9rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    gap: 0.6rem;
  }
  
  .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .carrossel-item iframe {
    height: 200px;
  }
  
  .slide-content h3 {
    font-size: 1.2rem;
  }
  
  .slide-content p {
    font-size: 0.9rem;
  }
}

.carrossel-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.carrossel {
  display: flex;
  transition: transform 0.5s ease;
}

.carrossel-item {
  min-width: 100%; /* mostra 1 vídeo por vez */
  display: flex;
  justify-content: center;
}

.carrossel-item iframe {
  width: 100%;
  max-width: 700px;
  height: 400px;
  display: block;
  margin: 0 auto 1.5rem auto;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

.btns {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 60%;
  transition: background 0.3s;
  z-index: 5;        
}

.btn:hover {
  background: rgba(0,0,0,0.8);
}

.prev { left: 10px; }
.next { right: 10px; }

.img-esquerda {
  max-width: 400px;     /* evita que fique gigante */
  width: 100%;          /* adapta no celular */
  height: auto;         /* mantém proporção */          /* joga a imagem pra esquerda */
  margin: 0 20px 20px 0; /* espaço a direita and embaixo pra não grudar no texto */
  border-radius: 5px;   /* cantos arredondados */
  box-shadow: 0 4px 10px rgba(0,0,0,0.25); /* sombrazinha suave */
  
}
.img-esquerda:hover {
  transform: scale(1.03); /* leve zoom */
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.lista-btn{
  display: inline-block;
  margin-left: 12px;           /* espaço do texto */
  padding: 8px 14px;
  background-color: #111;      /* fundo preto */
  color: #FFD700;              /* amarelo dourado */
  border: 2px solid #FFD700;   /* borda dourada */
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;       /* remove sublinhado dos links */
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover = brilho dourado */
.btn-dourado:hover {
  background-color: #FFD700;
  color: #111;                 /* inverte as cores */
}

/* Clique = efeito de pressão */
.btn-dourado:active {
  transform: scale(0.92);
}

.depoimento-mestre, .card-depoimento {
  text-align: center;
  margin: 2.5rem 0;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.depoimento-mestre img, .card-depoimento img {
  max-width: 180px;
  border-radius: 50%;
  margin-bottom: 1rem;
  
}
.card-depoimento img:hover {
  transform: scale(1.03);      /* leve zoom */
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.texto-depoimento blockquote {
  font-style: italic;
  color: #444;
  margin-bottom: 0.5rem;
  line-height: 1.7;
  position: relative;
  padding: 0 2rem;
}

.texto-depoimento blockquote::before,
.texto-depoimento blockquote::after {
  content: '"';
  font-size: 3rem;
  color: #B71C1C;
  opacity: 0.2;
  position: absolute;
  line-height: 1;
}

.texto-depoimento blockquote::before {
  top: -10px;
  left: 0;
}

.texto-depoimento blockquote::after {
  bottom: -30px;
  right: 0;
}

.instagram-container {
  margin: 20px 0;
  text-align: left; /* garante que fique para esquerda */
}

.instagram-container blockquote.instagram-media {
  margin: 0 !important;
  width: 100% !important;
  max-width: 540px !important; /* limite do Instagram */
}

/* Contato */
/* CONTATO */
#contato {
  padding: 60px 20px;
  text-align: center;
}

#contato h2 {
  font-size: 4rem;
  margin-bottom: 15px;
  color: #B71C1C;
}

#contato p {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #444;
}

#contato .info-contato {
  margin-bottom: 25px;
}

#contato .info-contato a {
  color: #0077cc;
  font-weight: 500;
  text-decoration: none;
}

#contato .info-contato a:hover {
  text-decoration: underline;
}

#contato .redes-sociais {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

#contato .redes-sociais a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
#contato .redes-sociais a svg {
  width: 48px;
  height: 48px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#contato .redes-sociais a:hover svg {
  transform: scale(1.15);
  opacity: 0.9;
}

.legenda {
  font-size: 0.9rem;
  font-style: italic;
  color: #555;
  margin-top: 8px;
}

/* fotinhas*/
.swiper-capoeira {
  padding: 4rem 0;
  background: #f5e9da; /* mesmo fundo del site */
}

.swiper-container {
  width: 100%;
  padding: 20px 0 50px;
  overflow: hidden;
}

.swiper-wrapper {
  padding: 20px 0;
}

.swiper-slide {
  height: auto; /*permite que as alturas se ajustem */
  display: flex;
}

.slide-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* ocupa toda a altura del slide */
  display: flex;
  flex-direction: column;
  width: 100%; /* garante que ocupe toda a largura */
}

.slide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.slide-image {
  width: 100%;
  height: 220px; /* Altura pra imagens */
  object-fit: cover; /* mantem proporcao e preenche o espaço */
}

.slide-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.slide-content h3 {
  margin-top: 0;
  color: #B71C1C;
  font-size: 1.4rem;
  font-family: 'Bebas Neue', cursive;
  min-height: 3rem; /* Altura minima pra títulos */
}

.slide-content p {
  flex-grow: 1;
  margin-bottom: 20px;
  color: #333;
  min-height: 4.5rem; /* Altura minima para parágrafos */
}

.slide-btn {
  display: inline-block;
  background-color: #B71C1C;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  margin-top: auto; /* empurra o botão pra baixo */
}

.slide-btn:hover {
  background-color: #8B0000;
}

/* Botões de navegação del Swiper */
.swiper-button-next,
.swiper-button-prev {
  color: #B71C1C;
  background: rgba(255, 255, 255, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: white;
  transform: scale(1.1);
}

/* Paginação del Swiper */
.swiper-pagination-bullet {
  background: #B71C1C;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin: 0 8px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #FFC107;
}

/* Responsividade pra mobile */
@media (max-width: 768px) {
  .swiper-slide {
    width: 85%; /* slides mais estreitos em mobile */
    margin: 0 auto;
  }
  
  .slide-image {
    height: 180px;
  }
  
  .slide-content h3 {
    font-size: 1.2rem;
    min-height: 2.5rem;
  }
  
  .slide-content p {
    font-size: 0.9rem;
    min-height: 4rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none; /* esconde setas em mobile */
  }
}

/* Estilos para o formulário de contato */
.formulario-contato {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.formulario-contato h3 {
  color: #B71C1C;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.form-grupo {
  margin-bottom: 1.5rem;
}

.form-grupo label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.form-grupo input,
.form-grupo textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-grupo input:focus,
.form-grupo textarea:focus {
  outline: none;
  border-color: #B71C1C;
}

.form-grupo textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-enviar {
  background-color: #B71C1C;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  width: 100%;
}

.btn-enviar:hover {
  background-color: #8B0000;
}

/* Mensagens de status do formulário */
.mensagem-status {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
}

.mensagem-sucesso {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.mensagem-erro {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsividade do formulário */
@media (max-width: 768px) {
  .formulario-contato {
    padding: 1.5rem;
    margin: 0 1rem;
  }
}

/* Estilos para a galeria de fotos */
.galeria {
  padding: 4rem 0;
  background: #f5e9da;
}

.galeria h2 {
  margin-bottom: 2rem;
}

.container-galeria {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.item-galeria {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
}

.item-galeria:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.item-galeria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.item-galeria:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 1rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translateY(20px);
}

.item-galeria:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.titulo-foto {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
}

.data-foto {
  margin: 0.3rem 0 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Modal da galeria */
.modal-galeria {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  z-index: 3000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-galeria.mostrar {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.conteudo-modal {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.imagem-modal {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
}

.fechar-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
}

.info-modal {
  color: white;
  text-align: center;
  margin-top: 1rem;
}

/* Responsividade da galeria */
@media (max-width: 768px) {
  .grid-galeria {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .overlay {
    padding: 0.8rem;
  }
  
  .titulo-foto {
    font-size: 1rem;
  }
  
  .data-foto {
    font-size: 0.8rem;
  }
}

/* Animações para a galeria */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.item-galeria {
  animation: fadeInScale 0.5s ease forwards;
}

/* Lightbox personalizado */
.lightbox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-container.ativo {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.lightbox-fechar {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-navegacao {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 2rem;
}

.lightbox-btn {
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.lightbox-btn:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox-info {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
}

/* Loading para imagens */
.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #FFC107;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* responsividade do lightbox */
@media (max-width: 768px) {
  .lightbox-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .lightbox-navegacao {
    padding: 0 1rem;
  }
  
  .lightbox-fechar {
    top: -40px;
    font-size: 2.5rem;
  }
}
.videos-lista {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}
.video-bloco iframe {
  width: 100%;
  max-width: 900px;
  height: 400px;
  display: block;
  margin: 0 auto 1.5rem auto;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}
.caixa-texto {
  padding: 1rem;
  margin: 0 auto;
  max-width: 560px;
  font-size: 1.1rem;
  color: #333;
}
.caixa-texto h4 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-bottom: 1.2rem;
  text-align: center;
  color: #B71C1C;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 10px;
}

.caixa-texto h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #B71C1C, #FFC107);
  border-radius: 2px;
}

.podcast-player {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}
