/* === Paleta de cores ===
   Azul principal: #004AAD
   Branco: #FFFFFF
   Verde-limão: #B4FF00
   Cinza-claro: #F3F6FB
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

header {
  background-color: #004AAD;
  color: #fff;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  /*color: #B4FF00;*/
  color: #40957f;
}

/* Botão de Login no menu */
.login-btn {
  background-color: #a8ff00; /* Verde limão */
  color: #002b5b;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  background-color: #8fe000;
  color: #001f40;
}

.botao {
  display: inline-block;       /* faz o <a> se comportar como botão */
  padding: 12px 30px;          /* tamanho do botão */
  background-color: #a8ff00;   /* verde limão */
  color: #002b5b;              /* cor do texto */
  border-radius: 30px;         /* cantos arredondados */
  text-decoration: none;       /* remove sublinhado */
  font-weight: bold;
  cursor: pointer;             /* muda o cursor ao passar por cima */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.botao:hover {
  background-color: #8fe000;
  transform: scale(1.05);       /* efeito de leve zoom ao passar o mouse */
}

/* Hero section */
.hero {
  background: linear-gradient(rgba(0, 74, 173, 0.9), rgba(0, 74, 173, 0.35)), url('/images/LOGO3.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 180px 20px 150px;
}

.hero h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ffffff; /* branco */
}

.hero button {
  /*background-color: #B4FF00;*/
  background-color: #40957f;
  color: #004AAD;
  border: none;
  padding: 15px 35px;
  margin: 0 10px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background-color: #9be200;
  transform: scale(1.05);
}

#sobre p {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.8;
}

section {
  padding: 100px 50px;
  max-width: 1100px;
  margin: 0 auto;
}

section h3 {
  color: #004AAD;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

section p {
  font-size: 1.1rem;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background-color: #F3F6FB;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h4 {
  color: #004AAD;
  margin-bottom: 15px;
}

.card p {
  text-align: left;
}

/* Etapas */
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.step {
  background-color: #F3F6FB;
  border-left: 5px solid #B4FF00;
  padding: 25px;
  border-radius: 10px;
  width: 300px;
}

.step h4 {
  color: #004AAD;
  margin-bottom: 10px;
}

/* CTA final */
.cta {
  background-color: #004AAD;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  border-top: 5px solid #B4FF00;
}

.cta h3 {
  color: #B4FF00;
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #ffffff; /* branco */
}

.cta button {
  background-color: #B4FF00;
  color: #004AAD;
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.cta button:hover {
  background-color: #9be200;
  transform: scale(1.05);
}

footer {
  background-color: #002D73;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  section {
    padding: 80px 20px;
  }
}
