/** CSS FINAL AJUSTADO COM TOPO CENTRALIZADO E BOTÕES HARMÔNICOS **/

/* TOPO */
.topo-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 40px;
  background: linear-gradient(to right, #004aad, #00a650);
  color: white;
  text-align: center;
  flex-direction: column;
}

.topo-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.topo-logo img {
  height: 70px;
  margin-bottom: 10px;
}

.topo-logo h1 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.topo-botoes {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.topo-botoes a {
  background: white;
  color: #004aad;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #004aad;
  font-size: 14px;
  transition: all 0.3s ease;
  min-width: 140px;
  text-align: center;
  display: inline-block;
}

.topo-botoes a:hover {
  background: #004aad;
  color: white;
}

.icon-s7 {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
}

/* CARDS DE NICHOS */
.swiper {
  margin: 40px auto;
  padding: 20px;
  max-width: 1200px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.nicho-box {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 0;
  max-width: 250px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nicho-box img {
  max-width: 100%;
  display: block;
}

.nicho-botao {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: #004aad;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.nicho-botao:hover {
  background: #00a650;
  color: white;
}

/* DETALHES DE NICHOS */
.nicho-detalhe {
  padding: 60px 20px;
  background: #f9f9f9;
}

.nicho-conteudo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  justify-content: center;
}

.nicho-detalhe.left .nicho-conteudo {
  flex-direction: row;
}

.nicho-detalhe.right .nicho-conteudo {
  flex-direction: row-reverse;
}

.nicho-conteudo img {
  max-width: 350px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.nicho-texto {
  flex: 1;
  max-width: 600px;
}

.nicho-texto h2 {
  color: #004aad;
  margin-bottom: 20px;
}

.nicho-texto p,
.nicho-texto li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}

.nicho-texto ul {
  padding-left: 20px;
}

.btn-voltar {
  display: inline-block;
  margin-top: 20px;
  background: #004aad;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn-voltar:hover {
  background: #00a650;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* FALE CONOSCO */
#fale-conosco form input,
#fale-conosco form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#fale-conosco form button {
  background: #004aad;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#fale-conosco form button:hover {
  background: #00a650;
}

/* RODAPÉ */
footer {
  background: #f1f1f1;
  text-align: center;
  padding: 30px 10px;
  font-size: 14px;
  color: #333;
  margin-top: 40px;
}

footer a {
  color: #004aad;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}
/* ESTILO AJUSTADO PARA LOGIN - SOLUSEVEN */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #333;
}

.login-container {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  margin-top: 30px;
}

.logo-login {
  max-width: 250px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.login-container h2 {
  color: #004aad;
  margin-bottom: 20px;
  font-size: 20px;
}

input[type="text"], input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: 12px;
  background: #004aad;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

button:hover {
  background: #00a650;
}

.acoes-login {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.botao-voltar,
.botao-secundario {
  padding: 10px 14px;
  border: 2px solid #004aad;
  color: #004aad;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;
  min-width: 180px;
  text-align: center;
  display: inline-block;
}

.botao-voltar:hover,
.botao-secundario:hover {
  background: #004aad;
  color: white;
}

.icone-seta {
  margin-top: -1px;
}

footer.rodape-soluseven {
  background: #f4f4f4;
  color: #333;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  border-top: 1px solid #ddd;
  margin-top: 60px;
}

footer.rodape-soluseven a {
  color: #004aad;
  text-decoration: none;
  font-weight: bold;
}

footer.rodape-soluseven a:hover {
  text-decoration: underline;
}

footer.rodape-soluseven .icone-footer {
  width: 32px;
  height: 32px;
  margin-top: 10px;
  opacity: 0.9;
}
#fale-conosco {
  background: #f9f9f9;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

#fale-conosco form {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#fale-conosco h2 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #004aad;
  text-align: center;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-size: 16px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.btn-principal {
  background: linear-gradient(to right, #004aad, #00a650);
  color: white;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-principal:hover {
  filter: brightness(1.1);
}
/* CAMPOS FIXOS EM LINHA PARA ALTERAR SENHA */
.linha-identificacao {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.linha-identificacao .campo-compacto {
  flex: 1;
  min-width: 140px;
}

.linha-identificacao .campo-compacto label {
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: #004aad;
}

.linha-identificacao .campo-compacto input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
/* CENTRALIZA O TEXTO DOS CAMPOS READONLY */
input[readonly] {
  text-align: center;
}
/* CENTRALIZA O TEXTO DE TODOS OS CAMPOS DE INPUT */
input[type="text"],
input[type="password"],
input[readonly] {
  text-align: center;
}
.topo-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 40px;
  background: linear-gradient(to right, #004aad, #00a650);
  color: white;
  text-align: center;
  flex-direction: column;
}

.topo-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.topo-logo img {
  height: 70px;
  margin-bottom: 10px;
}

.topo-logo p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.topo-botoes {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.topo-botoes a {
  background: white;
  color: #004aad;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #004aad;
  font-size: 14px;
  transition: all 0.3s ease;
  min-width: 140px;
  text-align: center;
  display: inline-block;
}

.topo-botoes a:hover {
  background: #004aad;
  color: white;
}

.icon-s7 {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
}
.post-imagem {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
}
