body {
    background-color: #010a18;
}

.hero {
  background: url(../assets/background.png) center/cover no-repeat;
  height: 100vh;
}


#logo img {
    max-width: 90px;  
    margin-top: 50px; 
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 95px;
    
}

.badge {
    margin-top: 40px;
    background: rgba(22, 0, 44, 0.7);
    border: 1px solid #5ce164;
    border-radius: 30px;
    padding: 8px 28px;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 0 10px #5ce164;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
}
.container h1 {
    font-size: 3rem;
    color: white;
    text-align: center;
    margin: 0 0 12px 0;
    line-height: 1.1;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s 0.3s forwards;
}
.highlight {
    color: #5ce164;
    text-shadow: 0 0 8px #5ce164;
}
.subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 1.2s 1s forwards;
    font-weight: 300;
}

.cta a {
  color: white;
}

.cta {
    background: #5ce164;
    color: #fff;
    border: none;
    border-radius: 28px;
    padding: 14px 34px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 32px;
    margin-top: 18px;
    opacity: 0;
    animation: fadeIn 1.2s 1.5s forwards;
}
.cta:hover {
    background: #3fae6c;
}
.images-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1.2s 2s forwards;
}
.img-box {
    width: 180px;
    height: 180px;
    background: #222;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 24px #0005;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animations */
@keyframes fadeInUp {
    to {
    opacity: 3;
    transform: translateY(0);
    }
}
@keyframes fadeInDown {
    from {
    opacity: 0;
    transform: translateY(-30px);
    }
    to {
    opacity: 2;
    transform: translateY(0);
    }
}
@keyframes fadeIn {
    to {
    opacity: 2;
    }
}

@media (max-width: 600px) {
    .hero {
    background: url(../assets/BG-MOBILE.png) center/cover no-repeat;

    }
    #logo img {
        max-width: 85px;
        margin-top: 100px;
    }

    .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 25px;
    }

    .badge {
    margin-top: 50px;
    background: rgba(22, 0, 44, 0.7);
    border: 0.5px solid #5ce164;
    border-radius: 30px;
    padding: 6px 16px;
    color: #fff;
    font-size: 12px;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
    }

    .container h1 {
    font-size: 32px;
    text-align: center;
    margin: 0 0 12px 0;
    line-height: 1.1;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s 0.3s forwards;
    }

    .subtitle {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 1.2s 1s forwards;
    font-weight: 300;
    text-align: center;
    }

    .cta {
    background: #5ce164;
    color: #fff;
    border: none;
    border-radius: 28px;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 32px;
    margin-top: 18px;
    opacity: 0;
    animation: fadeIn 1.2s 1.5s forwards;
}
}

.quem-somos {
  /* ... existente ... */
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s, transform 1.2s;
  /* Remover animation padrão */
}
.quem-somos.active {
  opacity: 1;
  transform: translateY(0);
}

.quem-somos__content, .quem-somos__logo {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s 0.4s, transform 1.2s 0.4s;
  /* Remover animation padrão */
}
.quem-somos__content.active, .quem-somos__logo.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .quem-somos__logo img {
    /* ... existente ... */
    animation-delay: 1s;
  }
  .contato-section {
    flex-direction: column;
    gap: 32px;
    padding: 30px 0;
    background: linear-gradient(135deg, #101820 60%, #1a2a3a 100%, #5ce16422 120%);
  }
  .contato-info {
    padding: 0;
    order: -1;
    align-items: center;
    text-align: center;
  }
  .contato-info h2,
  .contato-info p {
    text-align: center;
  }
  .contato-form-container {
    order: 2;
  }
}

.contato-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: #010a18;
  gap: 48px;
  padding: 48px 0;
}

.contato-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  padding: 0 24px;
  min-width: 260px;
  text-align: justify;
}

.contato-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: left;
}

.contato-info p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  color: #bdbdbd;
  text-align: justify;
}

.contato-arrow-circle img {
  width: 56px;
  height: 56px;
  margin-top: 12px;
}

.contato-form-container {
  background: none;
  box-shadow: none;
  padding: 0;
  min-width: 260px;
  max-width: 340px;
  width: 100%;
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contato-form input,
.contato-form textarea {
  background: #0a1322;
  border: 1px solid #222;
  border-radius: 6px;
  padding: 10px 12px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
}

.contato-form input:focus,
.contato-form textarea:focus {
  border-color: #5ce164;
}

.contato-form button {
  background: #5ce164;
  color: #010a18;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  font-size: 1.05rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.contato-form button:hover {
  background: #3fae6c;
}

@media (max-width: 900px) {
  .contato-section {
    flex-direction: column;
    gap: 32px;
    padding: 30px 0;
  }
  .contato-info {
    padding: 0;
    order: -1;
    align-items: center;
    text-align: center;
  }
  .contato-info h2,
  .contato-info p {
    text-align: center;
  }
  .contato-form-container {
    order: 2;
  }
}

.footer-minimal {
  width: 100%;
  background: #010a18;
  color: #bdbdbd;
  text-align: center;
  padding: 24px 0 16px 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-top: 1px solid #181c22;
  margin-top: 32px;
}




