/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, rgb(90, 52, 9) 0%, rgb(66, 3, 61) 100%);
  color: white;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}

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

hr {
  margin: 0;
  padding: 15px;
  background: rgba(26, 26, 26, 1);
  border: none;
}

/* ===== NAVEGAÇÃO ===== */
/* Estilos movidos para src/components/navbar.css */

/* ===== CONTEÚDO PRINCIPAL ===== */
main {
  color: white;
  text-align: center;
  flex: 1;
  position: relative;
}

.banner {
  width: auto;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== SEÇÕES ===== */
section {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  margin-bottom: 0;
}

.bloco-secao {
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: appear 5s linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

/* ===== IMAGENS ESPECÍFICAS ===== */
/* Estilos removidos - agora integrados nas seções minimalistas */

/* ===== BANNER COM TEXTO SOBREPOSTO ===== */
#banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  min-height: 100vh;
}

#banner img,
#banner video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.banner-texto {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
  max-width: 800px;
  padding: 0 20px;
}

.banner-texto h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  animation: fade-up 1s ease;
}

.banner-texto p {
  font-size: 1.5rem;
  line-height: 1.6;
  animation: fade-up 1s ease 0.3s both;
}

/* ===== TEXTO SOBREPOSTO NAS SEÇÕES ===== */
/* Estilos removidos - agora integrados nas seções minimalistas */

/* ===== SEÇÕES MINIMALISTAS ===== */
#about,
#atividades {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ===== ABOUT - IMAGEM À ESQUERDA, TEXTO À DIREITA ===== */
.secao-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 100%;
  height: 80%;
  background: rgba(26, 26, 26, 1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

#about .secao-container {
  flex-direction: row; /* Imagem esquerda, texto direita */
}

#about .secao-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
}

#about .secao-imagem img {
  width: auto;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: appear 1s ease;
  transition: transform 0.3s ease;
}

#about .secao-imagem img:hover {
  transform: scale(1.05);
}

#about .secao-texto {
  flex: 1;
  text-align: left;
  padding: 0 80px;
  animation: fade-up 1s ease 0.3s both;
}

/* ===== ATIVIDADES - TEXTO À ESQUERDA, IMAGEM À DIREITA ===== */
#atividades .secao-container {
  flex-direction: row-reverse; /* Texto esquerda, imagem direita */
}

#atividades .secao-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
}

#atividades .secao-imagem img {
  width: auto;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: appear 1s ease;
  transition: transform 0.3s ease;
}

#atividades .secao-imagem img:hover {
  transform: scale(1.05);
}

#atividades .secao-texto {
  flex: 1;
  text-align: left;
  padding: 0 80px;
  animation: fade-up 1s ease 0.3s both;
}

/* ===== TEXTO DAS SEÇÕES ===== */
.secao-texto h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  text-shadow: none;
}

.secao-texto p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-shadow: none;
  max-width: 500px;
}

/* ===== CARROSSEL ===== */
#anuncio {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carrossel-container {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  padding: 40px 20px;
}

.carrossel-container h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  animation: fade-up 1s ease;
}

.carrossel-descricao {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fade-up 1s ease 0.2s both;
}

.carrossel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.carrossel-slides {
  position: relative;
  width: 100%;
  height: 500px;
}

.carrossel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carrossel-slide.active {
  opacity: 1;
}

.carrossel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.carrossel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  text-align: center;
  border-radius: 0 0 20px 20px;
}

.carrossel-caption h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.carrossel-caption p {
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.carrossel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carrossel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carrossel-btn-prev {
  left: 20px;
}

.carrossel-btn-next {
  right: 20px;
}

.carrossel-indicadores {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.indicador {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicador:hover {
  background: rgba(255, 255, 255, 0.6);
}

.indicador.active {
  background: white;
  transform: scale(1.2);
}

/* ===== RESPONSIVIDADE DO CARROSSEL ===== */
@media (max-width: 1024px) {
  .carrossel {
    max-width: 800px;
  }

  .carrossel-slides {
    height: 450px;
  }

  .carrossel-container h2 {
    font-size: 2.4rem;
  }

  .carrossel-descricao {
    font-size: 1.1rem;
  }

  .carrossel-caption h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .carrossel {
    max-width: 600px;
  }

  .carrossel-slides {
    height: 400px;
  }

  .carrossel-container h2 {
    font-size: 2rem;
  }

  .carrossel-descricao {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .carrossel-caption {
    padding: 20px 15px 15px;
  }

  .carrossel-caption h3 {
    font-size: 1.2rem;
  }

  .carrossel-caption p {
    font-size: 0.9rem;
  }

  .carrossel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carrossel-btn-prev {
    left: 10px;
  }

  .carrossel-btn-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .carrossel {
    max-width: 100%;
    border-radius: 15px;
  }

  .carrossel-slides {
    height: 300px;
  }

  .carrossel-container h2 {
    font-size: 1.8rem;
  }

  .carrossel-descricao {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .carrossel-caption {
    padding: 15px 10px 10px;
  }

  .carrossel-caption h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .carrossel-caption p {
    font-size: 0.8rem;
  }

  .carrossel-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .carrossel-indicadores {
    gap: 8px;
    margin-top: 20px;
  }

  .indicador {
    width: 10px;
    height: 10px;
  }
}

/* ===== RESPONSIVIDADE GERAL ===== */
@media (max-width: 1024px) {
  .banner-texto h1 {
    font-size: 3rem;
  }

  .banner-texto p {
    font-size: 1.2rem;
  }

  .secao-texto h2 {
    font-size: 2.4rem;
  }

  .secao-texto p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .banner-texto h1 {
    font-size: 2.5rem;
  }

  .banner-texto p {
    font-size: 1.1rem;
  }

  .secao-container {
    flex-direction: column !important;
    padding: 30px 20px;
    height: auto;
    min-height: 80vh;
  }

  .secao-imagem {
    padding: 0 20px !important;
    margin-bottom: 30px;
  }

  .secao-imagem img {
    height: 250px !important;
  }

  .secao-texto {
    padding: 0 20px !important;
    text-align: center !important;
  }

  .secao-texto h2 {
    font-size: 2rem;
  }

  .secao-texto p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .banner-texto h1 {
    font-size: 2rem;
  }

  .banner-texto p {
    font-size: 1rem;
  }

  .secao-container {
    padding: 20px 15px;
  }

  .secao-imagem img {
    height: 200px !important;
  }

  .secao-texto h2 {
    font-size: 1.8rem;
  }

  .secao-texto p {
    font-size: 0.9rem;
  }
}

/* ===== SEÇÃO DE CONTATO ===== */
#contato {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contato-container {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  padding: 40px 20px;
}

.contato-container h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  animation: fade-up 1s ease;
}

.contato-descricao {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fade-up 1s ease 0.2s both;
}

.contato-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  animation: fade-up 1s ease 0.4s both;
}

.info-item {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
}

.info-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.info-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.formulario-contato {
  max-width: 600px;
  margin: 0 auto;
  animation: fade-up 1s ease 0.6s both;
}

.form-grupo {
  margin-bottom: 20px;
}

.form-grupo input,
.form-grupo textarea {
  width: 100%;
  padding: 15px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-grupo input::placeholder,
.form-grupo textarea::placeholder {
  color: #aaa;
}

.form-grupo input:focus,
.form-grupo textarea:focus {
  outline: none;
  border-color: purple;
  box-shadow: 0 0 0 2px rgba(128, 0, 128, 0.2);
}

.btn-enviar {
  background: purple;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.btn-enviar:hover {
  background: darkmagenta;
}

/* ===== RODAPÉ ===== */
/* Estilos movidos para src/components/footer.css */

/* ===== RESPONSIVIDADE DO CONTATO E RODAPÉ ===== */
@media (max-width: 768px) {
  .contato-container h2 {
    font-size: 2.2rem;
  }

  .contato-descricao {
    font-size: 1rem;
  }

  .contato-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .contato-container h2 {
    font-size: 1.8rem;
  }

  .contato-descricao {
    font-size: 0.9rem;
  }

  .info-item h3 {
    font-size: 1.1rem;
  }

  .info-item p {
    font-size: 0.9rem;
  }

  .form-grupo input,
  .form-grupo textarea {
    padding: 12px;
    font-size: 0.9rem;
  }

  .btn-enviar {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes appear {
  from {
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
