/* Estilos Globais */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.limitar-secao {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  display: block;
}

/* Topo da página */
.container-topo {
  position: relative;
  padding: 35px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topo-logo {
  position: relative;
}

.topo-logo img {
  width: 80px;
}

.topo-logo div {
  position: static;
  margin-left: 15px;
}

.topo-logo p {
  color: #2f86d6;
  font-weight: 600;
}

.topo-links {
  position: static;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.topo-links a {
  font-size: 18px;
  padding: 8px 10px;
  text-decoration: none;
  font-weight: 600;
  color: #233032;
}

/* Banner da página */
.secao-banner {
  background-color: #2f86d6;
}

.container-banner {
  position: relative;
  padding: 90px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.container-banner div {
  color: #fff;
  width: 100%;
  max-width: 470px;
}

.container-banner div p {
  font-size: 16px;
  line-height: 26px;
  word-spacing: 3px;
}

.container-banner div h2 {
  font-size: 28px;
  line-height: 40px;
  margin: 20px 0px;
}

.container-banner img {
  width: 45%;
  position: static;
}

/* Seção Primeiro Anúncio */
.secao-primeiro-anuncio {
  background-color: #23303e;
  color: #fff;
}

.container-primeiro-anuncio {
  position: relative;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.container-primeiro-anuncio div {
  width: 100%;
  max-width: 600px;
}

.container-primeiro-anuncio div h2 {
  margin-bottom: 5px;
}

.container-primeiro-anuncio a {
  position: static;
  font-size: 18px;
  font-weight: 700;
  padding: 20px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  background-color: #2f86d6;
  color: #fff;
  cursor: pointer;
}

.container-primeiro-anuncio a img {
  position: static;
  width: 20px;
  margin-right: 10px;
}

.container-primeiro-anuncio a span {
  margin-left: 0;
}

/* Seção Informações */
.secao-informacoes {
  padding: 100px 0px;
  text-align: center;
}

.secao-informacoes h2 {
  width: 100%;
  max-width: 900px;
  font-size: 32px;
  margin: 0px auto 60px;
}

.secao-informacoes h2 span {
  color: #2f86d6;
}

.container-informacoes {
  position: relative;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.container-informacoes div {
  width: 100%;
  max-width: 280px;
  position: static;
}

.card2 {
  left: auto;
}

.card3 {
  right: auto;
}

.container-informacoes div img {
  width: 100px;
}

.container-informacoes div h3 {
  margin: 20px;
}

/* Seção Planos */
.secao-planos {
  padding: 100px 0px;
  background-color: #f1f3f7;
}

.secao-planos h2 {
  text-align: center;
  margin-bottom: 70px;
  font-size: 32px;
}

.secao-planos {
  overflow-x: auto;
}

.secao-planos h2 span {
  color: #2f86d6;
}

table {
  border-radius: 4px;
  margin: auto;
  box-shadow: 0px 2px 40px 15px rgba(47, 134, 214, 1);
  min-width: 900px;
}

table thead th {
  text-align: center;
  padding: 20px 0px;
  background-color: #fff;
}

table thead th h3 {
  margin-bottom: 20px;
}

table thead th img {
  width: 100px;
  margin: auto;
}

table thead th p {
  max-width: 150px;
  margin: auto;
  padding-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #a89f9f;
}

table tbody td {
  width: 250px;
  max-width: 1024px;
  text-align: center;
  font-weight: 500;
  padding: 15px;
}

.linha-impar {
  background-color: #f6f6f6;
}

.linha-par {
  background-color: #fff;
}

/* Seção Segundo Anúncio */
.secao-segundo-anuncio {
  background-color: #2f86d6;
}

.container-segundo-anuncio {
  position: relative;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.container-segundo-anuncio h2 {
  color: #fff;
  width: 100%;
  max-width: 550px;
}

.container-segundo-anuncio a {
  position: static;
  font-size: 18px;
  font-weight: 700;
  padding: 20px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  background-color: #233032;
  color: #fff;
  cursor: pointer;
}

.container-segundo-anuncio a img {
  position: static;
  width: 20px;
  margin-right: 10px;
}

.container-segundo-anuncio a span {
  margin-left: 0;
}

/* Seção Contato */
.secao-contato {
  padding: 100px 0;
  background: linear-gradient(180deg, #f1f3f7 0%, #ffffff 100%);
}

.container-contato {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contato-texto {
  padding-top: 20px;
}

.contato-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: rgba(47, 134, 214, 0.12);
  color: #2f86d6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.contato-texto h2 {
  font-size: 32px;
  color: #233032;
  margin-bottom: 16px;
}

.contato-texto p {
  color: #5a6670;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 520px;
}

.contato-texto ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.contato-texto li {
  position: relative;
  padding-left: 22px;
  color: #233032;
  font-weight: 500;
}

.contato-texto li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #2f86d6;
}

.form-contato {
  padding: 28px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 18px 45px rgba(35, 48, 62, 0.12);
  border: 1px solid #e6edf5;
  display: grid;
  gap: 12px;
}

.form-contato label {
  font-size: 14px;
  font-weight: 600;
  color: #233032;
}

.form-contato input,
.form-contato select,
.form-contato textarea {
  width: 100%;
  border: 1px solid #d7e0ea;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  color: #233032;
  background-color: #fff;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-contato input:focus,
.form-contato select:focus,
.form-contato textarea:focus {
  border-color: #2f86d6;
  box-shadow: 0 0 0 4px rgba(47, 134, 214, 0.14);
}

.form-contato textarea {
  resize: vertical;
  min-height: 140px;
}

.form-contato button {
  border: 0;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-color: #233032;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.form-contato button:hover {
  background-color: #2f86d6;
  transform: translateY(-1px);
}

.form-status {
  min-height: 22px;
  font-size: 14px;
  font-weight: 600;
  color: #2f86d6;
}

/* Rodapé */
.rodape-logo {
  width: 320px;
  position: relative;
  margin: 70px auto 40px;
}

.rodape-logo img {
  width: 80px;
}

.rodape-logo div {
  position: absolute;
  left: 95px;
  top: 0;
}

.rodape-logo p {
  color: #2f86d6;
  font-weight: 600;
}

.container-contatos {
  text-align: center;
  margin-bottom: 50px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 600;
}

.container-copyright {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 20px 0px;
  background-color: #f1f3f7;
}

.container-copyright span {
  color: #2f86d6;
}

@media (max-width: 900px) {
  .container-topo,
  .container-banner,
  .container-primeiro-anuncio,
  .container-segundo-anuncio {
    flex-direction: column;
    align-items: flex-start;
  }

  .topo-links {
    justify-content: flex-start;
  }

  .container-banner {
    padding: 60px 0;
  }

  .container-banner img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .container-primeiro-anuncio a,
  .container-segundo-anuncio a {
    width: 100%;
    justify-content: center;
  }

  .secao-informacoes h2,
  .secao-planos h2,
  .container-segundo-anuncio h2,
  .container-primeiro-anuncio div {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .container-topo {
    padding: 25px 0;
  }

  .topo-logo {
    display: flex;
    align-items: center;
  }

  .topo-logo img,
  .rodape-logo img {
    width: 64px;
  }

  .topo-logo h1,
  .rodape-logo h1 {
    font-size: 24px;
  }

  .topo-links a {
    font-size: 15px;
    padding: 6px 8px;
  }

  .container-banner div h2,
  .secao-informacoes h2,
  .secao-planos h2,
  .container-segundo-anuncio h2 {
    font-size: 24px;
    line-height: 1.35;
  }

  .secao-informacoes,
  .secao-planos {
    padding: 70px 0;
  }

  .container-primeiro-anuncio,
  .container-segundo-anuncio {
    padding: 30px 0;
  }

  .secao-contato {
    padding: 70px 0;
  }

  .container-contato {
    grid-template-columns: 1fr;
  }

  .contato-texto h2 {
    font-size: 26px;
  }

  .form-contato {
    padding: 22px;
  }

  .container-contatos,
  .container-copyright {
    font-size: 14px;
    line-height: 1.7;
  }

  .rodape-logo {
    width: 100%;
    max-width: 320px;
  }
}
