@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f5f5f5;
}

#login-success {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #4CAF50;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  animation: pulse 1.5s infinite ease-in-out;
}

#login-success img {
  width: 28px;
  height: 28px;
}

.hidden {
  display: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}
.header {
  background-color: #4B0082;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* permite quebrar linha quando necessário */
  padding: 10px 20px;
  gap: 10px;
  text-align: center;
}

.logo img {
  height: 55px;
  width: auto;
  max-width: 100%;
}

.description {
  flex-grow: 1;
  text-align: center;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.language-switcher .dark-mode-button {
  position: fixed; /* Mantém fixo na tela */
  top: 20px;
  right: 20px;
  background: #4B0082;
  border: none;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999; /* Garante que o botão fique acima de tudo */
}

.dark-mode-button:hover {
  background: #e0e0e0;
  transform: rotate(20deg);
}

/* Modo escuro */
.dark-mode {
  background-color: #121212;
  color: #ffffff;
}

.dark-mode .dark-mode-button {
  background: #333333;
  color: #ffff66;
}

.navbar {
      position: sticky;
      top: 10px;
      z-index: 999;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      background-color: white;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      width: 70%;
      max-width: 400px;
      margin: 20px auto;
    }

    .navbar ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .navbar ul li a {
      text-decoration: none;
      color: #222;
      font-weight: 500;
      font-size: 18px;
      transition: color 0.3s ease;
      margin-left: 40px;
    }

    .navbar ul li a:hover {
      color: #4B0082;
    }

    .menu-toggle {
      display: none;
      font-size: 28px;
      background: none;
      border: none;
      cursor: pointer;
      color: #4B0082;
      margin-left: 143px;
    }

    /* ======== MOBILE ======== */
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
      }

      .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        background-color: #ffffff;
        padding: 10px 15px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      }

      .navbar ul.show {
        display: flex;
      }

      .navbar ul li {
        padding: 10px 0;
        text-align: center;
        width: 100%;
       
      }

      .navbar ul li a {
        font-size: 16px;
         margin: 0 auto;
      }
    }



#inicio {
  position: relative;
  height: 800px; /* Mantido conforme você quer */
  overflow: hidden;
  padding-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 80%;
  transform: translate(-50%, -50%);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.carousel-images {
  display: flex;
  transition: transform 1s ease-in-out;
  width: 100%; /* 5 imagens */
  animation: slide 15s infinite ease-in-out;
}

.carousel-images img {
  width: 100%; /* cada imagem ocupa 100% da largura do container */
  flex: 0 0 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: transform 3s ease;
  
}

.carousel-images img.zoom {
  animation: zoomSmooth 4s ease-in-out infinite;
  transform-origin: center center;
  z-index: 1;
}

@keyframes zoomSmooth {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.12);
    filter: brightness(1.05);
  }
}


/* Bolinhas */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(21, 21, 21, 0.4);
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dots .dot.active {
  background-color: purple;
}


@keyframes slide {
  0% { transform: translateX(0); }
  20% { transform: translateX(0); }
  25% { transform: translateX(-100%); }
  45% { transform: translateX(-100%); }
  50% { transform: translateX(-200%); }
  70% { transform: translateX(-200%); }
  75% { transform: translateX(-300%); }
  95% { transform: translateX(-300%); }
  100% { transform: translateX(-400%); }
}


/* Conteúdo principal */
.conteudo {
  position: relative;
  z-index: 1;
  background-color: rgba(92, 6, 153, 0.9);
  padding: 40px;
  border-radius: 15px;
  width: 80%;
  max-width: 900px;
  color: white;
  margin-top: 0; /* controle por media query */
  transition: all 0.4s ease;
}

/* Descrição */
.descri h1 {
  font-size: 48px;
  margin: 0;
}

.descri h3 {
  color: rgb(230, 230, 230);
  font-size: 28px;
  margin-top: 10px;
}

/* Botões dentro da mesma caixa */
.button {
  position: absolute;
  bottom: 70px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.btn {
  background-color: green;
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn a {
  color: white;
  text-decoration: none;
}

.btn:hover {
  background-color: rgb(60, 0, 60);
  color: blueviolet;
}

  
/*Video */

.container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    margin-top: 60px;
}

.text-content {
    flex: 1;
}

.description-box {
   /* background-color: white; */
    padding: 30px;
    border-radius: 8px;
   /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    margin-bottom: 25px;
    margin-top: 40px;
}

.large-description {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

/* Animação personalizada */
@keyframes surgirDaEsquerda {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.divider {
    width: 80%; 
    height: 5px; 
    background-color: #4CAF50;
    margin: 20px 0;
    border-radius: 3px;
    animation: surgirDaEsquerda 6s ease-out forwards;
    transform-origin: left center;
    opacity: 0;
    transform: translateX(-100%);
}


.small-description {
    font-size: 20px;
    line-height: 1.6;
    color: #3e3c3c;
}

.video-container {
    width: 500px; /* Largura aumentada */
    margin-top: 70px;
}

.video-wrapper {
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 5px solid #4CAF50;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    height: 300px; /* Altura aumentada */
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantém a proporção do vídeo */
}



@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .video-container {
        width: 100%;
        order: -1;
        margin-bottom: 30px;
    }

    .video-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .video-wrapper {
        height: 300px;
    }
}

footer {
  background-color: #4B0082;
  color: #f1f1f1;
  font-family: 'Inter', sans-serif;
  padding: 50px 20px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h4 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  border-left: 4px solid #fff;
  padding-left: 10px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 30px auto 15px;
  max-width: 90%;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #cccccc;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  padding: 5px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.1);
  background-color: #4B0082;

}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    gap: 10px;
  }

  .description {
    font-size: 14px;
    padding: 5px 0;
  }



  .descri {
    font-size: 20px;
    line-height: 1.3;
  }

  .h1 {
    font-size: 32px;
  }

  .h3 {
    font-size: 18px;
    margin-left: 0;
  }

  .button {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .btn {
    padding: 10px 25px;
    font-size: 14px;
  }

  .container {
    flex-direction: column;
    padding: 0 15px;
    gap: 20px;
  }

  .video-container {
    width: 100%;
    margin-top: 20px;
  }

  .video-wrapper {
    height: 220px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer-column {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 36px;
  }

  .description {
    font-size: 12.5px;
  }

  .btn {
    padding: 8px 20px;
    font-size: 13px;
  }

  .description-box .large-description h1,
  .description-box .large-description h3 {
    font-size: 18px;
  }

  .small-description {
    font-size: 15px;
  }

  .footer-column h4 {
    font-size: 14px;
  }

  .footer-column p {
    font-size: 12.5px;
  }

  .social-icons a img {
    width: 30px;
    height: 30px;
  }

  .video-wrapper {
    height: 180px;
  }
}



@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .description {
    font-size: 14px;
    padding: 5px 10px;
  }

  .logo img {
    height: 45px;
  }

  .language-switcher {
    font-size: 14px;
    padding: 4px 8px;
  }
}



@media (max-width: 768px) {
  #inicio {
    flex-direction: column;
    height: auto;
  }

  .carousel {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 240px;
    margin-bottom: 20px;
  }

  .carousel-images {
    height: 100%;
  }

  .carousel-images img {
    object-fit: cover;
  }

  .conteudo {
    position: static;
    margin-top: 0;
    padding: 25px 20px;
    width: 90%;
    border-radius: 10px;
  }

  .descri h1 {
    font-size: 24px;
    text-align: center;
  }

  .descri h3 {
    font-size: 16px;
    text-align: center;
  }

  .button {
    position: static;
    margin-top: 25px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn {
    width: 100%;
    height: 70%;
    font-size: 18px;
  }
}
