@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;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
  align-items: flex-start;
}

/* INFO À ESQUERDA */
.info-area {
  width: 35%;
  min-width: 300px;
  box-sizing: border-box;
}

.info-box {
  background-color: #00A651;
  color: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.info-box h2 {
  margin-top: 0;
  font-size: 24px;
  font-weight: bold;
}

.contact-links {
  margin-top: 20px;
  font-size: 15px;
}

.contact-links div {
  background-color: white;
  padding: 10px;
  margin-bottom: 10px;
  border-left: 5px solid #eaeaea;
  word-wrap: break-word;
}

.contact-links a {
  color: #00A651;
  text-decoration: none;
  font-weight: bold;
  word-break: break-word;
}

/* FORMULÁRIO À DIREITA */
.form-container {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.05);
  width: 60%;
  min-width: 300px;
  box-sizing: border-box;
}

.form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.form-group input {
  flex: 1;
  min-width: 200px;
  padding: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
}

textarea {
  width: 100%;
  height: 200px;
  padding: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  resize: none;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.send-button {
  background-color: #00A651;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.send-button:hover {
  background-color: #009247;
}

/* RESPONSIVO: TABLETS E MENORES */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 30px;
  }

  .info-area,
  .form-container {
    width: 100%;
  }

  .form-group {
    flex-direction: column;
    gap: 10px;
  }

  .form-group input {
    width: 100%;
  }

  .send-button {
    width: 100%;
  }

  .contact-links div {
    padding: 12px;
    font-size: 15px;
  }
}

/* RESPONSIVO: CELULARES */
@media (max-width: 480px) {
  .info-box h2 {
    font-size: 20px;
  }

  .form-group input,
  textarea,
  .send-button {
    font-size: 15px;
    padding: 12px;
  }

  .form-container {
    padding: 20px;
  }

  .contact-links div {
    font-size: 14px;
    padding: 10px;
  }
}


    footer {
  background-color: #4B0082;
  color: #f1f1f1;
  font-family: 'Inter', sans-serif;
  padding: 50px 20px 20px;
 margin-top: 170px;
}

.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;
  }
}