@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;
  padding: 10px 20px;
}

.logo img {
  width: auto;
  height: 55px;

}

.description {
  flex-grow: 1;
  text-align: center;
  padding: 10px;
}

.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;
      }
    }


.bread {
  padding-left: 2.5rem;
  /* 10px */
  padding-right: 2.5rem;
  /* 10px */
  padding-top: 3rem;
  /* 12px */
  padding-bottom: 3rem;
  /* 12px */
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  margin-bottom: 2rem;
  /* 8px */
  font-size: 0.875rem;
  /* text-sm */
  font-weight: 400;
  /* font-normal */
  user-select: none;
  /* select-none */
}

.breadcrumb a {
  color: black;
  /* Ajuste a cor conforme necessário */
  text-decoration: none;
}

.breadcrumb strong {
  margin-left: 0.5rem;
  /* Espaço entre link e texto forte */
  color: #4CAF50;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}


.container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  margin-top: 20px;
}

.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: 10px;
}

.large-description {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

.large-description img {
  width: 30%;
  height: auto;
  line-height: 1.7;
  margin-bottom: 25px;
  border-bottom: 2px solid black;
  padding-bottom: 5px;
}

/* 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;
}


.image-container {
  width: 500px;
  /* Largura aumentada */
  margin-top: 30px;
}

.image {
  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 */
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.img {
  width: 530px;
  height: 330px;
  border-radius: 20px;
  object-fit: cover;
  /* Mantém a proporção do vídeo */
}

.benefit-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
  margin-top: 110px;
}

.benefit-row {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 30px;
  flex-wrap: wrap;

}

.benefit-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 280px;
  max-width: 320px;
}

.benefit-card {
  background-color: #5f2c82;
  color: white;
  border-radius: 20px;
  padding: 15px 20px;
  flex: 1;
  display: flex;
  align-items: center;

}

.benefit-card:hover {
  transition: 1.9s;
  background-color: #4CAF50;
}

.benefit-card span {
  font-size: 14px;
  line-height: 1.4;
}

.icon-svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: #4caf50;
}


/* Estado inicial escondido */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s ease-out;
}

/* Quando estiver visível na tela */
.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse ao passar o mouse */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

.icon-svg {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.icon-svg:hover {
  animation: pulse 0.6s ease;
  cursor: pointer;
}

.container2 {
  max-width: 1200px;
  margin: auto;
  margin-top: 70px;
}

/* ANIMAÇÃO: Fade-in-up */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s ease-out;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ANIMAÇÃO: Pulse no hover */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

.icon-svg {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.icon-svg:hover {
  animation: pulse 0.6s ease;
  cursor: pointer;
}


.topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 15%;
  border-bottom: 2px solid black;
  padding-bottom: 5px;
}

.topo h1 {
  font-size: 32px;
}

.descricao {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.4;
}

.icones-metricas {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  text-align: center;
}

.icones-metricas div {
  max-width: 150px;
}

.icones-metricas img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.conteudo {
  display: flex;
  margin-top: 50px;
  gap: 40px;
  align-items: flex-start;
  margin-top: 65px;
}

.imagem-projeto img {
  width: 100%;
  max-width: 500px;
  border: 6px solid #76d87c;
  border-radius: 15px;
}

.ods {
  flex-grow: 1;
}

.ods h2 {
  border-bottom: 3px solid green;
  display: inline-block;
  margin-bottom: 20px;
}

.ods-grid {
  display: grid;
  grid-template-columns: repeat(3, 80px);
  gap: 15px;
}

.ods-grid img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.ods-grid img:hover {
  animation: pulse 0.6s ease;
  cursor: pointer;
}
.personagem-ods {
  position: absolute;
  bottom: 0;
  right: 30px;
  width: 200px;
  height: auto;
  max-height: 300px;
  z-index: 2;
}

/* Certifique-se de que a seção .conteudo tenha posição relativa */
.conteudo {
  position: relative;
  display: flex;
  margin-top: 65px;
  gap: 40px;
  align-items: flex-start;
}


footer {
  background-color: #4B0082;
  color: #f1f1f1;
  font-family: 'Inter', sans-serif;
  padding: 50px 20px 20px;
  margin-top: 60px;
}

.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;
  }

 
  #inicio {
    padding-left: 10px;
    padding-right: 10px;
  }

  .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: 480px) {
  .description {
    font-size: 13px;
  }

  .logo img {
    height: 40px;
  }

  .language-switcher {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .image-container {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }

  .image {
    height: auto;
  }

  .img {
    width: 100%;
    height: auto;
  }

  .benefit-row {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }

  .benefit-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .image-container {
    padding: 0 15px;
  }

  .img {
    border-radius: 12px;
  }

  .benefit-section {
    padding: 0 15px;
    margin-top: 60px;
  }

  .benefit-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .benefit-wrapper {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 500px;
  }

  .benefit-card {
    padding: 12px 16px;
    font-size: 13px;
  }

  .benefit-card span {
    font-size: 13.5px;
  }

  .icon-svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .benefit-card {
    padding: 10px 14px;
  }

  .benefit-card span {
    font-size: 12.5px;
  }

  .icon-svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 1024px) {
  .topo {
    width: 100%;
    justify-content: center;
    text-align: center;
    border: none;
  }

  .topo h1 {
    font-size: 28px;
  }

  .descricao {
    font-size: 18px;
    text-align: center;
    padding: 0 20px;
  }

  .icones-metricas {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .conteudo {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
  }

  .personagem-ods {
    right: 10px;
    bottom: -20px;
    width: 150px;
  }

  .ods-grid {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    justify-items: center;
  }

  .ods h2 {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .topo h1 {
    font-size: 24px;
  }

  .descricao {
    font-size: 16px;
  }

  .icones-metricas div {
    max-width: 100px;
  }

  .icones-metricas img {
    width: 50px;
    height: 50px;
  }

  .ods-grid {
    grid-template-columns: repeat(2, 70px);
    gap: 10px;
  }

  .personagem-ods {
    display: none;
  }
}

@media (max-width: 400px) {
  .ods-grid {
    grid-template-columns: repeat(2, 60px);
  }

  .icones-metricas p {
    font-size: 13px;
  }

  .descricao {
    font-size: 15px;
  }
}


