/* Header */

/* Estilos para elemento clicável ola_cliente */
.clickable-title:hover {
  background-color: rgba(17, 127, 189, 0.1);
  border-color: #117FBD;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(17, 127, 189, 0.2);
}

.clickable-title:active {
  transform: translateY(0px);
  box-shadow: 0 2px 4px rgba(17, 127, 189, 0.3);
}

body { 

  margin: 0px;
  /*font-family: Arial, Helvetica, sans-serif;*/
  font-family: 'Open Sans', sans-serif;
  color: #111111;
  font-size: 14px;
  height: 100vh;
  background: rgba(1, 1, 100,.02);
}

.header-bg {
  background-color: rgb(0, 138, 216, 1);
}

.header {
  display: block;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 1px;
  padding-bottom: 1px;
}

.header-menu {
  display: flex;
  gap: 40px;
  align-items: baseline;
}

.header-menu a {
  padding: 0px 0px;
  display: inline-block;
  position: relative;
}

.underline:after {
  content: "";
  display: block;
  height: 1px;
  width: 0%;
  background: rgb(255, 255, 255);
  margin-top: 4px;
  transition: 0.3s;
  position: absolute;
}

.header-menu a:hover:after {
  width: 100%;
}

/* Utilidades */

.container {
  box-sizing: border-box;
  max-width: 1500px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

/* Global */



ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.container img , .logo img {
  width: 190px;
  height: auto;
  display: block;
}

img[src$=".jpg"] {
  border-radius: 50%;
}
img[src$=".png"] {
  border-radius: 50%;
}

li {
  padding: 5px;
}

li a {
  color: white;
  text-decoration: none;
  background-color: rgb(255, 255, 255, 0);
}

li a img {
  rotate: 180deg;
  fill: currentColor;
  width: max-content;
  height: 5px;
}

.botao {
  text-decoration: none;
  background: linear-gradient(
    90deg,
    var(--azulcrescento) 24%,
    #067bbe 100%
  );
  color: #02293f;
  border-radius: 4px;
  padding: 14px 28px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  max-width: max-content;
  cursor: pointer;
  transition: 0.3s;
}

.botao:hover {
  background: linear-gradient(
    90deg,
    #0b82c7 24%,
    #05659c 100%
  );
  color: white;
}

.botao2 {
  text-decoration: none;
  background: linear-gradient(
    90deg,
    #0b82c7 24%,
    #05659c 100%
  );
  color: white;
  border-radius: 4px;
  padding: 14px 28px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  max-width: max-content;
  cursor: pointer;
  transition: 0.3s;
}

.botao2:hover {
  background: linear-gradient(
    90deg,
    var(--azulcrescento) 24%,
    #067bbe 100%
  );
  color: #02293f;
}

.texto-centralizado {
  text-align: center;
  color: red;
}

.estilo-botao {
  background-color: rgb(10, 10, 158, 0.8);
  max-width: max-content;
  border-radius: 30px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  vertical-align: middle;
  padding: 12px 24px;
}

.estilo-botao:hover {
  background-color: rgb(10, 10, 158, 0.4);
  transition: 0.3s;
}

.left-icon,
.right-icon {
  position: relative;
  display: inline-block;
  top: -3px;
  width: 6px;
  height: 2px;
  background: white;
  border-radius: 50%;
}

.left-icon {
  left: 2px;
  transform: rotate(45deg);
}

.right-icon {
  transform: rotate(-45deg);
}
