/* Reset Básico de CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  background-color: #333;
  padding: 10px 0;
}

.subtitulo-guerreiro {
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 5px;
}

nav {
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: #fff;
  margin: 0 15px;
  font-size: 1.1em;
}

nav a:hover {
  color: #ff9900;
}

/* Main Section */
main {
  text-align: center;
  padding: 20px;
}

.titulo-muaythai {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
}

.banner {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 20px 0;
}

.lista-categ {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.categ {
  font-size: 1.2em;
  color: #333;
  margin: 10px 0;
}

.frase-motivacional {
  font-size: 1.5em;
  color: #ff9900;
  margin: 20px 0;
}

.imagens-laterais {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.imagens-laterais img {
  width: 45%;
  max-width: 250px;
  margin: 10px;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}

footer p {
  margin: 0;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-content {
  background-color: #fff;
  padding: 20px;
  max-width: 90%;
  max-height: 80%;
  overflow: auto;
}

.close {
  color: #fff;
  font-size: 2em;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* Media Queries para Responsividade */

@media (max-width: 768px) {
  .subtitulo-guerreiro {
    font-size: 1.2em;
  }

  .titulo-muaythai {
    font-size: 2em;
  }

  .banner {
    max-width: 100%;
  }

  .lista-categ {
    padding: 0;
  }

  .categ {
    font-size: 1em;
  }

  .frase-motivacional {
    font-size: 1.2em;
  }

  .imagens-laterais {
    flex-direction: column;
    align-items: center;
  }

  .imagens-laterais img {
    width: 80%;
    max-width: 300px;
    margin: 10px 0;
  }

  nav a {
    font-size: 1em;
    margin: 0 10px;
  }

  footer {
    font-size: 0.9em;
  }
}



/* === CSS ESPECÍFICO DA PÁGINA SOBRE === */

body.sobre {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #f0f8f1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.sobre header {
  padding: 10px 20px;
  background-color: #111;
  text-align: right;
  animation: fadeInUp 1s ease;
}

body.sobre header nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}

body.sobre header nav a:hover {
  color: #ff4d00;
}

.logo-container-sobre {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  animation: fadeInUp 1s ease;
}

.logo-background {
  background-color: #f3efef00;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.2);
  transition: transform 0.5s;
}

.logo-background:hover {
  transform: scale(1.05);
}

.logo {
  max-width: 200px;
}

.conteudo {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
  animation: fadeInUp 1.2s ease;
}

.quadro-esquerdo, .quadro-direito {
  background-color: #0b0b0c;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 300px;
  max-width: 600px;
  box-shadow: 0 0 10px rgba(255, 77, 0, 0.1);
}

.quadro-esquerdo h2, .quadro-direito h2 {
  color: #0bb63e;
  margin-top: 0;
}

.quadro-esquerdo ul {
  list-style: none;
  padding: 0;
}

.quadro-esquerdo li {
  color: #0bb63e;
  padding: 10px 0;
  border-bottom: 1px solid #0bb63e;
  transition: color 0.3s;
}

.quadro-esquerdo li:hover {
  color: #0bb63e;
}

.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.galeria img,
.galeria video {
  width: calc(33.33% - 10px);
  aspect-ratio: 1 / 1; /* Garante que o formato seja sempre quadrado */
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.galeria img:hover,
.galeria video:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #ff4d00;
}
@media (max-width: 768px) {
  .galeria img,
  .galeria video {
    width: calc(50% - 10px);
    aspect-ratio: 1 / 1;
  }
}

body.sobre footer {
  background-color: #111;
  text-align: center;
  padding: 10px;
  color: #aaa;
  animation: fadeInUp 1.5s ease;
}

  body.sobre header {
    text-align: center;
  }

  .logo-background {
    padding: 15px;
  }


@media (max-width: 480px) {
  .galeria img,
  .galeria video {
    width: 100%;
    height: auto;
  }

  .conteudo {
    flex-direction: column;
    align-items: center;
  }

  .quadro-esquerdo, .quadro-direito {
    width: 100%;
  }
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  font-weight: bold;
  z-index: 10000;
  transition: color 0.3s;
}

.lightbox .close:hover {
  color: #ff4d00;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;  /* Inicialmente oculto */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox.active {
  display: flex;  /* Torna visível quando a classe 'active' for adicionada */
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

.lightbox .close:hover {
  color: #ff4d00;
}
/* ======================== */
/* ESTILOS GERAIS      contato     */
/* ======================== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  background-color: #27077e;
  padding: 1rem;
}

.botao {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

main {
  padding: 2rem;
  text-align: center;
}

.redes-sociais {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.redes-sociais a {
  font-size: 1.2rem;
  color: #27077e;
  text-decoration: none;
}

.redes-sociais a:hover {
  text-decoration: underline;
}

.logo-container-contato {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem;
  gap: 2rem;
}

.logo-canto {
  width: 140px;
  max-width: 30%;
}

.texto-entre-logos {
  max-width: 600px;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
}

footer {
  background-color: #27077e;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Responsivo */
@media (max-width: 600px) {
  .logo-container-contato {
    flex-direction: column;
  }

  .logo-canto {
    max-width: 80px;
  }

  .texto-entre-logos {
    font-size: 1rem;
    padding: 0 1rem;
  }

  header nav {
    flex-direction: column;
    align-items: center;
  }
}
