/* Estilo para Smart TVs com tela de 1441px */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  height: 100%;
}

h1 {
  color: #4d6d8a;
  text-align: center;
}

h2 {
  text-align: center;
  font-size: 2.5rem; /* Ajustado para telas maiores */
  margin: 4% 0;
  font-weight: bold;
  color: #287799;
  text-shadow: 1px 1px 0 #bad1db;
}

h3 {
  color: #0591cc;
  text-align: center;
  font-size: 2rem; /* Ajustado para telas maiores */
  margin: 8% 0;
}

p {
  color: #000000;
  word-wrap: break-word;
  font-size: 1.2rem; /* Ajustado para telas maiores */
}

a {
  text-decoration: none;
}

a:link {
  color: #fff;
}

a:visited {
  color: #f7feff;
}

a:hover {
  background-color: #0c4fc2;
  color: aliceblue;
  border: 1px solid #acc4e3;
}

a:active {
  background-color: #ABD;
}

header {
  width: 100%;
  background-image: url("../imgs/foto_spa.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  padding: 2%;
}

#logo_cabecario {
  max-width: 250px; /* Ajustado para telas maiores */
  height: auto;
  margin: 0 auto;
  display: block;
}

#cabecario_conapic {
  font-size: 3rem;
  font-weight: bold;
  color: #287799;
  text-shadow: 1px 1px 0 #f8f8f8;
  text-align: center;
}

.video_apresentacao {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video_apresentacao video {
  border: 2px solid #0591cc; 
}

.menu {
  background-color: #0591cc;
  padding: 2%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.menu li {
  list-style: none;
  margin: 0 1rem;
  position: relative;
  color: #fff;
  font-size: 1.5rem; /* Ajustado para telas maiores */
}

.submenu {
  display: none;
  position: absolute;
  background-color: #067bad;
  text-align: center;
  border: 1px solid black;
  top: 100%;
  left: 0;
  z-index: 1;
}

.submenu li {
  padding: 0.5rem 1rem;
}

.menu li:hover .submenu {
  display: block;
}

section {
  width: 100%;
  padding: 2%;
}

article {
  padding: 0 10%; /* Ajustado para telas maiores */
}



#lei_estilo
{
  color:cornflowerblue; 
  font-style: bold;
}


.lista_valores {
  margin: 0 auto;
  max-width: 80%; /* Ajustado para telas maiores */
  text-align: justify;
}

.lista_valores li {
  color: #0591cc;
  list-style-type: circle;
  padding-left: 5%;
}

footer {
  background-color: #0591cc;
  padding: 2%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  color: white;
  width: 100%;
}

.atalhos_rodape ul,
.atalhos_rodape li {
  list-style: none;
  text-align: center;
}

.logo_rodape {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo_rodape img {
  width: 200px; /* Ajustado para telas maiores */
  height: auto;
}

.logo_rodape h4 {
  font-size: medium;
  margin-top: 0.5rem;
}

.redes_sociais_rodape {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.redes_sociais_rodape img {
  width: 60px; /* Ajustado para telas maiores */
  transition: all 0.3s ease-in-out;
}

.redes_sociais_rodape img:hover {
  border: 1px solid white;
  background-color: #287799;
}

.galeria1, .galeria2 {
  width: 45%; /* Ajustado para telas maiores */
  margin: 2% auto;
  text-align: center;
}

.galeria1 img,
.galeria2 img {
  max-width: 100%;
  height: auto;
  border: 1px solid black;
}

.tabela_cooperados {
  margin: 5% auto;
  border-collapse: collapse;
  width: 90%;
}

.tabela_cooperados th,
.tabela_cooperados td {
  border: 1px solid #989898;
  padding: 12px;
  text-align: center;
}

.tabela_cooperados tr:nth-child(even) {
  background-color: #EEEEEE;
}

.lista_passos_afiliar,
.lista_vantagens_afiliar {
  color: #0591cc;
  font-size: 1.4rem;
  padding-left: 10%; /* Ajustado para telas maiores */
  margin: 5% 0;
}

.lista_passos_afiliar li {
  list-style-type: decimal-leading-zero;
}

.lista_vantagens_afiliar li {
  list-style-type: disc;
}

.botoes_afiliar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 4% auto;
  padding: 1%;
}

.botoes_afiliar li {
  background-color: #0591cc;
  color: white;
  padding: 1rem 2rem;
  border: 6px solid #105b7b;
  cursor: pointer;
}

.botoes_afiliar li:hover {
  background-color: #61caf7;
  color: #105b7b;
}

.botoes_afiliar a:active {
  background-color: #105b7b;
  color: #61caf7;
}

.diretoria_estilo {
  text-align: center;
}

.formulario_msg {
  width: fit-content;
  color: #287799;
  font-size: 18px;
  float: right;
  margin-right: 25%;
}

.formulario_msg button {
  border: 2px solid #0591cc;
  font-size: 1.5rem;
  color: #0591cc;
  padding: 0.5rem 1rem;
  background: none;
  cursor: pointer;
}

.texto_contato {
  text-align: center;
}
