@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

.secao-hero .btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ffff, 0 0 0 4px #90f1e5;
}

p {
  font-size: 1.3em;
  line-height: 1.3;
}
h1 {
  font-size: 2.5em;
  line-height: 49px;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 2em;
  line-height: 49px;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h3 {
  font-size: 1.5em;
  line-height: 30px;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  p {
    font-size: 1em;
    line-height: 1.2;
  }

  h1 {
    font-size: 2em;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.75em;
    line-height: 1.2;
  }

  h3 {
    font-size: 1.25em;
    line-height: 1.2;
  }
}

.primaria {
  color: #025bc1;
}

.secundaria {
  color: #f0c674;
}

.separador {
  border-bottom: 1px solid #4d5e8f;
  margin-bottom: 1.5rem;
}

.btn.botao {
  background: linear-gradient(
    129deg,
    rgba(240, 198, 116, 0.8) 0%,
    rgba(240, 198, 116, 0.8) 100%
  );
  color: #00153c;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn.botao:hover {
  background: linear-gradient(
    129deg,
    rgba(0, 21.17, 60.56, 0.8) 0%,
    rgba(30, 30, 30, 0.8) 100%
  );
  color: #f0c674;
}

.text-container {
  background: linear-gradient(
    129deg,
    rgba(0, 21.17, 60.56, 0.9) 0%,
    rgba(30, 30, 30, 0.9) 100%
  );
  padding: 32px;
  border-radius: 10px;
  margin-bottom: 100px;
  display: block;
  overflow: visible;
}

.carousel-image-container {
  height: 700px;
  overflow: hidden;
}

.carousel-image-container img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

@media (min-width: 992px) {
  .carousel-caption .btn {
    position: relative;
    top: -100px;
  }
}

@media (max-width: 768px) {
  .carousel-image-container {
    height: 550px;
  }

  .carousel-caption {
    padding-top: 100px;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }

  .text-container {
    padding: 16px;
    display: block;
    margin-bottom: 20px;
    position: relative;
  }

  .carousel-indicators {
    display: none;
  }
}

.logo-img {
  max-height: 70px;
}

@media (max-width: 768px) {
  .logo-img {
    max-height: 50px;
  }
}
