 body {
    font-family: Arial, sans-serif;
    background-color: #e6e3e3;
    margin: 0;
    padding: 0;
}
.navbar {
    list-style: none;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.menu {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: auto;
    background: none;
    position: static;
    text-align: left;

}
.menu.active {
    display: flex;
}
            @media (max-width: 768px) {
                .navbar {
                    flex-direction: column;
                    align-items: flex-start;
                }
                .menu {
                    display: none;
                    flex-direction: column;
                    width: 100%;
                    text-align: center;
                    background: #cccbcf;
                    position: absolute;
                    top: 60px;
                    left: 0;
                    z-index: 1000;
                }
                .menu.active {
                    display: flex;
                }
            }
        

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 32px;
            margin-left: auto;
            background: none;
            border: none;
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
        }

.hero-parceiros {
  background: linear-gradient(135deg, #1d3557, #457b9d);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.hero-parceiros h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.hero-parceiros p {
  font-size: 1.2rem;
}

/* Carrossel */
.parceiros-destaque {
  text-align: center;
  padding: 50px 20px;
}
.parceiros-destaque h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1d3557;
}
.carousel-container {
  overflow: hidden;
  width: 100%;
}
.carousel-slide {
  display: flex;
  gap: 40px;
  animation: scroll 30s linear infinite;
}
.carousel-slide img {
  height: 80px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.carousel-slide img:hover {
  transform: scale(1.1);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Info */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.card h2 {
  color: #1d3557;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
}
.card ul {
  list-style: none;
  padding: 0;
}
.card ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card ul li i {
  color: #457b9d;
}
.card.aviso {
  border-left: 5px solid #e63946;
  background: #fff5f5;
}
.card.contato p {
  margin: 8px 0;
  font-size: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-parceiros h1 { font-size: 2rem; }
  .hero-parceiros p { font-size: 1rem; }
  .carousel-slide { gap: 20px; animation: scroll 15s linear infinite; }
  .carousel-slide img { height: 60px; }
}
@media (max-width: 480px) {
  .carousel-slide { gap: 15px; animation: scroll 12s linear infinite; }
  .carousel-slide img { height: 45px; }
}
/* ================== FORMULÁRIO DE PARCEIROS ================== */
.form-parceiros {
  max-width: 900px;
  margin: 80px auto;
  padding: 50px;
  background: linear-gradient(135deg, #f3f6ff, #ffffff, #eef1fb);
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  animation: fadeIn 1s ease-in-out;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.form-parceiros h2 {
  font-size: 2.2rem;
  text-align: center;
  color: #1a0663;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #1a0663, #3b26a3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-parceiros p {
  text-align: center;
  margin-bottom: 35px;
  color: #444;
  font-size: 1.05rem;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-container label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.form-container input,
.form-container select {
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  background: #fff;
}

.form-container input:focus,
.form-container select:focus {
  border-color: #1a0663;
  outline: none;
  box-shadow: 0 0 10px rgba(26, 6, 99, 0.2);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #333;
}

.checkbox input {
  margin-top: 4px;
}

.checkbox a {
  color: #1a0663;
  font-weight: bold;
  text-decoration: none;
}

.checkbox a:hover {
  text-decoration: underline;
}

/* Botão */
.btn-submit {
  background: linear-gradient(135deg, #1a0663, #3b26a3);
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 14px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #3b26a3, #5b48d8);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Responsividade */
@media (max-width: 600px) {
  .form-parceiros {
    padding: 30px;
    margin: 40px 15px;
  }

  .form-parceiros h2 {
    font-size: 1.7rem;
  }

  .btn-submit {
    font-size: 1rem;
    padding: 14px;
  }
}

/* Animação */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Botão */
.btn-submit {
  background: linear-gradient(135deg, #1a0663, #3b26a3);
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 14px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1; /* Ensure button is visible */
  transform: translateY(0); /* Reset initial position */
  animation: slideUp 0.6s ease forwards, pulse 2s infinite 2s; 
  /* pulse começa 2s depois de aparecer */
}

.btn-submit:hover {
  background: linear-gradient(135deg, #3b26a3, #5b48d8);
  transform: translateY(-5px);
}
.parceiros {
  text-align: center;
  padding: 60px 0;
  background-color: #f6fff9;
}

.parceiros h2 {
  color: #007c66;
  font-size: 2rem;
  margin-bottom: 30px;
}

.logos-parceiros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.logo-item img {
  width: 140px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
  animation: girar 10s linear infinite;
}

.logo-item.reverse img {
  animation: girar-reverso 10s linear infinite;
}

.logo-item img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

/* Animações */
@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes girar-reverso {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
