* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  scroll-behavior: smooth;
}
:root {
  --black: #000000;
  --white: #ffffff;
  --light-blue: #1877f7;
  --beige: #f7f0e5;
  --dark-blue: #0352bd;
  --taupe-gray: rgb(81, 77, 77);
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--dark-blue);
  border-radius: 50px;
}
body {
  position: relative;
  font-family: "Poppins";
}
.special-font {
  font-family: "Beth Ellen", cursive;
  font-weight: 200;
}
.icons-fixed {
  display: none;
  flex-direction: column;
  gap: 20px;
  position: fixed;
  z-index: 2;
  left: 20px;
  bottom: 50px;
  color: var(--dark-blue);
}
.icons-fixed i {
  font-size: 45px;
  padding: 1px 2px;
  border-radius: 5px;
}
/* #icons-fixed Apenas icones do index.html*/
#icons-fixed i {
  background-color: var(--beige);
}
#icons-fixed .pinterest i {
  border-radius: 100%;
}
.phone-number .paragraph-phone-number,
.pinterest .paragraph-pinterest {
  display: none;
  background-color: var(--beige);
  border-radius: 5px;
  padding: 1px 2px;
  font-weight: 500;
}
.icon-fixed-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.phone-number:hover .paragraph-phone-number,
.pinterest:hover .paragraph-pinterest {
  display: flex;
}
header {
  position: absolute;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: var(--dark-blue);
  color: var(--beige);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}
header .logo img {
  width: 50px;
}
header .logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
}
header .logo .titulo {
  color: var(--beige);
}
header .menu {
  display: flex;
}
.container .menu .menu-list {
  display: flex;
  align-items: center;
  margin: auto;
  gap: 20px;
}
.container .menu .link-menu-list-item {
  font-size: 20px;
  color: var(--beige);
  font-weight: 300;
}
.container .menu-list .link-menu-list-item:hover {
  font-weight: 500;
}
.button-help,
.button-help-responsivo {
  cursor: pointer;
  padding: 5px 10px;
  background-color: var(--beige);
  color: var(--dark-blue);
  font-weight: 700;
  border: none;
  border-radius: 12px;
  margin-left: 20px;
}
.button-help:hover,
.button-help-responsivo:hover {
  opacity: 0.9;
}
footer {
  background-color: var(--dark-blue);
  color: var(--beige);
  font-family: "Poppins", sans-serif;
  text-align: center;
  overflow: hidden;
  box-shadow: 0px -2px 10px -3px var(--beige);
}
footer .container {
  display: flex;
  justify-content: space-around;
  text-align: start;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 40px;
}
footer i {
  margin-right: 3px;
}
footer .logo-footer {
  max-width: 100px;
}
footer .container h3 {
  padding-bottom: 10px;
  cursor: pointer;
}
footer .information {
  display: flex;
  min-width: 100%;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
footer .institucional-subtitle {
  text-decoration: underline;
}
footer .special-font {
  font-weight: 200;
}
footer .container ul {
  display: flex;
  flex-direction: column;
  font-weight: 200;
}
footer .container .list-payments {
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  cursor: pointer;
}
footer .container .list-payments-item {
  max-width: 120px;
  text-align: justify;
  border: 1px solid var(--light-blue);
  padding: 10px;
}
footer .text-rodape-bottom .container {
  flex-direction: row;
  justify-content: space-between;
  display: flex;
  padding-top: 20px;
  font-weight: 200;
  font-size: small;
}
footer .text-rodape-bottom::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--beige);
}
