* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.green {
  color: green;
}
.red {
  color: #f35454;
}

header {
  background-color: #ffffff;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  height: 50px;
}

nav {
  flex-grow: 1;
  text-align: right;
}

.menu {
  list-style: none;
}

.menu li {
  display: inline;
  margin-left: 20px;
}

.menu li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 18px;
  padding: 10px 10px;
}

.menu li a:hover {
  color: #f35454;
  border-radius: 5px;
}

.iframe-container {
  position: absolute;
  width: 100% !important;
  padding-top: 56.25%; /* Proporção de 16:9 (opcional) */
  height: 100% !important;
}

.iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}
.rounded-circle {
  border-radius: 50% !important;
}
.scroll-to-top {
  position: fixed;
  right: 2%;
  bottom: 5%;
  padding: 0;
  height: 60px;
  width: 60px;
  -webkit-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  z-index: 1120;
}
.scroll-to-top span {
  font-size: 23px;
}
.scroll-to-top:hover {
  background-color: #d0dae3 !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.btnapp {
  background-color: #ea4e27;
  color: white !important;
  transition: background-color 0.3s, color 0.3s; /* Adiciona uma transição suave */
}

.btnapp:hover {
  color: #f35454;
  background-color: #202020 !important;
  border-radius: 5px;
}

.btnapp:active {
  color: #f35454;
  background-color: #202020 !important;
  border-radius: 5px;
}

.info {
  margin-bottom: 50px !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu {
  list-style: none;
 
}
.menu li {
  margin: 0 1em;
}
.menu a {
  color: white;
  text-decoration: none;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px;
}

@media (width < 768px) {
  .menu {
    list-style: none;
    font-size: 12px;
  }

  .menu li {
    display: inline;
    margin-left: 0;
  }

  .menu li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 12px;
    padding: 10px 8px;
  }

  .menu li a:hover {
    color: #f35454;
    border-radius: 5px;
  }
  .logo img {
    height: 20px;
  }
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background-color: rgb(0, 0, 0);
  margin: 4px;
}
@media (max-width: 992px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 99%;
    font-size: 12px;
    position: absolute;
    top: 50px;
    left: 0;
    background-color: #ffffff;
  }
  .menu.show {
    display: flex;
  }
  .hamburger {
    display: flex;
    position: absolute;
    top: 0;
    right: 15px;
  }
}
