/* Global */
@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap");

*:hover,
*:focus {
  border: 1.6px solid var(--blue);
}

.failure:focus,
.failure:hover {
  border: 1.6px solid var(--red);
}

#blue,
.blue {
  background-color: var(--blue) !important;
}

.row {
  display: flex;
  flex-direction: row;
}

.row_space_between {
  justify-content: space-between;
}

.m_bot {
  margin-bottom: 1.3rem;
}

.bold {
  font-weight: 800;
}

.italic {
  font-weight: 800;
  font-style: italic;
}

a:link {
  text-decoration: none;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: none
}

a:visited {
  text-decoration: none;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: none
}

a:hover {
  text-decoration: underline;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: none
}

a:active {
  text-decoration: underline;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: none
}

/* Atendimento CSS */
#atendimento {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 6rem 18rem;
}

#atendimento h1 {
  font-size: 2.4rem;
}

#atendimento #card_container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 0;
}

#atendimento #card_container .card {
  padding: 1.6rem 1.6rem;
  margin: 0.5rem 0.5rem;
  min-width: 31%;
  width: 31%;
  min-height: 18rem;
  max-height: 30rem;
  height: auto;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

#atendimento #card_container .card h2 {
  margin-top: 0;
  max-height: 4rem;
  width: 80%;
  font-size: 2rem;
  font-weight: 500;
}

#atendimento #card_container .card .location {
  display: flex;
  flex-direction: row;
  width: 98%;
  height: auto;
  margin: 0;
  margin-top: 1.4rem;
  padding: 0;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgb(0, 0, 0, 0.2);
}

#atendimento #card_container .card .location img {
  width: 1.7rem;
  height: 2.6rem;
}

#atendimento #card_container .card :is(.location, .personal, .shopping) p {
  margin: 0;
  margin-left: 1rem;
  width: 100%;
  font-size: 1rem;
}

#atendimento #card_container .card .location p {
  width: 70%;
}

#atendimento #card_container .card :is(.personal, .shopping) {
  padding: 0;
  margin: 0;
  margin-top: 0.6rem;
}

#atendimento #card_container .card :is(.personal, .shopping) div {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  vertical-align: middle;
  padding: 0;
  margin: 0;
  margin-top: -0.4rem;
  width: 100%;
  height: auto;
  max-height: 4rem;
}

#atendimento #card_container .card :is(.personal, .shopping) h3 {
  font-size: 1.1rem;
}

#atendimento #card_container .card :is(.personal, .shopping) img {
  width: 2rem;
  height: 2rem;
}

#atendimento #card_container .card :is(.personal, .shopping) #card_button {
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 0;
  margin-right: 0;
  min-width: 8rem;
  height: 2.4rem;
  font-size: 0.58rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background-color: var(--red);
  border-radius: 0.46rem;
  cursor: pointer;
}

#atendimento #newsletter {
  display: flex;
  flex-direction: column;
  width: 65.6%;
  height: 20rem;
  margin-top: 8rem;
  margin-bottom: 6rem;
  padding-top: 4rem;
  padding-left: 6rem;
  color: #fff;
  background-color: var(--red);
}

#atendimento #newsletter h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: -0.4rem;
}

#atendimento #newsletter p {
  margin-top: 0rem;
  margin-bottom: 1.6rem;
}

#atendimento #newsletter form {
  width: 100%;
}

#atendimento #newsletter input {
  width: 80%;
  height: 3rem;
  padding-left: 1.8rem;
  padding-right: 4rem;
  font-family: montserrat, sans-serif;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
}

#atendimento #newsletter button {
  display: none;
}

#atendimento #newsletter label {
  display: flex;
  position: relative;
  top: -2.5rem !important;
  left: 37rem;
  font-size: 1.6rem;
  color: var(--red);
  cursor: pointer;
  font-family: Nanum Gothic, monospace;
}

/* aiming for 2560px width */
@media (min-width: 2200px) and (max-height: 1440px) {
  #atendimento {
    padding: 6rem 24rem;
  }

  #atendimento h1 {
    font-size: 3.4rem;
  }

  #atendimento #card_container .card {
    margin: 1rem 1rem;
    max-height: 36rem;
    padding: 2.6rem 2rem;
  }

  #atendimento #card_container .card h2 {
    font-size: 2.6rem;
  }

  #atendimento #card_container .card .location {
    padding: 0;
    margin: 0;
    margin-top: 2rem;
    padding-bottom: 2rem;
  }

  #atendimento #card_container .card .location div {
    display: flex;
    justify-items: center;
    align-items: center;
    vertical-align: middle;
  }

  #atendimento #card_container .card .location img {
    width: 2.4rem;
    height: 3.4rem;
  }

  #atendimento #card_container .card .location p {
    font-size: 1.4rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) h3 {
    font-size: 1.4rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) div {
    margin-top: -0.4rem;
    width: 100%;
  }

  #atendimento #card_container .card :is(.personal, .shopping) img {
    width: 2.6rem;
    height: 2.4rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) div p {
    font-size: 1.4rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) #card_button {
    margin-right: 0.4rem;
    min-width: 10rem;
    max-height: 3.8rem;
    height: 3rem;
    font-size: 0.8rem;
    border-radius: 8px;
    color: #fff;
  }

  #atendimento #newsletter {
    height: 28rem;
  }

  #atendimento #newsletter h1 {
    margin-top: 0.8rem;
    font-size: 2.8rem;
  }

  #atendimento #newsletter p {
    font-size: 1.4rem;
  }

  #atendimento #newsletter input {
    height: 4.8rem;
    margin-top: 1rem;
    padding-right: 8rem;
    font-size: 1.7rem;
  }

  #atendimento #newsletter label {
    top: 1.8rem;
    left: -15rem;
    font-size: 2.4rem;
    cursor: pointer;
  }
}

@media (min-width: 2200px) and (max-height: 1080px) {
  #atendimento #card_container .card .button {
    padding: 0;
  }
}

@media (max-width: 1920px) and (max-height: 970px) {
  #atendimento #newsletter label {
    top: 0.5rem;
    font-size: 1.6rem;
  }
}

@media (max-width: 1760px) and (max-height: 1080px) {
  #atendimento #card_container .card :is(.personal, .shopping) h3 {
    font-size: 1rem;
  }

  #atendimento #newsletter label {
    top: 0.5rem;
    left: -10rem;
  }
}

@media (max-width: 1440px) and (max-height: 900px) {
  #atendimento {
    padding: 4rem 13rem;
  }

  #atendimento h1 {
    font-size: 2rem;
  }

  #atendimento #card_container .card h2 {
    font-size: 1.6rem;
  }

  #atendimento #card_container .card .location {
    margin-top: 0.5rem;
    padding-bottom: 0.8rem;
  }

  #atendimento #card_container .card .location img {
    width: 1.1rem;
    height: 1.6rem;
  }

  #atendimento #card_container .card :is(.location, .personal, .shopping) p {
    font-size: 0.7rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) {
    margin-top: 0.2rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) h3 {
    font-size: 0.8rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) img {
    width: 1.4rem;
    height: 1.4rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) p {
    font-size: 0.7rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) #card_button {
    min-width: 6rem;
    max-width: 8rem;
    max-height: 2rem;
    margin-right: 0rem;
    font-size: 0.5rem;
  }

  #atendimento #newsletter {
    margin-bottom: 2rem;
    width: 65%;
  }

  #atendimento #newsletter h1 {
    margin-top: -0.6rem;
    font-size: 1.2rem;
  }

  #atendimento #newsletter p {
    width: 80%;
    font-size: 1rem;
    line-height: 1.4rem;
  }

  #atendimento #newsletter input {
    font-size: 1rem;
  }

  #atendimento #newsletter label {
    top: 0.6rem;
    left: -8rem;
    font-size: 1.4rem;
    cursor: pointer;
  }
}

@media (max-width: 1366px) and (max-height: 768px) {
  #atendimento #card_container .card h2 {
    font-size: 1.4rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) h3 {
    font-size: 0.7rem;
  }

  #atendimento #card_container .card .location {
    margin-top: 0rem;
    padding-bottom: 1.4rem;
  }

  #atendimento #card_container .card .personal {
    margin-top: 0.4rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) div {
    margin-top: -0.1rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) .card_button {
    min-width: 5rem;
    width: 5rem;
    font-size: 0.4rem;
    font-weight: 800;
  }

  #atendimento #newsletter label {
    top: 0.54rem;
    left: -7.6rem;
  }
}

@media (max-width: 1280px) and (max-height: 800px) {
  #atendimento {
    padding: 4rem 12rem;
  }

  #atendimento #card_container .card {
    min-height: 16rem;
    max-height: 20rem;
  }

  #atendimento #card_container .card h2 {
    font-size: 1.2rem;
  }

  #atendimento #card_container .card .location {
    padding-bottom: 0.6rem;
  }

  #atendimento #card_container .card .location img {
    width: 1.1rem;
    height: 1.6rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) div {
    margin-top: 0rem;
  }

  #atendimento #card_container .card .personal {
    margin-top: -0.2rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) h3 {
    font-size: 0.6rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) div img {
    width: 1.2rem;
    height: 1.2rem;
  }

  #atendimento #card_container .card :is(.location, .personal, .shopping) p {
    margin-left: 0.4rem;
    font-size: 0.68rem;
  }

  #atendimento
    #card_container
    .card
    :is(.location, .personal, .shopping)
    #card_button {
    height: 1.6rem;
    border-radius: 4px;
  }

  #atendimento #newsletter {
    margin-top: 4rem;
  }

  #atendimento #newsletter h1 {
    font-size: 1.6rem;
  }

  #atendimento #newsletter label {
    top: 0.6rem;
    left: -7rem;
    font-size: 1.4rem;
  }
}

@media (max-width: 1280px) and (max-height: 610px) {
  #atendimento #card_container .card .location {
    margin-top: 0;
    padding-bottom: 0.8rem;
  }

  #atendimento #card_container .card .personal {
    margin-top: 0.2rem;
  }
}

@media (max-width: 1024px) and (max-height: 768px) {
  #atendimento {
    padding: 4rem 10rem;
  }

  #atendimento #card_container :is(#snd, #trd) {
    margin-top: 1rem;
  }

  #atendimento #card_container .card {
    min-height: 10rem;
    max-height: 14rem;
    padding: 1rem 1rem;
  }

  #atendimento #card_container .card h2 {
    font-size: 0.9rem;
  }

  #atendimento #card_container .card .location img {
    width: 0.7rem;
    height: 1.1rem;
  }

  #atendimento #card_container .card :is(.location, .personal, .shopping) p {
    font-size: 0.5rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) div {
    margin-top: -0.2rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) h3 {
    font-size: 0.5rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) div img {
    width: 0.8rem;
    height: 0.8rem;
  }

  #atendimento #card_container .card :is(.personal, .shopping) #card_button {
    min-width: 4rem;
    width: 8rem;
    height: 1.2rem;
    font-size: 0.2rem;
  }

  #atendimento #newsletter {
    padding-top: 2rem;
    padding-left: 4rem;
    height: 14rem;
  }

  #atendimento #newsletter div form {
    width: 100%;
    height: auto;
  }

  #atendimento #newsletter h1 {
    font-size: 1.2rem;
  }

  #atendimento #newsletter p {
    font-size: 0.7rem;
    line-height: 1rem;
  }

  #atendimento #newsletter input {
    height: 2.4rem;
    padding-right: 4rem;
    font-size: 0.8rem;
  }

  #atendimento #newsletter label {
    top: 0.4rem;
    left: -6rem;
    font-size: 1.2rem;
  }
}

@media (orientation: portrait) {
  #atendimento {
    margin: 0;
    padding: 0;
    height: auto;
  }

  #atendimento #card_container {
    display: none;
  }

  #atendimento #newsletter {
    width: 100vw;
  }

  #atendimento #newsletter p {
    width: 100%;
    font-size: 0.7rem;
    font-weight: 500;
    color: #fff;
  }
}

@media (max-width: 480px) and (max-height: 860px) {
  #atendimento {
    padding: 0 2rem;
  }

  #atendimento h1 {
    margin-top: 2rem;
    font-size: 1.4rem;
  }

  #atendimento h2 {
    font-size: 1.2rem;
    color: var(--blue);
  }

  #atendimento p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #9a9a9a;
  }

  #atendimento #newsletter {
    margin-top: 4rem;
    margin-left: -2rem;
    margin-bottom: 0;
    padding: 3rem 2rem;
    height: auto;
  }

  #atendimento #newsletter p {
    margin-top: 0.6rem;
  }

  #atendimento #newsletter input {
    padding-left: 1rem;
    width: 100%;
    font-size: 0.8rem;
  }

  #atendimento #newsletter label {
    top: 0.6rem;
    left: -2.2rem;
    font-size: 1.4rem;
  }
}

@media (max-width: 420px) and (max-height: 900px) {
  #atendimento {
    padding: 1rem 2rem;
  }

  #atendimento h1 {
    font-size: 1.2rem;
  }

  #atendimento h2 {
    font-size: 1rem;
    color: var(--blue);
  }

  #atendimento p {
    font-size: 0.8rem;
  }

  #atendimento #newsletter {
    padding: 3rem 2rem;
    margin-top: 0;
    margin-left: -2rem;
    margin-bottom: -1rem;
    height: 17rem;
  }

  #atendimento #newsletter h1 {
    font-size: 1.2rem;
    line-height: 1.6rem;
    text-decoration: none;
  }

  #atendimento #newsletter p {
    font-size: 0.7rem;
    line-height: 1rem;
    text-decoration: none;
  }

  #atendimento #newsletter form {
    width: 100%;
    height: auto;
  }

  #atendimento #newsletter input {
    padding-left: 1rem;
    padding-right: 4rem;
    width: 100%;
    font-size: 0.8rem;
  }

  #atendimento #newsletter label {
    width: 2rem;
    top: -2.3rem;
    left: 20rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 420px) and (max-height: 830px) {
  #atendimento #newsletter {
    margin-top: 4rem;
  }

  #atendimento h1 {
    font-size: 1.2rem;
  }

  #atendimento h2 {
    font-size: 1rem;
  }

  #atendimento #newsletter p {
    font-size: 0.7rem;
    line-height: 1rem;
  }
}

@media (max-width: 420px) and (max-height: 740px) {
  #atendimento h1 {
    font-size: 1.2rem;
  }

  #atendimento h2 {
    font-size: 1rem;
  }

  #atendimento #newsletter {
    margin-top: 2rem;
  }

  #atendimento #newsletter label {
    top: 0.6rem;
    font-size: 1rem;
  }
}

@media (max-width: 400px) and (max-height: 820px) {
  #atendimento h1 {
    font-size: 1.2rem;
  }

  #atendimento h2 {
    font-size: 1rem;
  }

  #atendimento #newsletter {
    margin-top: 6rem;
  }

  #atendimento #newsletter h1 {
    font-size: 1.4rem;
  }

  #atendimento #newsletter p {
    font-size: 0.8rem;
    line-height: 1rem;
  }

  #atendimento #newsletter label {
    top: 0.7rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 400px) and (max-height: 820px) {
  #atendimento #newsletter h1 {
    font-size: 1.2rem;
  }

  #atendimento #newsletter p {
    font-size: 0.7rem;
  }
}

@media (max-width: 400px) and (max-height: 740px) {
  #atendimento h2 {
    font-size: 1rem;
  }

  #atendimento #newsletter {
    margin-top: 5rem;
  }

  #atendimento #newsletter label {
    top: 0.6rem;
    left: -1.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 400px) and (max-height: 670px) {
  #atendimento {
    padding: 0 2rem;
  }

  #atendimento h1 {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 800;
  }

  #atendimento h2 {
    font-size: 1rem;
    color: var(--blue);
  }

  #atendimento p {
    font-weight: 500;
    color: #9a9a9a;
  }

  #atendimento #newsletter {
    margin-top: 4rem;
    margin-left: -2rem;
    margin-bottom: 0;
    padding: 3rem 2rem;
    height: auto;
  }

  #atendimento #newsletter p {
    margin-top: 0.6rem;
  }

  #atendimento #newsletter input {
    padding-left: 1rem;
    width: 100%;
    font-size: 0.8rem;
  }

  #atendimento #newsletter label {
    top: 0.6rem;
    left: -1.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 400px) and (max-height: 640px) {
  #atendimento #newsletter {
    margin-top: 2rem;
  }
}

@media (max-width: 400px) and (max-height: 568px) {
  #atendimento h1 {
    font-size: 1.2rem;
    font-weight: 800;
  }

  #atendimento h2 {
    font-size: 1rem;
  }

  #atendimento p {
    font-size: 0.8rem;
  }

  #atendimento #newsletter {
    margin-top: 4rem;
  }

  #atendimento #newsletter label {
    top: 0.6rem;
    font-size: 1rem;
  }
}

/* Cadastro CSS */
#m_left {
  margin-left: 2rem;
}

#cadastro {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 10rem 18rem;
}

#cadastro h1 {
  margin-top: 0;
  font-size: 2.4rem;
  font-weight: 800;
}

#cadastro #radio {
  display: flex;
  flex-direction: row;
  margin-top: 1rem;
  margin-bottom: 1.4rem;
}

#cadastro #radio div {
  font-size: 1.2rem;
}

#cadastro #radio label:nth-child(2) div input {
  margin-left: 2rem;
}

#cadastro :is(.row, .col) {
  width: 100%;
}

#cadastro #cidade {
  width: 48%;
}

#cadastro form {
  width: 70%;
  height: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#cadastro form label {
  font-weight: 600;
}

#cadastro form input {
  width: 100%;
  height: 3.4rem;
  padding-left: 1rem;
  padding-right: 4rem;
  margin-top: 0.8rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 6px;
  background-color: #e4e4e4;
}

#cadastro #politics div a {
  text-decoration: none;
}

#cadastro #politics div input {
  float: left;
  width: 1rem;
  height: 1rem;
  margin: 0.25rem;
  margin-right: 1rem;
}

#cadastro #politics div:last-of-type {
  margin-top: 1rem;
}

#cadastro #politics div {
  font-size: 1.2rem;
}

#cadastro a {
  margin-top: 2rem;
}

#politics label:nth-child(2) {
  margin-top: 1rem;
}

.cadastro_button {
  display: inline-block;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 16rem;
  height: 4rem;
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background-color: var(--red);
  border: none;
  border-radius: 0.46rem;
  cursor: pointer;
}

.cadastro_button:hover {
  background-color: rgba(141, 0, 12, 0.9);
}

/* aiming for 2560px width */
@media (min-width: 2200px) and (max-height: 1440px) {
  #cadastro {
    padding: 10rem 24rem;
  }

  #cadastro h1 {
    font-size: 3.8rem;
  }

  #cadastro form {
    margin-top: 2rem;
  }

  #cadastro #radio div input {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 1rem;
  }

  #cadastro #radio label:nth-child(2) div input {
    margin-left: 4rem;
  }

  #cadastro #radio div {
    font-size: 1.8rem;
  }

  #cadastro form label {
    margin-top: 1rem;
    font-size: 1.4rem;
  }

  #cadastro form div input {
    padding-left: 2rem;
    height: 5rem;
    border-radius: 12px;
    font-size: 1.6rem;
  }

  #cadastro #politics {
    margin-top: 0rem;
  }

  #cadastro #politics div input {
    float: left;
    width: 1.6rem;
    height: 1.6rem;
    margin: 0;
    margin-right: 1rem;
  }

  #cadastro #politics div:last-of-type {
    margin-top: 2rem;
  }

  #cadastro #politics div {
    font-size: 1.8rem;
  }

  #cadastro .cadastro_button {
    width: 20rem;
    height: 5rem;
    margin-top: 4rem;
    padding-top: 1.34rem;
    font-size: 1.8rem;
    border-radius: 16px;
  }
}

@media (max-width: 1920px) and (max-height: 970px) {
  #cadastro {
    padding: 7rem 18rem;
  }
}

@media (max-width: 1760px) and (max-height: 1020px) {
  #cadastro {
    padding: 6rem 13rem;
  }
}

@media (max-width: 1440px) and (max-height: 900px) {
  #cadastro {
    padding: 6rem 14rem;
  }

  #cadastro a {
    margin-bottom: 2rem;
  }

  #cadastro form input {
    height: 2.8rem;
  }

  #cadastro .cadastro_button {
    padding-top: 0.9rem;
    margin-bottom: 0;
    width: 12rem;
    height: 3rem;
    font-size: 1rem;
  }

  #cadastro #politics div input {
    width: 1rem;
  }
}

@media (max-width: 1366px) and (max-height: 768px) {
  #cadastro {
    padding: 6rem 13rem;
  }

  #cadastro form label {
    font-size: 1em;
  }
}

@media (max-width: 1280px) and (max-height: 800px) {
  #cadastro {
    padding: 6rem 12rem;
  }

  #cadastro .cadastro_button {
    padding-top: 0.6rem;
    width: 12rem;
    height: 2.6rem;
    font-size: 1rem;
  }
}

@media (max-width: 1024px) and (max-height: 768px) {
  #cadastro {
    padding: 4rem 10rem;
  }

  #cadastro h1 {
    font-size: 1.8rem;
  }

  #cadastro form label {
    font-size: 0.8rem;
  }

  #cadastro form input {
    height: 2.4rem;
    font-size: 1rem;
  }

  #cadastro #radio div,
  #cadastro #politics div {
    font-size: 1rem;
  }

  #cadastro #politics div input {
    width: 0.8rem;
  }
}

@media (orientation: portrait) {
  #cadastro {
    height: auto;
  }

  #cadastro #radio {
    margin: 0;
    flex-direction: column;
  }

  #cadastro #radio div {
    color: #9a9a9a;
    font-weight: 500;
  }

  #cadastro #radio div:last-of-type {
    margin-top: 0.8rem;
    margin-left: 0;
  }

  #cadastro form {
    width: 100%;
  }

  #cadastro form div {
    flex-direction: column;
  }

  #cadastro form #cidade {
    width: 100%;
  }

  #cadastro form #m_left {
    margin-left: 0;
  }

  #cadastro #politics {
    margin-top: -1.2rem;
  }

  #cadastro #politics div {
    color: #9a9a9a;
    font-size: 0.8rem;
    font-weight: 500;
  }

  #cadastro #politics div:last-of-type {
    margin-top: 0.8rem;
  }
}

@media (max-width: 480px) and (max-height: 860px) {
  #cadastro {
    padding: 4rem 3rem;
  }

  #cadastro h1 {
    font-size: 1.4rem;
  }

  #cadastro #radio div {
    font-size: 0.8rem;
  }

  #cadastro #radio label:nth-child(2) div {
    margin-left: -1.7rem;
  }

  #cadastro form label {
    font-size: 0.8rem;
  }

  #cadastro form input {
    width: 100%;
  }

  #cadastro #politics label:nth-child(2) {
    margin-top: -0.2rem;
  }

  #cadastro .cadastro_button {
    padding-top: 0.8rem;
    width: 8rem;
    height: 2.4rem;
    font-size: 0.8rem;
    border-radius: 4px;
  }
}

@media (max-width: 420px) and (max-height: 900px) {
  #cadastro {
    padding: 2rem 2rem;
  }

  #cadastro h1 {
    font-size: 1.2rem;
    font-weight: 800;
  }

  #cadastro #radio div {
    font-size: 0.8rem;
  }

  #cadastro #radio label:nth-child(2) div {
    margin-left: -1.7rem;
  }

  #cadastro form label {
    font-size: 0.8rem;
  }

  #cadastro form input {
    width: 100%;
  }

  #cadastro #politics label:nth-child(2) {
    margin-top: -0.2rem;
  }

  #cadastro .cadastro_button {
    padding-top: 0.8rem;
    width: 8rem;
    height: 2.4rem;
    font-size: 0.8rem;
    border-radius: 4px;
  }
}

/* Carousel CSS */
.superContainer {
  height: auto;
  width: auto;
  max-height: 56vh;
}

.m_bottom {
  margin-bottom: 4rem;
}

.container {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  width: auto;
  height: auto;
}

.card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  margin-right: 1rem;
  min-width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background-color: #fff;
}

.atendimento_card {
  min-height: 86%;
  max-height: 94%;
}

.atendimento_card h2 {
  color: #000 !important;
  font-weight: 500;
}

.card img {
  width: 100%;
  height: auto;
}

.card div {
  padding: 0.5rem 1rem;
}

.card div h2 {
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 1rem !important;
  font-weight: 500;
}

.card div a {
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 0.6rem;
  margin: 0;
  width: 7rem;
  height: 2.4rem;
  font-size: 0.6rem;
  color: #9a9a9a;
  border: 1px solid #9a9a9a;
  border-radius: 6px;
  text-decoration: none;
}

.card div a span {
  display: flex;
  position: relative;
  left: 0.4rem;
  font-size: 1rem;
  color: var(--red);
  font-family: Nanum Gothic, monospace;
}

.selected {
  display: inline-flex;
  /* display: none; */
  flex-direction: row;
  position: relative;
  top: -3rem;
  justify-content: space-between;
  width: 100%;
  height: 0.2rem;
}

.selected a {
  display: inline-block;
  padding: 0;
  margin: 0 auto;
  margin-left: 0.4rem;
  width: 33%;
  height: 100%;
  background-color: rgba(204, 204, 204, 0.6);
  cursor: pointer;
  scroll-behavior: smooth;
}

.selected a:first-of-type {
  margin-left: 0;
}

.location {
  display: inline-flex;
  flex-direction: row;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 98%;
  border-bottom: 1px solid rgba(143, 146, 161, 0.2);
}

.location img {
  width: 1rem;
  height: 1.4rem;
}

.location p {
  width: 12rem;
  margin-top: -0.2rem;
  margin-left: 0.6rem;
  font-size: 0.8rem;
  font-weight: 400;
}

:is(.personal, .shopping) {
  display: flex;
  flex-direction: column;
}

.personal {
  margin-top: -1rem;
}

:is(.personal, .shopping) h3 {
  font-size: 0.7rem;
}

:is(.personal, .shopping) div {
  display: flex;
  flex-direction: row;
  width: 18rem;
  justify-content: left;
  align-items: center;
  text-align: left;
}

:is(.personal, .shopping) img {
  width: 1.2rem;
  height: 1.2rem;
}

:is(.personal, .shopping) p {
  font-size: 0.7rem;
  margin-left: 0.6rem;
}

.card_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0;
  padding: 0.6rem !important;
  width: 8rem !important;
  height: 2rem !important;
  font-size: 0.6rem !important;
  text-decoration: none !important;
  text-align: center !important;
  color: #fff !important;
  background-color: var(--red) !important;
  border: none;
  border-radius: 8px !important;
}

@media (max-width: 480px) and (max-height: 860px) {
  #home_container {
    height: auto;
  }

  #atendimento_container {
    width: 100%;
  }

  #home_items {
    width: auto;
    height: auto;
  }

  .atendimento_card {
    padding: 1rem 2rem;
  }

  .card {
    height: 88%;
  }

  .atendimento_card h2 {
    font-size: 1.4rem;
  }

  .atendimento_card :is(.location, .personal, .shopping) :is(p) {
    font-size: 0.8rem;
  }

  .atendimento_card .location {
    width: 100%;
  }

  .atendimento_card .card_button {
    margin-left: auto;
    margin-right: 0rem;
    width: 8rem;
    font-size: 0.6rem;
  }

  .selected {
    top: 1.6rem;
    width: 100%;
    height: 0.3rem;
  }
}

@media (max-width: 480px) and (max-height: 900px) {
  #home_container {
    height: auto;
  }

  #home_items .card div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    min-width: 30%;
    max-width: 70%;
    min-height: 70%;
    max-height: 90%;
    width: auto;
    height: auto;
  }

  #home_items .card div h2 {
    margin: 1rem 0;
  }

  #home_items .card div a {
    margin: 1rem 0;
    margin-top: 0;
  }

  .atendimento_card {
    margin-right: 1.5rem;
    min-height: 78%;
    max-height: 92%;
  }
}

@media (max-width: 420px) and (max-height: 900px) {
  #atendimento_container {
    margin-top: 1rem;
    width: auto;
    height: auto;
  }

  #home_items {
    width: auto;
  }

  #home_items .card div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    min-width: 30%;
    max-width: 70%;
    min-height: 70%;
    max-height: 90%;
    width: auto;
    height: auto;
  }

  #home_items .card div h2 {
    margin: 1rem 0;
  }

  #home_items .card div a {
    margin: 1rem 0;
    margin-top: 0;
  }

  #home_items .card div #news_card_title {
    justify-content: flex-start;
    align-content: flex-start;
    text-align: left;
    margin: 1rem 0;
    padding: 0;
    width: 100%;
    border: none;
  }

  .atendimento_items {
    width: 100vw;
    height: 34vh;
  }

  .card:first-of-type {
    margin-left: 0;
  }

  .card {
    margin-right: 0;
    margin-left: 1rem;
  }

  .atendimento_card {
    padding: 1rem 2rem;
    width: 100%;
    height: auto;
  }

  .atendimento_card :is(.location, .personal, .shopping) :is(p) {
    width: 80%;
    font-size: 0.8rem;
  }

  .selected {
    top: 1rem;
    height: 0.3rem;
  }

  #home_selected {
    top: 1.6rem;
  }

  .atendimento_card .card_button {
    width: 10rem;
    margin-right: 0.6rem;
    border-radius: 4px;
  }
}

@media (max-width: 420px) and (max-height: 830px) {
  #atendimento_container {
    margin-top: 1rem;
    height: 38vh;
  }

  #atendimento_container h2 {
    margin-top: 0.6rem;
    font-size: 1.2rem !important;
  }

  .atendimento_card .location {
    padding-bottom: 1rem;
  }

  .atendimento_card .location p {
    font-size: 0.7rem;
    line-height: 0.9rem;
  }

  .atendimento_items {
    height: 98%;
  }

  .card {
    height: 88%;
  }

  .atendimento_card {
    margin-right: 1rem;
    max-height: 96%;
  }

  .atendimento_card :is(.personal, .shopping) div {
    margin-top: -0.6rem;
  }

  .atendimento_card .card_button {
    margin-right: 0;
    font-size: 0.468rem;
    border-radius: 4px;
  }

  #atendimento_selected {
    top: 1rem;
  }
}

@media (max-width: 420px) and (max-height: 740px) {
  #atendimento_container {
    width: 100%;
    height: 38vh;
    margin-top: 0;
    margin-bottom: 2rem;
  }

  .atendimento_items {
    width: 100%;
    height: 100%;
  }

  .atendimento_card:first-of-type {
    margin-left: 0;
  }

  .atendimento_card {
    margin-left: 1rem;
    margin-right: 0;
    padding: 0.2rem 1.2rem;
    width: 100%;
    max-height: 90%;
    height: auto;
  }

  #atendimento .atendimento_card :is(.location, .personal, .shopping) p {
    font-size: 0.7rem;
  }

  .atendimento_card .location {
    margin-top: 0.4rem;
    padding-bottom: 0.6rem;
  }

  .atendimento_card .card_button {
    margin-right: 0rem;
    height: 1.6rem;
    font-size: 0.468rem;
    border-radius: 4px;
  }

  .selected {
    height: 0.2rem;
  }

  #home_selected {
    height: 0.3rem;
  }

  #atendimento_selected {
    top: -3rem;
  }
}

@media (max-width: 400px) and (max-height: 820px) {
  #atendimento_container {
    margin-bottom: -2rem;
    height: 41vh;
  }

  .atendimento_items {
    width: 80vw;
  }

  .atendimento_card {
    padding: 0.5rem 1.8rem;
    max-height: 86%;
  }

  .atendimento_card .location p {
    font-size: 0.7rem;
  }

  .atendimento_card .card_button {
    margin-right: 2.2rem;
    width: 10rem;
    font-size: 0.6rem;
    border-radius: 4px;
  }
}

@media (max-width: 400px) and (max-height: 740px) {
  #atendimento_container {
    margin-top: 1rem;
    margin-bottom: -3rem;
    width: auto;
    min-height: 40vh;
    max-height: 50vh;
    height: auto;
  }

  .atendimento_card .location {
    margin-top: 0.6rem;
    padding-bottom: 0.4rem;
    width: 100%;
  }

  .atendimento_card .location p {
    font-size: 0.7rem;
  }

  .card:first-of-type {
    margin-left: 0;
  }

  .card {
    margin-left: 1rem;
    margin-right: 0;
    width: 70%;
  }

  .atendimento_items {
    width: 90vw;
  }

  .atendimento_card:first-of-type {
    margin-left: 0;
  }

  .atendimento_card {
    margin-right: 0;
    margin-left: 1rem;
  }

  .atendimento_card .card_button {
    margin-right: 4.2rem;
    width: 9rem;
    height: 1.6rem;
    font-size: 0.5rem;
    border-radius: 4px;
  }

  #atendimento_selected {
    width: 100%;
    top: 1.4rem;
  }
}

@media (max-width: 400px) and (max-height: 670px) {
  #atendimento_container {
    margin-bottom: -1.6rem;
    height: 48vh;
  }

  .atendimento_items {
    width: 100vw;
  }

  .card:first-of-type {
    margin-left: 0;
  }

  .atendimento_card {
    padding: 0.2rem 1rem;
  }

  .atendimento_card h2 {
    font-size: 1rem;
  }

  .atendimento_card .location {
    margin: 0.8rem 0;
    padding-bottom: 1rem;
    width: 97%;
  }

  .atendimento_card .location p {
    font-size: 0.7rem;
  }

  .atendimento_card .personal {
    margin-top: 0rem;
    margin-bottom: 1rem;
  }

  .atendimento_card .personal {
    margin-top: -1rem;
  }

  .atendimento_card .personal div {
    margin-top: -0.4rem;
  }

  .atendimento_card .shopping {
    margin-top: -1rem;
  }

  .atendimento_card .card_button {
    margin-right: 1rem;
    width: 10rem;
    height: 1.6rem;
    font-size: 0.4rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 4px;
  }

  #home_selected {
    top: 1.6rem;
  }

  #atendimento_selected {
    top: 0rem;
  }
}

@media (max-width: 400px) and (max-height: 670px) {
  .atendimento_card {
    max-height: 83%;
  }
}

@media (max-width: 400px) and (max-height: 640px) {
  .atendimento_card {
    min-height: 78%;
    max-height: 84%;
    height: auto;
  }

  #atendimento_selected {
    top: 0rem;
  }
}

@media (max-width: 400px) and (max-height: 568px) {
  .atendimento_items {
    position: relative;
    width: 80vw;
    height: 100%;
  }

  .card:first-of-type {
    margin-left: 0;
  }

  .card {
    margin-right: 0;
    margin-left: 1rem;
  }

  .atendimento_card {
    min-height: 86%;
    max-height: 94%;
  }

  .atendimento_card :is(.personal, .shopping) div {
    margin-top: 0;
  }

  .atendimento_card .location {
    padding-bottom: 0;
    width: 100%;
  }

  .atendimento_card .location p {
    font-size: 0.7rem;
  }

  .atendimento_card .personal {
    margin-top: -0.6rem;
  }

  .atendimento_card .shopping {
    margin-top: -1rem;
  }

  .atendimento_card :is(.personal, .shopping) :is(p) {
    width: 40%;
    font-size: 0.7rem;
  }

  .atendimento_card .card_button {
    margin-right: 4.2rem;
    width: 5.4rem;
    height: 1.6rem;
    font-size: 0.5rem;
    border-radius: 4px;
  }

  #atendimento_selected {
    top: 2rem;
  }
}

/* Cartão Novo CSS */
#cartaonovo {
  display: flex;
  width: 100%;
  height: auto;
}

#cartaonovo #cartao {
  display: flex;
  position: relative;
  justify-content: left;
  align-items: center;
  min-width: 100%;
  height: auto;
  padding: 8rem 18rem;
  color: #fff;
  background-image: url("../img/teste3.png");
  background-repeat: no-repeat;
  background-size: cover;
}


#cartaonovo .table {
    border: none !important;
    border-spacing: 0;
    overflow: auto;
}


#cartaonovo .table tr, .table td { 
        border-top: none !important;
        border-left: none !important;
        border: none !important;
}


#cartaonovo .borderless td, .borderless th {
    border: none;
    border-spacing: 0;
}

.borderless td, .borderless th {
    border: none;
    border-spacing: 0;
}


#cartaonovo #cartaotwosides {
  display: inline-block flex;
  position: -webkit-sticky;
  position: sticky;
  width: auto;
  height: auto;
}



#cartaonovo #cartao h1 {
  width: 40rem;
  font-size: 3.4rem;
  line-height: 3.8rem;
  text-align: left;
  margin-left: 1rem;
}

#cartaonovo #cartaonovo_inner {
  width: 100%;
  height: auto;
}

#cartaonovo #cartaonovo_inner #fst_paragraph {
  margin: 6rem 19rem;
  margin-right: 0;
  width: 100%;
}

#cartaonovo #cartaonovo_inner div div {
  margin-top: 8rem;
}

#cartaonovo #cartaonovo_inner h1 {
  font-size: 2.8rem;
  color: var(--blue);
}

#cartaonovo #cartaonovo_inner p {
  font-size: 1.4rem;
}

#cartaonovo #cartaonovo_inner ul li::marker {
  color: var(--blue);
  font-size: 2rem;
}

#cartaonovo #cartaonovo_inner ul li {
  font-size: 1.2rem;
}

#cartaonovo #cartaonovo_inner #fst_paragraph div ul li {
  color: var(--blue);
}

#cartaonovo #cartaonovo_inner div div:nth-child(2) {
  margin-top: 6rem;
}

#cartaonovo #cartaonovo_inner div div:nth-child(2) ul li {
  font-weight: 600;
  color: var(--blue);
}

#cartaonovo #cartao_img {
  position: relative;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  margin-right: 10rem;
  left: -2rem;
  width: 67.6rem;
  height: auto;
}

#cartaonovo #cartao_img img {
  width: 100%;
  height: auto;
}

/* aiming to 2560px width */
@media (min-width: 2200px) and (min-height: 1440px) {
  #cartaonovo #cartao {
    height: 52vh;
    background-position: 55% 0;
  }

  #cartaonovo #cartao h1 {
    width: 58rem;
    margin-left: 7rem;
    align-self: center;
    font-size: 5rem;
    line-height: 5.6rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    margin: 6rem 19rem;
    margin-right: 0;
  }

  #cartaonovo #cartaonovo_inner div div {
    margin-top: 8rem;
  }

  #cartaonovo #cartaonovo_inner h1 {
    font-size: 3.8rem;
  }

  #cartaonovo #cartaonovo_inner ul {
    width: 80%;
  }

  #cartaonovo #cartaonovo_inner ul li::marker {
    font-size: 3rem;
  }

  #cartaonovo #cartaonovo_inner li {
    font-size: 2rem;
  }

  #cartaonovo #cartaonovo_inner p {
    font-size: 2.2rem;
  }

  #cartaonovo #cartao_img {
    margin-right: 16rem;
    left: 0rem;
    width: 122rem;
  }
}

@media (min-width: 2200px) and (max-height: 1280px) {
  #cartaonovo #cartao {
    height: 58vh;
  }

  #cartaonovo #cartaonovo_inner div div {
    margin-top: 8rem;
    margin-bottom: 4rem;
  }
}

/* aiming to 2560px width */
@media (min-width: 2200px) and (min-height: 1080px) {
  #cartaonovo #cartao {
    height: 68vh;
  }

  #cartaonovo #cartao h1 {
    width: 56rem;
    height: auto;
    margin-left: 7rem;
    font-size: 4.6rem;
    line-height: 5rem;
  }

  #cartaonovo #cartaonovo_inner {
    margin: 0rem 6rem;
  }

  #cartaonovo #cartaonovo_inner p {
    font-size: 1.6rem;
  }

  #cartaonovo #cartaonovo_inner h1 {
    font-size: 3.8rem;
  }

  #cartaonovo #cartaonovo_inner ul li::marker {
    font-size: 3rem;
  }

  #cartaonovo #cartaonovo_inner p {
    font-size: 2rem;
  }

  #cartaonovo #cartaonovo_inner ul li {
    font-size: 1.8rem;
  }

  #cartaonovo #cartao_img {
    margin-right: 16rem;
    left: -6rem;
    width: 84rem;
  }
}

@media (max-width: 1920px) and (max-height: 970px) {
  #cartaonovo #cartao {
    height: 60vh;
    padding: 8rem 17rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    margin: 6rem 17rem;
    margin-right: 0;
  }

  #cartaonovo #cartaonovo_inner div div {
    margin-top: 4rem;
  }

  #cartaonovo #cartao_img {
    margin-right: 12rem;
    left: 0;
    width: 68rem;
  }
}

@media (max-width: 1760px) and (max-height: 1080px) {
  #cartaonovo #cartao {
    padding: 8rem 15rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    margin: 6rem 16rem;
  }
}

@media (max-width: 1440px) and (max-height: 900px) {
  #cartaonovo #cartao {
    height: 40vh;
    padding: 0;
    justify-content: left;
    align-items: center;
    background-position: 0% 56%;
  }

  #cartaonovo #cartao h1 {
    font-size: 2.4rem;
    line-height: 2.8rem;
    margin-left: 14rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    margin: 6rem 14rem;
    margin-right: 0;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph ul:first-of-type {
    margin: 0;
    margin-left: -0.6rem;
  }

  #cartaonovo #cartaonovo_inner h1 {
    font-size: 2rem;
  }

  #cartaonovo #cartaonovo_inner div div {
    margin-top: 2rem;
  }

  #cartaonovo #cartaonovo_inner p {
    font-size: 1rem;
  }

  #cartaonovo #cartaonovo_inner ul li {
    font-size: 0.9rem;
  }

  #cartaonovo #cartaonovo_inner div h1 {
    width: 40rem;
  }

  #cartaonovo #cartao_img {
    left: 0.4rem;
    margin-right: 8rem;
  }
}

@media (max-width: 1440px) and (max-height: 789px) {
  #cartaonovo #cartao {
    height: 46vh;
  }

  #cartaonovo #cartao h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 1366px) and (max-height: 768px) {
  #cartaonovo #cartao {
    height: 50vh;
  }

  #cartaonovo #cartao h1 {
    margin-left: 13rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    margin: 4rem 13rem;
    margin-right: 0;
  }

  #cartaonovo #cartaonovo_inner div div {
    margin-top: 4rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph ul li {
    font-size: 1rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph ul li span {
    position: relative;
    top: -0.3rem;
  }

  #cartaonovo #cartao_img {
    width: 40rem;
    margin-right: 12.6rem;
  }
}

@media (max-width: 1366px) and (max-height: 659px) {
  #cartaonovo #cartao {
    height: 54vh;
  }

  #cartaonovo #cartaonovo_inner div:first-of-type div:nth-child(2) {
    margin-top: 4rem;
  }
}

@media (max-width: 1366px) and (max-height: 625px) {
  #cartaonovo #cartao {
    height: 58vh;
  }
}

@media (max-width: 1280px) and (max-height: 800px) {
  #cartaonovo #cartao h1 {
    margin-left: 12rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    margin: 2rem 12rem;
    margin-right: 0;
  }

  #cartaonovo #cartaonovo_inner div div {
    margin-top: 4rem;
    margin-bottom: 2rem;
  }

  #cartaonovo #cartao_img {
    width: 28rem;
    margin-left: -36rem;
  }
}

@media (max-width: 1280px) and (max-height: 610px) {
  #cartaonovo #cartaonovo_inner p {
    font-size: 1.1rem;
  }

  #cartaonovo #cartao_img {
    margin-left: -18rem;
    margin-right: 11rem;
  }
}

@media (max-width: 1024px) and (max-height: 768px) {
  #cartaonovo #cartao {
    background-position: 42% 0;
  }

  #cartaonovo #cartao h1 {
    margin-left: 9.8rem;
    font-size: 2rem;
    line-height: 2.4rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    margin: 4rem 9.4rem;
    margin-right: 0;
  }

  #cartaonovo #cartaonovo_inner h1 {
    font-size: 1.6rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    width: 44%;
  }

  #cartaonovo #cartaonovo_inner ul li::marker {
    font-size: 1.4rem;
  }

  #cartaonovo #cartaonovo_inner ul li span {
    top: 0;
    font-size: 0.7rem;
  }

  #cartaonovo #cartaonovo_inner p {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }

  #cartaonovo #cartao_img {
    width: 20rem;
    margin-right: 5.5rem;
  }
}

@media (orientation: portrait) {
  #cartao_img {
    display: none;
  }

  #cartaonovo {
    margin: 0;
    padding: 0;
  }

  #cartaonovo #cartao {
    width: 100%;
  }

  #cartaonovo #cartaonovo_inner {
    flex-direction: column;
    margin: 0;
    height: auto;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    margin: 1rem 1rem;
    width: 90%;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph div {
    margin: 0;
  }

  #cartaonovo #cartaonovo_inner :is(li, p) {
    color: #9a9a9a;
    font-weight: 500;
  }
}

@media (max-width: 480px) and (max-height: 900px) {
  #cartaonovo #cartao {
    height: 30vh;
    background-position: 50% 0;
  }

  #cartaonovo #cartao h1 {
    margin-top: 0.8rem;
    margin-left: 2rem;
    width: 12rem;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.6rem;
  }

  #cartaonovo #cartaonovo_inner {
    height: auto;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    margin: 1rem 2rem;
  }

  #cartaonovo :is(#cartaonovo_inner div, #redbanner) h1 {
    font-size: 1.4rem;
    font-weight: 800;
  }

  #cartaonovo #cartaonovo_inner div ul {
    vertical-align: middle;
    margin: 0 -0.8rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph ul {
    width: 90%;
  }

  #cartaonovo :is(#cartaonovo_inner div, #redbanner) :is(ul li, p) {
    width: 80%;
    font-size: 0.8rem;
    line-height: 1.2rem;
  }

  #cartaonovo #cartaonovo_inner div ul li span {
    position: relative;
    top: -0.3rem;
  }

  #cartaonovo #cartaonovo_inner #requisites h1 {
    margin-top: 3rem;
    width: 100%;
  }

  #cartaonovo #redbanner {
    padding: 1rem 2rem;
    width: 100%;
    height: auto;
    background-color: var(--red);
  }

  #cartaonovo #redbanner :is(h1, li) {
    color: #fff;
  }

  #cartaonovo #redbanner div div:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  #cartaonovo #redbanner div ul {
    margin: 0;
    padding: 0 1rem;
    padding-bottom: 2rem;
  }

  #cartaonovo #redbanner h1 {
    font-size: 1.2rem;
    font-weight: 800;
  }

  #cartaonovo #redbanner div div:nth-child(2) h1 {
    margin-top: 2rem;
  }

  #cartaonovo #redbanner li::marker {
    font-size: 0.9rem;
  }

  #cartaonovo #redbanner li {
    margin-top: 0.2rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 420px) and (max-height: 900px) {
  #cartaonovo #cartao h1 {
    width: 10rem;
    font-size: 1.2rem;
  }

  #cartaonovo :is(#cartaonovo_inner div, #redbanner) h1 {
    font-size: 1.2rem;
  }

  #cartaonovo :is(#cartaonovo_inner #fst_paragraph, #redbanner) ul li {
    font-size: 0.8rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph p {
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) and (max-height: 830px) {
  #cartaonovo #cartao h1 {
    width: 10rem;
    font-size: 1.2rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    width: 80%;
  }

  #cartaonovo #cartaonovo_inner div ul li span {
    top: -0.3rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph div {
    margin-top: -1rem;
  }
}

@media (max-width: 420px) and (max-height: 740px) {
  #cartaonovo #cartao h1 {
    width: 10rem;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    width: 80%;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph :is(ul:first-of-type li, p) {
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) and (max-height: 820px) {
  #cartaonovo #cartaonovo_inner #fst_paragraph :is(ul li, p) {
    width: 90%;
  }

  #cartaonovo #cartao h1 {
    width: 10rem;
    font-size: 1.2rem;
    line-height: 1.6rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    width: 80%;
  }
}

@media (max-width: 400px) and (max-height: 740px) {
  #cartaonovo #cartaonovo_inner #fst_paragraph :is(ul:first-of-type li, p) {
    width: 100%;
  }

  #cartaonovo #cartao h1 {
    width: 9rem;
    font-size: 1rem;
    line-height: 1.4rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    width: 80%;
  }
}

@media (max-width: 400px) and (max-height: 670px) {
  #cartaonovo #cartao {
    height: 30vh;
    background-position: 40% 0;
  }

  #cartaonovo #cartao h1 {
    margin-top: 0.8rem;
    margin-left: 2rem;
    width: 10rem;
    font-size: 1.1rem;
    line-height: 1.4rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    margin: 1rem 2rem;
  }

  #cartaonovo #cartaonovo_inner div h1 {
    margin-top: 2rem;
    width: 80%;
    font-size: 1.2rem;
  }

  #cartaonovo #cartaonovo_inner div ul {
    margin: 0 -0.8rem;
  }

  #cartaonovo #cartaonovo_inner div ul li {
    width: 90%;
    font-size: 0.7rem;
  }

  #cartaonovo #cartaonovo_inner div ul li span {
    top: -0.2rem;
  }

  #cartaonovo #cartaonovo_inner #requisites h1 {
    margin-top: 2rem;
    width: 100%;
  }

  #cartaonovo #cartaonovo_inner #requisites p {
    font-size: 0.7rem;
  }

  #cartaonovo #redbanner {
    padding: 1rem 2rem;
    width: 100%;
    height: auto;
    background-color: var(--red);
  }

  #cartaonovo #redbanner :is(h1, li) {
    color: #fff;
  }

  #cartaonovo #redbanner div div:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  #cartaonovo #redbanner div ul {
    margin: 0;
    padding: 0 1rem;
    padding-bottom: 2rem;
  }

  #cartaonovo #redbanner div div:nth-child(2) h1 {
    margin-top: 2rem;
  }

  #cartaonovo #redbanner li::marker {
    font-size: 0.9rem;
  }

  #cartaonovo #redbanner li {
    margin-top: 0.2rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 400px) and (max-height: 640px) {
  #cartaonovo #cartaonovo_inner #fst_paragraph {
    width: 80%;
  }
}

@media (max-width: 400px) and (max-height: 568px) {
  #cartaonovo #cartao h1 {
    width: 9rem;
    font-size: 1rem;
    line-height: 1.2rem;
  }

  #cartaonovo #cartaonovo_inner {
    height: auto;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph {
    margin: 1rem 2rem;
    width: 80%;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph h1 {
    font-size: 1rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph :is(ul:first-of-type li, p) {
    font-size: 0.7rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph ul:first-of-type {
    margin: 0;
    margin-left: -1rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph ul:first-of-type li {
    font-size: 0.7rem;
  }

  #cartaonovo #cartaonovo_inner #fst_paragraph div h1 {
    width: 80%;
    margin-top: 2rem;
  }
}

/* Contato CSS */
.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.col {
  flex-direction: column;
}

#contato {
  width: 100%;
  height: auto;
  padding: 6rem 18rem;
  background-color: var(--gray);
}

:is(#contato, #trabalheconosco) h1 {
  margin-top: 0;
  font-size: 2.8rem;
}

#contato p {
  width: 60rem;
  margin-top: 1rem;
  line-height: 0.8rem;
}

:is(#contato, #trabalheconosco) form {
  max-width: 80%;
  height: auto;
}

:is(#contato, #trabalheconosco) form .form_input {
  display: flex;
  flex-direction: column;
  width: 48%;
  height: auto;
  margin-top: 2rem;
}

#contato form #m_left {
  margin-left: 4rem;
}

#contato form .form_input label {
  font-weight: 600;
}

#contato form .form_input input {
  width: auto;
  height: 3.4rem;
  margin-top: 0.8rem;
  padding-left: 1rem;
  padding-right: 4rem;
  font-family: montserrat, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #efefef;
}

#contato form .form_input#textarea {
  width: 100%;
}

#contato form .form_input textarea {
  width: 100%;
  height: 18rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  padding-left: 1rem;
  padding-right: 6rem;
  font-family: montserrat, sans-serif;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  background-color: #efefef;
  resize: none;
}

:is(#contato, #trabalheconosco) .contato_button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 16rem;
  height: 4rem;
  margin-top: 0.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background-color: var(--red);
  border: none;
  box-shadow: none;
  border-radius: 0.46rem;
  cursor: pointer;
}

#contato .contato_button:hover {
  background-color: rgba(141, 0, 12, 0.9);
}

#contato .contato_button {
  margin-top: 2rem;
}

#trabalheconosco {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 6rem 18rem;
  color: #fff;
  background-image: url("../img/teste1blue.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#trabalheconosco p {
  width: 60rem;
  margin-top: 0;
  line-height: 0.8rem;
}

#trabalheconosco form label {
  margin-top: 1rem;
  font-weight: 600;
}

#trabalheconosco form .form_input {
  margin-top: 0;
}

#trabalheconosco form input {
  height: 3.4rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 4rem;
  font-family: montserrat, sans-serif;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  background-color: #efefef;
}

#trabalheconosco form .form_select {
  position: relative;
  align-items: center;
  min-width: 46%;
  max-width: 47%;
  margin-top: 1rem;
  margin-bottom: 2rem;
  cursor: pointer;
}

#trabalheconosco form .form_select select {
  appearance: none;
  padding: 0.25em 0.75em;
  margin-top: 1rem;
  width: 100%;
  min-height: 3rem;
  height: 3.4rem;
  font-family: inherit;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #9a9a9a;
  /* outline: none; */
  background-color: #efefef;
}

#trabalheconosco form .form_select select::-ms-expand {
  display: none;
}

#trabalheconosco form .form_select::after {
  position: absolute;
  width: auto;
  height: auto;
  top: 3.2rem;
  left: 29rem;
  content: ">";
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Nanum Gothic", monospace;
  pointer-events: none;
  cursor: pointer;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

#trabalheconosco form p {
  font-weight: 600;
}

#cvTitle {
  margin-bottom: 1.6rem;
}

#file_form_input {
  display: flex;
  flex-direction: column;
  min-width: 100%;
  width: 100%;
}

#trabalheconosco form [type="file"] {
  display: inline-block;
  appearance: none;
  display: none;
  opacity: 0;
}

#trabalheconosco form label#input_file {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 48%;
  width: 47%;
  height: 3.4rem;
  margin-top: -0.4rem;
  margin-bottom: 2.5rem;
  text-align: center;
  color: #fff;
  font-size: 1.26rem;
  border: 2px solid #efefef;
  border-radius: 8px;
  background-color: transparent;
  cursor: pointer;
}

#trabalheconosco form #m_left {
  margin-left: 4rem;
}

#trabalheconosco #help {
  position: relative;
  width: 18rem;
  height: auto;
  top: 4rem;
  left: -31.6rem;
  cursor: pointer;
}

#trabalheconosco #help img {
  width: 2rem;
  height: 2rem;
}

#trabalheconosco #help p {
  margin-top: 0.7rem;
  margin-left: 1rem;
}

#trabalheconosco #help_msg {
  display: flex;
  position: absolute;
  top: 8rem;
  max-width: 18rem;
  max-height: 6rem;
  padding: 1rem;
  text-align: center;
  border-radius: 16px;
  background-color: var(--yellow);
}

#trabalheconosco #help_msg p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
}

/* aiming for 2560px width */
@media (min-width: 2200px) and (max-height: 1440px) {
  #contato {
    padding: 8rem 24.8rem;
  }

  #contato h1 {
    font-size: 3.2rem;
  }

  #contato p {
    width: 80%;
    font-size: 1.4rem;
    line-height: 1.2rem;
  }

  #contato form label {
    font-size: 1.4rem;
  }

  #contato form .form_input input {
    padding-left: 2rem;
    height: 4rem;
    font-size: 1.6rem;
    border-radius: 14px;
  }

  .contato_button {
    width: 28rem;
    height: 5.6rem;
    font-size: 2rem;
    border-radius: 14px;
  }

  #trabalheconosco {
    padding: 8rem 24.8rem;
  }

  #trabalheconosco h1 {
    font-size: 3.2rem;
  }

  #trabalheconosco p {
    font-size: 1.4rem;
    line-height: 1.2rem;
    margin-top: 0;
  }

  #trabalheconosco form label {
    font-size: 1.4rem;
  }

  #trabalheconosco form .form_input {
    display: flex;
    flex-direction: column;
  }

  #trabalheconosco form .form_input input {
    padding-left: 2rem;
    width: 40rem;
    height: 4rem;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    border-radius: 14px;
  }

  #trabalheconosco form .form_select {
    width: 42%;
  }

  #trabalheconosco form .form_select select {
    padding: 0 2rem;
    font-size: 1.6rem;
    width: 99%;
    max-height: 4rem;
    height: 4rem;
    border-radius: 14px;
  }

  #trabalheconosco form .form_select::after {
    top: 4.2rem;
    left: 37rem;
  }

  #cvTitle {
    margin-bottom: 1.4rem;
  }

  #trabalheconosco form label#input_file {
    width: 40rem;
    height: 4rem;
    font-size: 1.6rem;
  }

  #trabalheconosco form #help {
    top: 4.4rem;
    left: -42rem;
    width: 20rem;
  }

  #trabalheconosco form #help img {
    width: 3rem;
    height: 3rem;
  }

  #trabalheconosco form #help p {
    margin-left: 2rem;
    font-size: 1.6rem;
  }

  #trabalheconosco #help_msg {
    max-width: 22rem;
    max-height: 10rem;
    top: 10.4rem;
    left: 2rem;
  }

  #trabalheconosco #help_msg p {
    font-size: 1.2rem;
  }
}

@media (max-width: 1760px) and (max-height: 1080px) {
  #contato,
  #trabalheconosco {
    padding: 6rem 14rem;
  }

  #trabalheconosco #help {
    left: -26rem;
  }
}

@media (max-width: 1440px) and (max-height: 900px) {
  #contato {
    padding: 6rem 13.6rem;
  }

  :is(#contato, #trabalheconosco) .contato_button {
    width: 12rem;
    height: 3rem;
    font-size: 1rem;
  }

  #contato h1,
  #trabalheconosco h1 {
    font-size: 2.4rem;
  }

  :is(#contato, #trabalheconosco) form .form_input input {
    height: 3rem;
  }

  #trabalheconosco {
    padding: 6rem 13.6rem;
  }

  #trabalheconosco form label#input_file {
    width: 46%;
  }

  #trabalheconosco form .form_select select {
    width: 98%;
    height: 3rem;
    font-size: 1.2rem;
  }

  #trabalheconosco form .form_select::after {
    top: 3rem;
    left: 21rem;
  }

  #trabalheconosco #help {
    position: relative;
    margin-left: 0;
    left: -23rem;
  }
}

@media (max-width: 1366px) and (max-height: 768px) {
  #contato {
    padding: 4rem 13rem;
  }

  :is(#contato, #trabalheconosco) .contato_button {
    width: 10rem;
  }

  #contato h1,
  #trabalheconosco h1 {
    font-size: 2rem;
  }

  #contato p,
  #trabalheconosco p {
    font-size: 0.8rem;
    line-height: 0.8rem;
  }

  #contato .form_input,
  #trabalheconosco .form_input {
    display: flex;
    flex-direction: column;
  }

  #contato .form_input label,
  #trabalheconosco .form_input label,
  #cvTitle {
    font-size: 0.7rem;
  }

  #contato form .form_input input,
  #trabalheconosco form .form_input input {
    height: 2.4rem;
    font-size: 1rem;
  }

  #contato form .form_input textarea {
    height: 10rem;
  }

  #trabalheconosco {
    padding: 4rem 13rem;
  }

  #trabalheconosco form .form_select select {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    min-height: 2.4rem;
    height: 2.4rem;
  }

  #trabalheconosco form .form_select::after {
    top: 2.7rem;
    left: 20rem;
  }

  #cvTitle {
    margin-bottom: 0.4rem;
  }

  #trabalheconosco form label#input_file {
    position: relative;
    width: 46%;
    height: 2.4rem;
    margin-top: 0.6rem;
    font-size: 0.8rem;
  }

  #trabalheconosco #help {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    top: 1.7rem;
    left: -21.6rem;
  }

  #trabalheconosco #help img {
    position: relative;
    top: 0.8rem;
    width: 1.5rem;
    height: 1.5rem;
  }

  #trabalheconosco #help p {
    margin-top: 2.4rem;
  }

  #trabalheconosco #help_msg {
    max-width: 12rem;
    max-height: 4.8rem;
    top: 6rem;
    left: 4rem;
  }

  #trabalheconosco #help_msg p {
    font-size: 0.7rem;
  }

  .contato_button {
    width: 14rem;
    height: 3.2rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 1366px) and (max-height: 659px) {
  :is(#contato, #trabalheconosco) {
    padding: 4rem 15.4rem;
  }

  #trabalheconosco form label#input_file {
    padding-top: 0.62rem;
    width: 46%;
    font-size: 0.8rem;
  }

  #trabalheconosco #help {
    left: -20rem;
  }

  #trabalheconosco form #help p {
    margin-top: 2.1rem;
  }
}

@media (max-width: 1366px) and (max-height: 625px) {
  #contato {
    height: 124vh;
    padding: 4rem 13rem;
  }

  #trabalheconosco {
    height: 134vh;
    padding: 4rem 13rem;
  }

  #trabalheconosco form #help {
    left: -22rem;
  }
}

@media (max-width: 1280px) and (max-height: 800px) {
  #contato .contato_button {
    width: 12rem;
    height: 3rem;
    font-size: 1rem;
    margin-top: -1rem;
  }

  #contato {
    height: 88vh;
    padding: 3.6rem 12rem;
  }

  #contato h1 {
    font-size: 1.8rem;
  }

  #contato p {
    width: 68%;
    font-size: 0.7rem;
    line-height: 0.7rem;
  }

  #contato form {
    width: 40rem;
    height: 28rem;
  }

  #contato form .form_input label {
    font-size: 0.8rem;
  }

  :is(#contato, #trabalheconosco) form .form_input input {
    font-size: 0.8rem;
  }

  #contato form .form_input input {
    height: 2.4rem;
    margin-top: 0.6rem;
  }

  #contato form .form_input textarea {
    width: 100%;
    height: 10rem;
  }

  #trabalheconosco {
    height: 98vh;
    padding: 3.6rem 12rem;
  }

  #trabalheconosco h1 {
    font-size: 1.8rem;
  }

  #trabalheconosco p {
    font-size: 0.7rem;
    line-height: 0.7rem;
  }

  #trabalheconosco form {
    width: 40rem;
    height: 28rem;
  }

  #trabalheconosco form .form_input {
    display: flex;
    flex-direction: column;
    width: 49%;
  }

  #trabalheconosco form .form_input label {
    font-size: 0.8rem;
  }

  #trabalheconosco form .form_input input {
    width: 100%;
    height: 2.4rem;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.8rem;
  }

  #trabalheconosco form .form_select {
    margin-bottom: 1rem;
  }

  #trabalheconosco form .form_select select {
    padding: 0.25rem 1rem;
    width: 96%;
    min-height: 2.4rem;
    height: 2.4rem;
    font-size: 0.8rem;
  }

  #trabalheconosco form .form_select::after {
    top: 2.75rem;
    left: 16rem;
  }

  #cvTitle {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  #trabalheconosco form label#input_file {
    width: 45.8%;
    height: 2.6rem;
    font-size: 0.8rem;
  }

  #trabalheconosco form #help {
    top: 2.8rem;
    left: -18rem;
  }

  #trabalheconosco form #help p {
    margin-top: 0.6rem;
    font-size: 0.8rem;
  }

  #trabalheconosco #help_msg {
    max-width: 12rem;
    max-height: 4.8rem;
    top: 7rem;
    left: 0rem;
  }

  #trabalheconosco #help_msg p {
    font-size: 0.6rem;
  }
}

@media (max-width: 1280px) and (max-height: 610px) {
  #contato {
    height: 124vh;
  }

  #contato p,
  #trabalheconosco p {
    line-height: 0.6rem;
  }

  #trabalheconosco {
    height: 120vh;
  }

  #trabalheconosco form {
    height: 36rem;
  }

  #trabalheconosco form .form_select::after {
    left: 14rem;
  }

  #trabalheconosco form label#input_file {
    width: 46%;
  }

  #trabalheconosco form #help {
    top: 2.4rem;
  }

  #trabalheconosco form #help p {
    margin-top: 2rem;
  }

  #trabalheconosco #help_msg {
    left: 4rem;
  }
}

@media (max-width: 1024px) and (max-height: 768px) {
  #contato {
    height: 93vh;
    padding: 4rem 10rem;
  }

  #contato p {
    width: 80%;
  }

  #contato p,
  #trabalheconosco p {
    line-height: 0.6rem;
  }

  #trabalheconosco {
    height: 102vh;
    padding: 4rem 10rem;
  }

  #trabalheconosco form {
    height: 32rem;
  }

  #trabalheconosco form .form_select {
    width: 95%;
  }

  #trabalheconosco form .form_select::after {
    left: 14rem;
  }

  #trabalheconosco form label#input_file {
    width: 46%;
  }

  #trabalheconosco form #help {
    top: 2.6rem;
    left: -15.6rem;
  }

  #trabalheconosco form #help p {
    margin-top: 2rem;
  }

  #trabalheconosco #help_msg {
    left: 4rem;
  }
}

@media (max-width: 1024px) and (max-height: 610px) {
  #contato {
    height: 120vh;
    padding: 3rem 10rem;
  }

  #contato h1,
  #trabalheconosco h1 {
    font-size: 1.6rem;
  }

  #trabalheconosco {
    height: 114vh;
    padding: 3rem 10rem;
  }

  #trabalheconosco form label#input_file {
    width: 90%;
  }

  #trabalheconosco form #help {
    top: 2.4rem;
  }

  #trabalheconosco form #help p {
    margin-top: 2.1rem;
  }
}

@media (orientation: portrait) {
  #contato {
    height: auto;
  }

  #contato :is(p) {
    width: 100%;
    color: #9a9a9a;
  }

  #contato form :is(div) {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  #contato form #m_left {
    margin: 0;
  }

  #contato form .form_input {
    margin: 0;
    padding: 0;
  }

  :is(#contato, #trabalheconosco) .contato_button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }

  #trabalheconosco {
    margin: 0;
    height: auto;
  }

  #atendimento
    #card_container
    .card
    :is(.personal, .shopping)
    #trabalheconosco
    p {
    width: 100%;
  }

  #trabalheconosco form {
    padding: 0;
    margin: 0;
    height: auto;
  }

  #trabalheconosco form div {
    display: flex;
    flex-direction: column;
  }

  #trabalheconosco form .form_select {
    margin-top: 0;
    max-width: 100%;
    width: 100%;
    align-items: flex-start;
  }

  #trabalheconosco form .form_select::after {
    top: 3.5rem;
  }

  #trabalheconosco form .form_select label {
    font-size: 0.8rem;
  }

  #trabalheconosco form .form_select select {
    width: 100%;
  }

  #trabalheconosco form label#input_file {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }

  #trabalheconosco form [type="file"] {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }

  #trabalheconosco form div #m_left {
    margin-left: 0;
  }

  #trabalheconosco form #help {
    flex-direction: row;
  }
}

@media (max-width: 480px) and (max-height: 900px) {
  .contato_button {
    padding-top: 0.76rem;
    width: 8rem;
    height: 2.4rem;
    font-size: 0.8rem;
  }

  :is(#contato, #trabalheconosco) {
    padding: 2rem 2rem;
  }

  #contato .contato_button {
    margin-top: 1rem;
    margin-bottom: 0;
  }

  :is(#contato, #trabalheconosco) :is(h1) {
    font-size: 1.4rem;
  }

  :is(#contato, #trabalheconosco) :is(p) {
    max-width: 90%;
    width: 90%;
    font-size: 0.8rem;
    line-height: 1rem;
  }

  :is(#contato, #trabalheconosco) form {
    padding: 0;
    margin: 0;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  :is(#contato, #trabalheconosco) form .form_input {
    width: 100%;
  }

  :is(#contato, #trabalheconosco) form .form_input :is(label) {
    margin-top: 1rem;
    font-size: 0.8rem;
  }

  .m_top {
    margin-top: 0.6rem !important;
  }

  #contato form .form_input :is(input, textarea),
  #trabalheconosco form div div.form_input input {
    width: 100%;
  }

  #contato form .form_input textarea {
    height: 10rem;
  }

  #contato form .form_input :is(input),
  #trabalheconosco form div div.form_input input {
    height: 2.4rem;
  }

  #trabalheconosco form .form_input {
    margin-bottom: -1.8rem;
  }

  #trabalheconosco form .form_select::after {
    top: 3.7rem;
    left: 23rem;
  }

  #cvTitle {
    margin-bottom: 1.4rem;
    font-size: 0.8rem;
  }

  #trabalheconosco form label#input_file {
    width: 100%;
    height: 2.4rem;
    font-size: 1rem;
  }

  #trabalheconosco form #help {
    position: relative;
    align-items: center;
    padding: 0;
    margin: 0;
    top: 0.2rem;
    left: 16.8rem;
  }

  #trabalheconosco form #help img {
    width: 1.6rem;
    height: 1.6rem;
    margin-top: -0.1rem;
  }

  #trabalheconosco form #help p {
    margin: 0;
    margin-left: 0.8rem;
    font-size: 0.8rem;
  }

  #trabalheconosco form .contato_button {
    margin-top: -2rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 420px) and (max-height: 900px) {
  #contato h1,
  #trabalheconosco h1 {
    font-size: 1.2rem;
    font-weight: 800;
  }

  :is(#contato, #trabalheconosco) :is(p) {
    max-width: 100%;
    width: 100%;
    font-size: 0.8rem;
    line-height: 1rem;
  }

  #contato form,
  #trabalheconosco form {
    height: auto;
  }

  #contato form {
    margin-top: 1rem;
  }

  #contato form .form_input label,
  #trabalheconosco form .form_input label {
    font-size: 0.8rem;
  }

  #contato form .form_input label {
    margin-top: 0;
  }

  #contato form .form_input input {
    margin-bottom: 1rem;
    height: 2.4rem;
  }

  #contato form .form_input textarea {
    height: 20vh;
  }

  .contato_button {
    margin-top: 2rem;
    margin-bottom: 1rem;
    width: 10rem;
    height: 2.6rem;
    font-size: 1rem;
  }

  #trabalheconosco form {
    margin-top: -1.4rem;
  }

  #trabalheconosco form .form_input {
    margin-bottom: -1.8rem;
    width: 100%;
    height: auto;
  }

  #trabalheconosco form .form_input input {
    width: 100%;
    height: 2.4rem;
  }

  #cvTitle {
    font-size: 0.8rem;
  }

  #trabalheconosco p {
    margin-bottom: 2rem;
  }

  #trabalheconosco form label#input_file {
    width: 100%;
    height: 2.4rem;
    font-size: 0.8rem;
  }

  #trabalheconosco form #help {
    left: 13.8rem;
  }

  #trabalheconosco form #help img {
    width: 1.1rem;
    height: 1.1rem;
  }

  #trabalheconosco form #help p {
    font-size: 0.7rem;
  }

  #trabalheconosco .contato_button {
    margin: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 420px) and (max-height: 840px) {
  #trabalheconosco p {
    margin-bottom: 2rem;
  }

  #trabalheconosco form label#input_file {
    height: 2.4rem;
    font-size: 1rem;
  }
}

@media (max-width: 420px) and (max-height: 740px) {
  #trabalheconosco form .form_input input {
    margin-bottom: 2.4rem;
  }

  #trabalheconosco form .form_select::after {
    top: 3.5rem;
    left: 19rem;
  }

  #trabalheconosco form #cvTitle {
    margin-bottom: 0rem;
  }

  #trabalheconosco form #help {
    left: 13rem;
  }

  #trabalheconosco form #help img {
    margin-top: -1.4rem;
  }
}

@media (max-width: 400px) and (max-height: 820px) {
  :is(#contato, #trabalheconosco) .contato_button {
    width: 8rem;
    height: 2.4rem;
    font-size: 0.8rem;
  }

  #trabalheconosco form .form_select::after {
    top: 3.7rem;
    left: 18.4rem;
  }

  #cvTitle {
    margin-top: 2rem;
  }

  #trabalheconosco p {
    margin-bottom: 2rem;
  }

  #trabalheconosco form label#input_file {
    height: 2.4rem;
    font-size: 0.8rem;
  }

  #trabalheconosco form #help {
    top: -0.4rem;
    left: 11.6rem;
  }
}

@media (max-width: 400px) and (max-height: 740px) {
  #trabalheconosco form .form_select::after {
    left: 16rem;
  }

  #trabalheconosco form #help {
    left: 9.4rem;
  }

  #trabalheconosco form #help img {
    margin-top: -1.6rem;
  }
}

@media (max-width: 400px) and (max-height: 670px) {
  .contato_button {
    padding-top: 0.5rem;
    width: 8rem;
    height: 2rem;
    font-size: 0.8rem;
  }

  #trabalheconosco form .form_select::after {
    left: 16.4rem;
  }

  #trabalheconosco form #help img {
    margin-top: -1.6rem;
  }
}

@media (max-width: 400px) and (max-height: 640px) {
  #trabalheconosco form .form_select::after {
    left: 16.4rem;
  }

  #trabalheconosco form #help {
    left: 9rem;
  }

  #trabalheconosco form #help img {
    margin-top: -1.6rem;
  }
}

@media (max-width: 400px) and (max-height: 568px) {
  :is(#contato, #trabalheconosco) p {
    font-size: 0.8rem;
    line-height: 1rem;
  }

  :is(#contato, #trabalheconosco) form {
    padding: 0;
    margin: 0;
    max-width: 100%;
    width: 100%;
  }

  :is(#contato, #trabalheconosco) form .form_input {
    width: 100%;
  }

  #contato .contato_button {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  :is(#contato, #trabalheconosco) form .form_input :is(input, textarea) {
    width: 100%;
  }

  #trabalheconosco {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  #trabalheconosco form label#input_file {
    width: 100%;
  }

  #trabalheconosco form #help {
    left: 9rem;
  }

  #trabalheconosco form #help img {
    margin-top: -1.6rem;
  }

  #trabalheconosco form #help p {
    font-size: 0.6rem;
  }
}

/* Cookies CSS */
#cookies_container {
  display: flex;
  position: fixed;
  top: 100vh;
  left: 0;
  width: 100%;
  height: 9rem;
  padding-left: 8rem;
  background-color: var(--yellow);
  z-index: 999;
}

#cookies_container div {
  display: flex;
  flex-direction: row;
}

#cookies_container div p {
  margin: 0.5rem 0;
  width: 50%;
  justify-self: center;
  align-self: center;
  text-align: left;
  font-size: 1rem;
  line-height: 1.4rem;
  font-family: Montserrat, sans-serif;
}

#cookies_container div p a {
  color: blue;
  font-weight: 600;
}

#cookies_container div button {
  width: 10%;
  height: 100%;
  justify-self: flex-end;
  align-self: flex-end;
  margin-left: auto;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  text-align: center;
  border: none;
  cursor: pointer;
  background-color: var(--blue);
  z-index: 999;
}

#cookies_container div button:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.slide_top {
  -webkit-animation: slide_top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide_top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide_top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes slide_top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@media (min-width: 2200px) and (max-height: 1440px) {
  #cookies_container {
    top: 100vh;
    height: 10vh;
  }

  #cookies_container div p {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }

  #cookies_container div button {
    font-size: 1.6rem;
  }
}

@media (min-width: 2200px) and (max-height: 1080px) {
  #cookies_container {
    top: 100vh;
    height: 14vh;
  }
}

@media (max-width: 1920px) and (max-height: 940px) {
  #cookies_container {
    top: 92vh;
    height: 8vh;
  }
}

@media (max-width: 1440px) {
  #cookies_container {
    top: 100vh;
    height: 8rem;
  }

  #cookies_container div p {
    width: 68%;
    font-size: 1rem;
  }
}

@media (max-width: 1366px) {
  #cookies_container div p {
    width: 60%;
    font-size: 1rem;
  }
}

@media (max-width: 1280px) {
  #cookies_container {
    height: 14vh;
  }

  #cookies_container div p {
    font-size: 0.9rem;
    line-height: 1.2rem;
  }
}

@media (max-width: 1280px) and (max-height: 610px) {
  #cookies_container div p {
    font-size: 0.7rem;
    line-height: 1rem;
  }
}

@media (max-width: 1024px) {
  #cookies_container div p {
    width: 70%;
    font-size: 0.7rem;
  }

  #cookies_container div button {
    width: 14%;
    font-size: 0.8rem;
  }
}

@media (orientation: portrait) {
  #cookies_container {
    height: 30vh;
    top: 100vh;
    margin: 0;
    padding: 3.6rem 2rem;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  #cookies_container div {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  #cookies_container div p {
    margin-right: auto;
    padding: 0;
    width: 100%;
    text-align: left;
    font-size: 2.2rem;
    line-height: 2.6rem;
    font-weight: 500;
  }

  #cookies_container div button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    margin-left: 0;
    margin-right: auto;
    width: 22rem;
    height: 5rem;
    font-size: 1.8rem;
    box-shadow: 0 2pt 1pt rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 480px) and (max-height: 900px) {
  #cookies_container div p {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }

  #cookies_container button {
    width: 8rem;
    height: 2.4rem;
  }
}

@media (max-width: 420px) and (max-height: 900px) {
  #cookies_container div p {
    font-size: 1.4;
    line-height: 1.6rem;
  }

  #cookies_container div button {
    width: 8rem;
    height: 2.4rem;
  }
}

@media (max-width: 420px) and (max-height: 740px) {
  #cookies_container div p {
    font-size: 1rem;
    line-height: 1.4rem;
  }
}

@media (max-width: 400px) and (max-height: 820px) {
  #cookies_container div p {
    font-size: 0.8rem;
    line-height: 1.2rem;
  }
}

@media (max-width: 400px) and (max-height: 740px) {
  #cookies_container div p {
    font-size: 0.7rem;
    line-height: 0.9rem;
  }
}

@media (max-width: 400px) and (max-height: 667px) {
  #cookies_container div p {
    font-size: 0.8rem;
    line-height: 1rem;
  }
}

@media (max-width: 400px) and (max-height: 568px) {
  #cookies_container div p {
    font-size: 1rem;
    line-height: 0.8rem;
  }

  #cookies_container button {
    width: 6rem;
    height: 2rem;
  }
}

/* Footer CSS */
#footer {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  height: auto;
}

#footer #footer_top {
  display: flex;
  justify-content: space-between;
  padding: 2rem 17rem;
  width: 100%;
  height: 24rem;
  background-color: var(--blue);
}

#footer #logo {
  display: block;
  position: relative;
  align-self: center;
  top: -4rem;
  left: 1rem;
  min-width: 10%;
  max-width: 20%;
  width: auto;
  max-height: 25%;
  height: auto;
}

#footer #logo img {
  display: block;
  min-width: 100%;
  height: auto;
  object-fit: cover;
}

#footer #footer_nav {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-evenly;
  align-self: center;
  margin: 2rem;
  top: -1rem;
  min-width: 50%;
  max-width: 50%;
  min-height: 60%;
  max-height: 70%;
  height: auto;
  color: #fff;
}

#footer #footer_nav .col {
  display: flex;
  padding-left: 3rem;
  min-width: 33.3%;
  min-height: 80%;
  max-height: 90%;
  border-right: 1px solid rgba(69, 69, 69, 0.4);
}

#footer #footer_nav .col:nth-child(2) {
  padding-left: 3.8rem;
}

#footer #footer_nav .col:last-child {
  border: 0;
}

#footer #footer_nav h3 {
  margin-top: 0;
  padding: 0;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  font-size: 1rem;
  text-align: left;
}

#footer #footer_nav .col .footer_links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  width: 100%;
  min-height: 50%;
  max-height: 70%;
  height: auto;
}

#footer #footer_nav .col .footer_links a {
  min-width: auto;
  width: 70%;
  max-width: 90%;
  color: #fff;
  font-size: 0.8rem;
  text-decoration: none;
  text-align: left;
}

#footer #pagamento {
  display: flex;
  flex-direction: column;
  margin-top: -4rem;
  min-width: 30%;
  max-width: 30%;
  width: 30%;
  min-height: 100%;
  max-height: 120%;
  height: auto;
}

#footer #newsletter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  width: 100%;
  min-height: 64%;
  max-height: 80%;
  height: auto;
  border-radius: 12px;
  background-color: var(--yellow);
  z-index: 9;
}

#footer #newsletter div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto;
  width: 80%;
  height: 58%;
}

#footer #newsletter a {
  text-decoration: none;
}

#footer #newsletter h4 {
  padding: 0;
  margin: 0;
  font-weight: 600;
  font-size: 1.4rem;
  color: #000;
}

.footer_button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 40%;
  max-height: 50%;
  height: auto;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--red);
  border-radius: 0.46rem;
  cursor: pointer;
}

.footer_button:hover {
  background-color: rgba(141, 0, 12, 0.9);
}

#footer #formas_pagamento img {
  width: 100%;
}

#footer #formas_pagamento {
  width: 100%;
  margin-top: 1rem;
  color: #fff;
}

#footer #social {
  display: inline-flex;
  flex-direction: row;
  justify-self: center;
  align-content: center;
  padding-left: 18rem;
  width: 100vw;
  height: 5rem;
  color: #fff;
  background-color: #1a4f90;
}

#footer #social #social_icons {
  display: flex;
  flex-direction: row;
  justify-self: center;
  align-items: center;
  justify-content: space-between;
  width: 28rem;
}

#footer #social #social_icons h4 {
  font-size: 1rem;
}

#footer #social #social_icons #icons {
  display: flex;
  width: auto;
  height: auto;
}

#footer #social #social_icons #icons a {
  align-self: center;
  margin-left: 2rem;
  min-width: 1rem;
  max-width: 1.5rem;
  min-height: 1rem;
  max-height: 1.5rem;
  font-size: 0.8rem;
  cursor: pointer;
}

#footer #social #social_icons a:first-child {
  width: 0.5rem;
}

#footer #social #social_icons a:nth-child(2) {
  position: relative;
  top: 0.2rem;
}

#footer #social #social_icons a:nth-child(3) {
  position: relative;
  top: 0.3rem;
  left: 0.4rem;
}

#footer #social #social_icons a:last-child {
  position: relative;
  top: 0.2rem;
}

#footer #social #social_icons a img {
  width: 100%;
  height: auto;
}

#footer #copyright {
  display: flex;
  flex-direction: row;
  align-self: center;
  align-items: center;
  justify-content: space-between;
  width: 71%;
  height: 4rem;
  color: #110d0d;
}

#footer #copyright h4 {
  width: 20rem;
  height: auto;
  font-size: 0.7rem;
  font-weight: 400;
  color: #9a9a9a;
}

#footer #copyright img {
  max-width: 7rem;
  height: auto;
  margin-left: auto;
  margin-right: 0;
}

@media (min-width: 2300px) and (max-height: 1440px) {
  #footer #footer_nav .col:nth-child(2) {
    padding-left: 3rem;
  }
}

/* Aiming to 2560px width */
@media (min-width: 2200px) and (max-height: 1440px) {
  #footer #footer_top {
    padding: 0 24rem;
    height: 32rem;
  }

  #footer #logo {
    margin-top: 1.2rem;
  }

  #footer #footer_nav {
    top: 0;
    min-height: 50%;
    max-height: 60%;
  }

  #footer #footer_nav .col h3 {
    font-size: 1.6rem;
  }

  #footer #footer_nav .col .footer_links a {
    font-size: 1.2rem;
  }

  #footer #pagamento {
    margin-top: -2rem;
  }

  #footer #newsletter {
    min-height: 56%;
    max-height: 60%;
  }

  #footer #newsletter h4 {
    font-size: 1.8rem;
  }

  #footer #newsletter .footer_button {
    font-size: 1.8rem;
    border-radius: 16px;
  }

  #footer #formas_pagamento h4 {
    font-size: 1.2rem;
  }

  #footer #social #social_icons {
    width: 33rem;
  }

  #footer #social #social_icons h4 {
    margin-left: 6rem;
  }

  #footer #copyright {
    width: 69%;
  }
}

@media (min-width: 2200px) and (max-height: 1439px) {
  #footer #footer_top {
    padding: 0 20rem;
  }

  #footer #social {
    padding-left: 15rem;
  }

  #footer #copyright {
    padding-left: 19rem;
    padding-right: 20rem;
  }
}

@media (min-width: 2200px) and (max-height: 1280px) {
  #footer #footer_nav .col h3 {
    font-size: 1.4rem;
  }

  #footer #footer_nav .col .footer_links a {
    font-size: 1.2rem;
  }

  #footer #social {
    padding-left: 18rem;
  }

  #footer #social #social_icons h4 {
    font-size: 1.2rem;
  }

  #footer #copyright {
    padding-left: 22em;
    padding-right: 23rem;
  }

  #footer #copyright h4 {
    font-size: 1rem;
  }
}

@media (max-width: 1800px) and (max-height: 1080px) {
  #footer #footer_nav .col:nth-child(2) {
    padding-left: 2.8rem;
  }
}

@media (max-width: 1600px) and (max-height: 1080px) {
  #footer #footer_top {
    padding: 2rem 12rem;
  }

  #footer #social {
    padding-left: 13rem;
  }
}

@media (max-width: 1440px) and (max-height: 1080px) {
  #footer #footer_top {
    padding: 2rem 13rem;
    height: 17rem;
  }

  #footer #logo {
    top: -2.6rem;
    max-width: 10%;
  }

  #footer #logo img {
    min-width: 60%;
    width: 100%;
  }

  #footer #footer_nav {
    top: -0.8rem;
  }

  #footer #footer_nav .col {
    padding-left: 1.5rem;
  }

  #footer #footer_nav .col:nth-child(2) {
    padding-left: 2.8rem;
  }

  #footer #footer_nav .col h3 {
    font-size: 0.8rem;
  }

  #footer #footer_nav .col .footer_links a {
    font-size: 0.6rem;
  }

  #footer #newsletter {
    min-height: 68%;
    border-radius: 10px;
  }

  #footer #newsletter h4 {
    font-size: 1rem;
  }

  #footer #newsletter .footer_button {
    font-size: 1rem;
  }

  #footer #formas_pagamento h4 {
    font-size: 0.6rem;
  }

  #footer #social {
    padding-left: 14rem;
    height: 4rem;
  }

  #footer #social #social_icons {
    position: relative;
    left: -1rem;
    width: 26rem;
  }

  #footer #social #social_icons h4 {
    font-size: 0.6rem;
  }

  #footer #social #social_icons #icons a {
    max-width: 1rem;
    max-height: 1rem;
  }

  #footer #social #social_icons #icons a:first-child {
    min-width: 0.5rem;
    min-height: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
  }

  #footer #social #social_icons #icons a:nth-child(3) {
    top: 0.4rem;
  }

  #footer #copyright {
    margin-left: 1rem;
    width: 71%;
    font-size: 0.8rem;
    height: 2rem;
  }

  #footer #copyright h4 {
    font-size: 0.4rem;
  }

  #footer #copyright img {
    height: 1.6rem;
  }
}

@media (max-width: 1366px) and (max-height: 770px) {
  #footer #footer_top {
    padding: 2rem 12.8rem;
    height: 16rem;
  }

  #footer #logo {
    position: relative;
    margin-top: -0.4rem;
    left: -0.4rem;
  }

  #footer #footer_nav {
    min-height: 70%;
    max-height: 90%;
  }

  #footer #footer_nav .col {
    min-height: 90%;
    max-height: 100%;
  }

  #footer #footer_nav .col:nth-child(2) {
    padding-left: 2.3rem;
  }

  #footer #footer_nav .col h3 {
    font-size: 0.8rem;
  }

  #footer #footer_nav .col .footer_links {
    min-height: 54%;
  }

  #footer #footer_nav .col .footer_links a {
    font-size: 0.6rem;
  }

  #footer #pagamento {
    width: 24%;
    margin-right: 0rem;
  }

  #footer #newsletter {
    height: 52%;
  }

  #footer #newsletter h4 {
    font-weight: 500;
  }

  #footer #social #social_icons #icons {
    position: relative;
    left: -6rem;
  }

  #footer #social #social_icons #icons a:last-child {
    top: 0.24rem;
    left: 0;
  }

  #footer #copyright h4 {
    font-size: 0.6rem;
  }
}

@media (max-width: 1366px) and (max-height: 625px) {
  #footer #social #social_icons {
    width: 24.4rem;
  }

  #footer #social #social_icons #icons {
    margin-left: 1.4rem;
  }
}

@media (max-width: 1280px) and (max-height: 800px) {
  #footer #footer_top {
    padding: 2rem 12rem;
    height: 16rem;
  }

  #footer #logo {
    top: -2rem;
    left: 0;
  }

  #footer #footer_nav {
    top: 0rem;
    min-height: 70%;
    max-height: 80%;
  }

  #footer #footer_nav .col h3 {
    font-size: 0.8rem;
  }

  #footer #footer_nav .col:nth-child(2) {
    padding-left: 1.8rem;
  }

  #footer #footer_nav .col .footer_links a {
    font-size: 0.6rem;
  }

  #footer #pagamento {
    width: 24%;
  }

  #footer #newsletter {
    margin-right: 0rem;
    height: 60%;
  }

  #footer #newsletter h4 {
    font-size: 1rem;
  }

  #footer #newsletter .footer_button {
    font-size: 1rem;
  }

  #footer #formas_pagamento h4 {
    font-size: 0.6rem;
  }

  #footer #social {
    padding-left: 12rem;
  }

  #footer #social #social_icons {
    left: 0;
    width: 27rem;
  }

  #footer #social #social_icons h4 {
    font-size: 0.7rem;
  }

  #footer #social #social_icons #icons {
    position: relative;
    margin: 0;
    left: -5.4rem;
  }

  #footer #social #social_icons #footer #social #social_icons h4 {
    font-size: 0.8rem;
  }

  #footer #social #social_icons a:first-of-type {
    width: 0.6rem;
    height: auto;
  }

  #footer #social #social_icons a {
    width: 0.9rem;
    height: auto;
  }

  #footer #social #social_icons a:last-child {
    left: 0;
  }

  #footer #social #social_icons a img {
    width: 100%;
    height: auto;
  }

  #footer #copyright {
    font-size: 0.6rem;
  }
}

@media (max-width: 1280px) and (max-height: 610px) {
  #footer #social #social_icons {
    width: 24rem;
  }
}

@media (max-width: 1180px) and (max-height: 900px) {
  #footer #footer_nav .col:nth-child(2) {
    padding-left: 1rem;
  }
}

@media (max-width: 1024px) and (max-height: 768px) {
  #footer #footer_top {
    padding: 1rem 9rem;
    height: 14rem;
  }

  #footer #logo {
    left: 0.6rem;
  }

  #footer #footer_nav {
    top: -0.6rem;
    min-height: 60%;
    max-height: 70%;
  }

  #footer #footer_nav .col:nth-child(2) {
    padding-left: 1.6rem;
  }

  #footer #footer_nav .col h3 {
    font-size: 0.6rem;
  }

  #footer #footer_nav .col .footer_links a {
    font-size: 0.5rem;
  }

  #footer #pagamento {
    margin-top: -2rem;
  }

  #footer #newsletter {
    min-height: 46%;
    max-height: 56%;
  }

  #footer #newsletter h4 {
    font-size: 0.8rem;
  }

  #footer #newsletter .footer_button {
    font-size: 0.8rem;
  }

  #footer #formas_pagamento h4 {
    font-size: 0.5rem;
  }

  #footer #social {
    padding-left: 9.6rem;
    height: 2.2rem;
  }

  #footer #social #social_icons {
    width: 17rem;
  }

  #footer #social #social_icons #icons {
    left: 0;
    margin-top: -0.4rem;
    margin-left: 0.4rem;
  }

  #footer #social #social_icons #icons a {
    margin-left: 1.2rem;
  }

  #footer #social #social_icons h4 {
    font-size: 0.6rem;
  }

  #footer #copyright {
    width: 72%;
    height: 2rem;
  }

  #footer #copyright h4 {
    font-size: 0.4rem;
  }

  #footer #copyright img {
    min-width: 2rem;
    max-width: 4rem;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1024px) and (max-height: 610px) {
  #footer #newsletter .footer_button {
    font-size: 0.6rem;
  }

  #footer #social #social_icons #icons {
    margin-left: 2.4rem;
  }

  #footer #social #social_icons a:first-of-type {
    margin-left: 4rem;
  }

  #footer #copyright {
    padding-left: 8.6rem;
    padding-right: 10rem;
  }
}

@media (orientation: portrait) {
  #footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    max-height: 60vh;
    margin: 0;
    padding: 0;
    background-color: var(--blue);
  }

  #footer #newsletter {
    display: flex;
    margin-top: 1rem;
    padding: 0;
    width: 86%;
    min-height: 6rem;
    max-height: 10rem;
    height: auto;
    border-radius: 8px;
  }

  #footer #newsletter div {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-self: center;
    align-items: center;
    width: 76%;
    height: 80%;
  }

  #footer #newsletter h4 {
    text-align: center;
    margin-top: 0.2rem;
    width: 110%;
    font-size: 0.8rem;
    color: #000;
    font-weight: 500;
  }

  #footer #newsletter .footer_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.6rem;
    width: 100%;
    min-height: 2.4rem;
    max-height: 6rem;
    height: auto;
    border-radius: 8px;
    font-size: 0.8rem;
  }

  #footer #footer_nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    top: 0;
    left: 0;
    margin: 2rem auto;
    padding: 0;
    min-width: 100%;
    width: auto;
    min-height: 100%;
    max-height: 100%;
    height: auto;
  }

  #footer #footer_nav .col {
    text-align: left;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    min-width: 33%;
    max-width: 33%;
    width: 33%;
    height: auto;
  }

  #footer #footer_nav .col:nth-child(2) {
    padding: 0;
    margin: 0;
  }

  #footer #footer_nav .col:nth-child(3) {
    margin-left: 0.8rem;
    min-width: 20%;
    max-width: 29%;
  }

  #footer #footer_nav .col #footer_links {
    padding: 0;
    margin: 0;
  }

  #footer #footer_nav h3 {
    font-size: 0.7rem;
    font-weight: 600;
    margin: 0;
  }

  #footer #footer_nav a:first-of-type {
    margin-top: 0.8rem;
  }

  #footer #footer_nav #footer_links {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  #footer #footer_nav #footer_links div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    margin-top: -0.4rem;
    min-width: 100%;
    min-height: 6rem;
    max-height: 10rem;
    padding-bottom: 1rem;
  }

  #footer #footer_nav a {
    font-size: 0.6rem;
    color: #fff;
    text-decoration: none;
  }

  #footer #formas_pagamento {
    margin-top: -1rem;
    margin-bottom: 1rem;
    padding: 0;
    width: 90%;
  }

  #footer #formas_pagamento h4 {
    font-size: 0.6rem;
  }

  #footer #social {
    display: inline-flex;
    margin: 0;
    padding: 0;
    padding: 0 6%;
    width: 100%;
    height: 3rem;
  }

  #footer #social #social_icons {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  #footer #social #social_icons #icons {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: 0;
    width: auto;
    height: auto;
  }

  #footer #social #social_icons h4 {
    padding: 0;
    margin: 0;
    margin-right: auto;
    font-size: 0.5rem;
  }

  #footer #social #social_icons div a:first-of-type {
    margin-left: 0;
    width: 0.5rem;
    height: auto;
  }

  #footer #social #social_icons div a:last-of-type {
    top: 0.14rem;
    left: 0;
    margin-top: 0;
  }

  #footer #social #social_icons div a {
    padding: 0;
    width: 0.8rem;
    height: 0.8rem;
  }

  #footer #social #social_icons div a img {
    width: 100%;
    height: auto;
  }

  #footer #copyright {
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    padding: 0 6%;
    width: 100%;
    height: 2rem;
    background-color: #fff;
  }

  #footer #copyright h4 {
    font-size: 0.4rem;
    font-weight: 500;
  }

  #footer #copyright img {
    width: 2rem;
    height: auto;
  }
}

@media (max-width: 480px) and (max-height: 860px) {
  #footer #newsletter h4,
  #footer #newsletter .footer_button {
    font-size: 1rem;
  }

  #footer #formas_pagamento h4 {
    font-size: 0.8rem;
  }

  #footer #social #social_icons h4 {
    font-size: 0.8rem;
  }

  #footer #social #social_icons div a:first-of-type {
    width: 0.6rem;
  }

  #footer #social #social_icons div a {
    width: 1rem;
  }

  #footer #copyright h4 {
    margin: 0;
    padding: 0;
    font-size: 0.6rem;
  }

  #footer #copyright img {
    width: 3rem;
  }
}

@media (max-width: 420px) and (max-height: 900px) {
  #footer #newsletter h4,
  #footer #newsletter .footer_button {
    font-size: 0.9rem;
  }

  #footer #newsletter .footer_button {
    font-size: 0.8rem;
  }

  #footer #copyright h4 {
    margin: 0;
    padding: 0;
    font-size: 0.4rem;
  }
}

@media (max-width: 420px) and (max-height: 840px) {
  #footer #newsletter .footer_button {
    font-size: 0.8rem;
  }
}

@media (max-width: 420px) and (max-height: 740px) {
  #footer #copyright img {
    margin-right: 0;
  }
}

@media (max-width: 400px) and (max-height: 820px) {
  #footer #newsletter .footer_button {
    font-size: 0.8rem;
  }

  #footer #copyright h4 {
    font-size: 0.4rem;
  }
}

@media (max-width: 400px) and (max-height: 740px) {
  #footer #copyright h4 {
    font-size: 0.4rem;
  }
}

@media (max-width: 400px) and (max-height: 670px) {
  #footer #newsletter h4 {
    font-size: 0.8rem;
  }

  #footer #copyright h4 {
    font-size: 0.4rem;
  }

  #footer #copyright img {
    margin-right: 0;
  }

  #footer #footer_nav .col h3 {
    font-size: 0.6rem;
  }

  #footer #footer_nav .col a {
    font-size: 0.5rem;
  }

  #footer #formas_pagamento h4 {
    font-size: 0.6rem;
  }

  #footer #social #social_icons h4 {
    font-size: 0.6rem;
  }
}

@media (max-width: 400px) and (max-height: 568px) {
  #footer #newsletter h4 {
    font-size: 0.8rem;
  }

  #footer #formas_pagamento h4 {
    font-size: 0.6rem;
  }

  #footer #social #social_icons h4 {
    font-size: 0.5rem;
  }

  #footer #copyright h4 {
    font-size: 0.4rem;
  }
}

/* Header CSS */
#bold {
  font-weight: 700;
}

#header {
  display: inline-grid;
  grid-template-rows: 100%;
  grid-template-columns: 26% 45% 29%;
  width: 100%;
  height: 8vh;
  padding: 0;
  overflow: hidden;
  border: none;
  z-index: 50;
}

#header #logo {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  grid-column-start: 1;
  background-color: #fff;
}

#header #logo a {
  display: flex;
  position: relative;
  justify-self: right;
  left: -5.5rem;
  width: 25%;
  min-height: 80%;
  max-height: 90%;
  cursor: pointer;
}

#header #logo a img {
  display: block;
  position: relative;
  margin: auto;
  width: 80%;
  height: 80%;
  object-fit: cover;
}

#header #menu {
  display: inline-block;
  grid-column-start: 2;
  background-color: var(--blue);
  text-align: center;
}

#header #menu nav {
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  min-width: 100%;
  min-height: 100%;
  font-size: 1rem;
  font-weight: 600;
}

#header #menu nav a {
  display: block;
  margin: auto;
  margin-right: 1rem;
  width: 20%;
  min-height: 100%;
  background: var(--blue);
  text-decoration: none;
  color: #fff;
}

#header #menu nav a:last-child {
  margin-right: 0;
}

#header #menu nav a:hover,
#header #menu nav a:active {
  color: rgba(0, 0, 0, 0.2);
}

#header nav a.active {
  color: rgba(0, 0, 0, 0.4) !important;
}

#header #location {
  display: flex;
  grid-column-start: 3;
  justify-content: center;
  background-color: var(--yellow);
}

#header #location div {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: auto;
  min-width: 60%;
  max-height: 60%;
  text-align: left;
}

#header #location img {
  margin-right: 1rem;
  width: 6.6%;
  height: auto;
}

#header #location p {
  font-size: 0.9rem;
  font-weight: 500;
}

@media (min-width: 2200px) and (max-height: 1440px) {
  #header {
    height: 8vh;
  }

  #header #logo a {
    left: -7rem;
  }

  #header #menu nav {
    padding: 0 2rem;
  }

  #header #menu nav a {
    font-size: 1.2rem;
  }

  #header #location div p {
    font-size: 1.1rem;
  }
}

@media (min-width: 2200px) and (max-height: 1080px) {
  #header {
    height: 10vh;
  }

  #header #location div p {
    font-size: 1.2rem;
  }
}

@media (max-width: 1440px) and (max-height: 900px) {
  #header #logo a {
    left: -4rem;
  }

  #header #menu nav a {
    font-size: 0.8rem;
  }

  #header #location p {
    font-size: 0.7rem;
  }
}

@media (max-width: 1440px) and (max-height: 790px) {
  #header #menu nav a {
    font-size: 0.7rem;
  }

  #header #location div p {
    font-size: 0.6rem;
  }
}

@media (max-width: 1366px) and (max-height: 770px) {
  #header {
    height: 10vh;
  }

  #header #logo a {
    left: -3.8rem;
  }

  #header #menu nav a {
    font-size: 0.6rem;
  }

  #header #location p {
    font-size: 0.6rem;
  }
}

@media (max-width: 1366px) and (max-height: 660px) {
  #header #menu nav a {
    font-size: 0.7rem;
  }

  #header #location div p {
    font-size: 0.6rem;
  }
}

@media (max-width: 1366px) and (max-height: 630px) {
  #header #menu nav a {
    font-size: 0.6rem;
  }
}

@media (max-width: 1280px) and (max-height: 800px) {
  #header #logo a {
    left: -3.6rem;
  }

  #header #menu nav a {
    font-size: 0.7rem;
  }

  #header #location div p {
    font-size: 0.6rem;
  }
}

@media (max-width: 1280px) and (max-height: 610px) {
  #header #logo a {
    left: -3.6rem;
  }

  #header #menu nav a {
    font-size: 0.6rem;
  }
}

@media (max-width: 1024px) and (max-height: 768px) {
  #header {
    height: 6vh;
  }

  #header #logo a {
    left: -2.8rem;
  }

  #header #menu nav a {
    font-size: 0.5rem;
  }

  #header #location div p {
    font-size: 0.6rem;
  }
}

@media (max-width: 1024px) and (max-height: 610px) {
  #header {
    height: 8vh;
  }

  #header #logo a {
    left: -4.2rem;
  }

  #header #menu nav a {
    font-size: 0.6rem;
  }

  #header #location div p {
    font-size: 0.6rem;
  }
}

@media (orientation: portrait) {
  #header {
    grid-template-columns: 34% 50% 16%;
  }

  #header #logo {
    display: inline-flex;
    grid-column-start: 1;
    align-items: center;
    justify-content: center;
  }

  #header #logo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    margin: auto;
    padding: 0;
    top: 0;
    left: 0;
    max-width: 100%;
    width: auto;
    min-width: 100%;
    height: 100%;
  }

  #header #logo a img {
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 50%;
    height: auto;
    object-fit: cover;
  }

  #header #location {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    grid-column-start: 2;
    padding: 0 0.4rem;
    min-height: 100%;
  }

  #header #location div {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  #header #burger_menu {
    display: flex;
    grid-column-start: 3;
    background-color: var(--blue);
    align-items: center;
    justify-content: center;
  }

  #header #burger_menu div {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-self: center;
    cursor: pointer;
  }

  #header #burger_menu span:first-child {
    margin-top: 0;
  }

  #header #burger_menu span {
    width: 16px;
    height: 2px;
    margin-top: 4px;
    border-radius: 8px;
    background: #fff;
  }

  #header #burger_menu #black_layer {
    position: fixed;
    top: 8.4vh;
    left: 0;
    width: 0;
    height: 91.6vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }

  #header #burger_menu_pane {
    display: flex;
    position: absolute;
    justify-self: right;
    align-self: right;
    top: 0;
    left: 100vw;
    width: 66%;
    height: 62vh;
    background-color: var(--blue);
    /* border-radius: 0 0 0 20px; */
    z-index: 999;
  }

  .slide_left {
    -webkit-animation: slide_left 0.5s ease-in both;
    animation: slide_left 0.5s ease-in both;
  }

  @-webkit-keyframes slide_left {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }

  @keyframes slide_left {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }

  #header #burger_menu_links {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    z-index: 999;
  }

  #header #burger_menu_links nav {
    list-style: none;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    z-index: 999;
  }

  #header #burger_menu_links a {
    display: block;
    width: 100%;
    padding: 1.6rem;
    box-sizing: border-box;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(69, 69, 69, 0.4);
    cursor: pointer;
  }

  #header #burger_menu_links li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 480px) and (max-height: 860px) {
  #header #location {
    margin-top: -4.3rem;
  }

  #header #location div img {
    width: 1rem;
    height: 1.4rem;
  }

  #header #location div p {
    font-size: 0.6rem;
  }

  #header #burger_menu #black_layer {
    top: 7.8vh;
    height: 100vh;
  }

  #header #burger_menu #burger_menu_pane {
    height: 41vh;
  }
}

@media (max-width: 420px) and (max-height: 900px) {
  #header #location {
    margin-top: -4.5rem;
  }

  #header #location img {
    width: 1rem;
    height: 1.4rem;
  }

  #header #location p {
    font-size: 0.5rem;
  }

  #header #burger_menu #black_layer {
    top: 7.9vh;
  }

  #header #burger_menu #burger_menu_pane {
    height: 39.4vh;
  }
}

@media (max-width: 420px) and (max-height: 870px) {
  #header #location {
    margin-top: -4.4rem;
  }

  #header #location img {
    width: 1rem;
    height: 1.4rem;
  }

  #header #location p {
    font-size: 0.5rem;
  }

  #header #burger_menu #black_layer {
    top: 7.9vh;
  }

  #header #burger_menu #burger_menu_pane {
    height: 40.5vh;
  }
}

@media (max-width: 420px) and (max-height: 830px) {
  #header #location {
    margin-top: -4.2rem;
  }

  #header #location div img {
    width: 1rem;
    height: 1.4rem;
  }

  #header #location div p {
    font-size: 0.5rem;
  }

  #header #burger_menu #black_layer {
    top: 8vh;
  }

  #header #burger_menu #burger_menu_pane {
    height: 42.6vh;
  }
}

@media (max-width: 420px) and (max-height: 740px) {
  #header {
    height: 8vh;
  }

  #header #location {
    margin-top: -4rem;
  }

  #header #location div img {
    width: 0.9rem;
    height: 1.2rem;
  }

  #header #location div p {
    font-size: 0.5rem;
  }

  #header #burger_menu #black_layer {
    top: 8vh;
  }

  #header #burger_menu #burger_menu_pane {
    height: 48vh;
  }
}

@media (max-width: 420px) and (max-height: 715px) {
  #header #burger_menu #burger_menu_pane {
    height: 49vh;
  }
}

@media (max-width: 400px) and (max-height: 900px) {
  #header #location {
    margin-top: -4rem;
  }

  #header #location div img {
    width: 1rem;
    height: 1.4rem;
  }

  #header #location div p {
    font-size: 0.5rem;
  }
}

@media (max-width: 400px) and (max-height: 820px) {
  #header #location {
    margin-top: -4.1rem;
  }

  #header #burger_menu #burger_menu_pane {
    height: 43.2vh;
  }
}

@media (max-width: 400px) and (max-height: 740px) {
  #header #location {
    margin-top: -4rem;
  }

  #header #location div img {
    width: 0.9rem;
    height: 1.2rem;
  }

  #header #location div p {
    font-size: 0.5rem;
  }

  #header #burger_menu #burger_menu_pane {
    height: 47.5vh;
  }
}

@media (max-width: 400px) and (max-height: 670px) {
  #header {
    height: 3rem;
  }

  #header #logo a {
    height: 100%;
  }

  #header #location div img {
    width: 0.9rem;
    height: 1.2rem;
  }

  #header #location div p {
    font-size: 0.4rem;
  }

  #header #burger_menu #black_layer {
    top: 7vh;
    height: 100vh;
  }

  #header #burger_menu #burger_menu_pane {
    height: 52.8vh;
  }
}

@media (max-width: 400px) and (max-height: 670px) {
  #header #location div {
    margin-top: 1.6rem;
  }
}

@media (max-width: 400px) and (max-height: 640px) {
  #header #logo a img {
    margin: auto;
    top: 0;
    left: 0;
  }

  #header #location {
    margin-top: -3rem;
  }

  #header #location div {
    margin-top: auto;
  }

  #header #location div img {
    width: 0.9rem;
  }

  #header #burger_menu #black_layer {
    top: 7.5vh;
  }

  #header #burger_menu #burger_menu_pane {
    height: 54.7vh;
  }
}

@media (max-width: 400px) and (max-height: 568px) {
  #header {
    height: 3rem;
  }

  #header #logo a {
    margin: auto;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
  }

  #header #logo a img {
    margin: auto;
    padding: 0;
    top: 0;
    left: 0;
    width: 50%;
    height: auto;
    object-fit: cover;
  }

  #header #location {
    margin-top: -3rem;
  }

  #header #location div img {
    width: 0.7rem;
    height: 1rem;
  }

  #header #location div p {
    position: relative;
    left: -0.4rem;
    font-size: 0.4rem;
  }

  #header #burger_menu #black_layer {
    top: 8.2vh;
  }

  #header #burger_menu #burger_menu_pane {
    height: 61.8vh;
  }
}

/* Home CSS */
#home {
  display: flex;
  flex-direction: column;
  margin-top: -0.4rem;
  width: 100%;
  background-color: var(--gray);
}

#home #carousel {
  width: 100%;
  height: 48vh;
  overflow: hidden;
  scrollbar-width: none;
}

#home #carousel * {
  box-sizing: border-box;
}

#home #carousel #carousel_container::-webkit-scrollbar,
#home #carousel::-webkit-scrollbar {
  display: none;
}

#home #carousel #carousel_container {
  scroll-snap-type: x mandatory;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

#home #carousel #carousel_container:hover > #carousel_links {
  transform: translate(0, -4rem);
}

#home #carousel #carousel_container a .carousel_img {
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  z-index: 100;
  transition: transform 0.5s, opacity 0.5s, z-index 0.5s;
}

#home #carousel #carousel_container a .carousel_img.initial,
#home #carousel #carousel_container a .carousel_img.active {
  opacity: 1;
  position: relative;
  z-index: 900;
}

#home #carousel #carousel_container a .carousel_img.prev,
#home #carousel #carousel_container a .carousel_img.next {
  z-index: 800;
}

#home #carousel #carousel_container a .carousel_img.prev {
  transform: translate(-100%);
}

#home #carousel #carousel_container a .carousel_img.next {
  transform: translate(100%);
}

#home #carousel #carousel_container .carousel_btn--prev,
#home #carousel #carousel_container .carousel_btn--next {
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 3rem;
  background-color: #fff;
  transform: translateY(-50%);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
}

.carousel_btn--prev {
  left: -10rem;
}

.carousel_btn--next {
  right: -10rem;
}

#home #carousel #carousel_container:hover > .carousel_btn--prev {
  transition: left 0.5s ease-in;
  left: 10rem;
}

#home #carousel #carousel_container:hover > .carousel_btn--next {
  transition: right 0.5s ease-in;
  right: 10rem;
}
.carousel_btn--prev::after,
.carousel_btn--next::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 16%;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  transform: translate(100%, -50%) rotate(135deg);
}

.carousel_btn--next::after {
  left: 58%;
  transform: translate(-100%, -50%) rotate(-45deg);
}

#home #carousel #carousel_container .carousel_btn--prev:hover,
#home #carousel #carousel_container .carousel_btn--next:hover {
  background-color: rgba(204, 204, 204, 0.8);
}

#home #carousel #carousel_container #carousel_links {
  display: flex;
  flex-direction: row;
  position: absolute;
  justify-content: space-between;
  transition: transform 0.25s ease-in-out;
  padding: 0.5rem;
  left: 40%;
  width: 14rem;
  height: 2rem;
  z-index: 1001;
}

#home #carousel #carousel_container #carousel_links .carousel_span {
  width: 1rem;
  height: 1rem;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}

#home #carousel #carousel_container #carousel_links .carousel_span.active {
  background-color: #fff;
  transition: background-color 0.25s ease-in-out;
}

#home #carousel #carousel_container #carousel_links .carousel_span.active {
  display: none;
}

#home #ofertas {
  display: inline-flex;
  flex-direction: column;
  width: 70%;
  margin: 0 auto;
  margin-top: 6rem;
  margin-bottom: 4rem;
  overflow: hidden;
}

.home_button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 30%;
  max-width: 40%;
  min-height: 4rem;
  max-height: 6rem;
  width: auto;
  height: auto;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--red);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 0.46rem;
  cursor: pointer;
  text-decoration: none;
}

#home #cartao .home_button:hover {
  background-color: rgba(141, 0, 12, 0.9);
}

#home #ofertas #ofertas_img {
  width: 100%;
  height: auto;
}

#home #ofertas #ofertas_img img {
  width: 100%;
  height: 100%;
}

#home :is(#ofertas, #fique_por_dentro) h1 {
  font-size: 2.8rem;
  font-weight: 600;
}

#home #fique_por_dentro {
  display: flex;
  flex-direction: column;
  width: 70%;
  height: auto;
  margin: 0 auto;
}

#home #fique_por_dentro a h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

#home #fique_por_dentro #fique_body {
  display: inline-flex;
  width: 100%;
  height: auto;
  flex-direction: row;
}

#home #fique_por_dentro .news_card:first-child {
  margin: 0;
}

#home #fique_por_dentro .news_card {
  display: flex;
  flex-direction: column;
  justify-content: left;
  min-width: 32%;
  max-width: 32%;
  min-height: 14rem;
  max-height: 35rem;
  width: auto;
  height: auto;
}

#home #fique_por_dentro .news_card:nth-child(2),
#home #fique_por_dentro .news_card:nth-child(3) {
  margin-left: 2rem;
}

#home #fique_por_dentro .news_card a {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.8rem;
  min-width: 40%;
  max-width: 48%;
  min-height: 3.6rem;
  max-height: 4.6rem;
  width: auto;
  height: auto;
  font-size: 1.1rem;
  font-weight: 600;
  color: #cccccc;
  text-decoration: none;
  border: 2px solid #cccccc;
  border-radius: 0.6rem;
  background-color: rgb(245, 245, 245);
  cursor: pointer;
}

#home #fique_por_dentro .news_card a:hover {
  color: var(--red);
  border: 3px solid var(--red);
}

#home #fique_por_dentro .news_card a span {
  display: flex;
  position: relative;
  color: var(--red);
  font-family: "Nanum Gothic", monospace;
  font-size: 1.2rem;
  font-weight: bold;
}

#home #fique_por_dentro .news_card #news_card_img,
#home #fique_por_dentro .news_card #news_card_title {
  margin: 0 !important;
  padding: 0 !important;
  min-width: 100% !important;
  max-width: 100% !important;
  min-height: auto !important;
  max-height: 100% !important;
  width: 100% !important;
  height: auto !important;
  background-color: transparent !important;
  border: none !important;
}

#home #fique_por_dentro .news_card #news_card_img:hover,
#home #fique_por_dentro .news_card #news_card_title:hover {
  color: none !important;
  border: none !important;
}

#home #fique_por_dentro .news_card img {
  display: flex;
  justify-self: center;
  align-content: center;
  min-width: 100%;
  min-height: 64%;
  width: auto;
  height: auto;
}

#home #fique_por_dentro .news_card h2 {
  margin-bottom: 1.6rem;
  min-height: 4rem;
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 500;
}

#home #cartao_banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  min-height: 64vh;
  height: 64vh;
  margin-top: 6rem;
  color: #fff;
  background-image: url("../img/teste3.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 9;
}

#home #cartao_banner div {
  display: flex;
  flex-direction: column;
  margin-left: 18rem;
  min-width: 33%;
  max-width: 33%;
  min-height: 50%;
  max-height: 58%;
}

#home #cartao_banner h1 {
  margin: 0;
  margin-bottom: 2rem;
  width: 36rem;
  height: auto;
  justify-self: flex-start;
  text-align: left;
  font-size: 3.4rem;
  line-height: 4.4rem;
}

/* aiming to 2560px width */
@media (min-width: 2200px) and (min-height: 1440px) {
  #home #banner .info div {
    margin-left: 10rem;
  }

  #home #banner .info h1 {
    font-size: 4rem;
    line-height: 4.4rem;
  }

  #home #banner .info p {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  #home #banner .info .home_button {
    min-height: 5rem;
    max-height: 7rem;
  }

  .home_button {
    margin-top: 2rem;
    min-width: 35%;
    max-width: 45%;
    min-height: 5rem;
    max-height: 6rem;
    font-size: 1.8rem;
    border-radius: 16px;
  }

  #home #ofertas h1,
  #home #fique_por_dentro h1 {
    font-size: 3.2rem;
  }

  #home #fique_por_dentro {
    margin-bottom: 2rem;
  }

  #home #fique_por_dentro .news_card h2 {
    min-height: 5rem;
    font-size: 2.2rem;
  }

  #home #fique_por_dentro .news_card a {
    padding: 0 1.4rem;
    margin-top: 2rem;
    min-height: 4.6rem;
    max-height: 5.6rem;
    font-size: 1.4rem;
  }

  #home #cartao_banner {
    height: 56vh;
    margin-bottom: -1.2rem;
  }

  #home #cartao_banner div {
    margin-left: 21rem;
  }

  #home #cartao_banner h1 {
    width: 40rem;
    font-size: 3.8rem;
    line-height: 4.6rem;
  }
}

/* aiming to 2560px width */
@media (min-width: 2200px) and (max-height: 1280px) {
  #home #banner {
    height: 68vh;
  }

  #home #banner .info div {
    margin-left: 12rem;
  }

  #home #banner .info h1 {
    font-size: 3.8rem;
    line-height: 3.8rem;
  }

  #home #banner .info p {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  #home #banner .info .home_button {
    min-height: 5rem;
    max-height: 7rem;
  }

  .home_button {
    font-size: 1.8rem;
    border-radius: 16px;
  }

  #home #ofertas {
    height: 64vh;
  }

  #home #ofertas h1,
  #home #fique_por_dentro h1 {
    font-size: 3rem;
  }

  #home #fique_por_dentro {
    margin-bottom: 1rem;
  }

  #home #fique_por_dentro #fique_body .news_card h2 {
    min-height: 5rem;
    font-size: 2.2rem;
  }

  #home #fique_por_dentro #fique_body .news_card a {
    min-height: 4.8rem;
    max-height: 5.8rem;
    font-size: 1.4rem;
  }

  #home #cartao_banner {
    height: 72.9vh;
  }

  #home #cartao_banner div {
    margin-left: 21rem;
    min-width: 28%;
    max-width: 28%;
  }

  #home #cartao_banner h1 {
    width: 40rem;
    font-size: 3.8rem;
    line-height: 4.4rem;
  }
}

@media (max-width: 1920px) and (max-height: 970px) {
  #home #ofertas {
    margin-top: 4rem;
  }

  #home #fique_por_dentro {
    margin-bottom: 1rem;
  }

  #home #fique_por_dentro h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 1800px) and (max-height: 1440px) {
  #home #fique_por_dentro .news_card a {
    font-size: 0.9rem;
  }
}

@media (max-width: 1760px) and (max-height: 1080px) {
  #home :is(#ofertas, #fique_por_dentro) h1 {
    font-size: 2.2rem;
  }

  #home #fique_por_dentro .news_card h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 1520px) and (max-height: 1080px) {
  #home :is(#ofertas, #fique_por_dentro) h1 {
    font-size: 1.8rem;
  }

  #home #fique_por_dentro .news_card h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 1440px) and (max-height: 900px) {
  #home #banner .info div {
    margin-left: 6rem;
  }

  #home #banner .info h1 {
    font-size: 2.2rem;
    line-height: 2.4rem;
  }

  #home #banner .info p {
    font-size: 0.7rem;
    line-height: 0.9rem;
  }

  #home #banner .info .home_button {
    min-height: 2.4rem;
    max-height: 3.8rem;
    font-size: 1rem;
  }

  #home #cartao_banner .home_button {
    min-height: 3.4rem;
    max-height: 4.8rem;
    font-size: 1.2rem;
  }

  #home #ofertas h1,
  #home #fique_por_dentro h1 {
    font-size: 1.8rem;
  }

  #home #fique_por_dentro {
    margin-bottom: 0rem;
  }

  #home #fique_por_dentro h1 {
    margin-bottom: 1rem;
  }

  #home #fique_por_dentro .news_card {
    width: 31.5%;
  }

  #home #fique_por_dentro .news_card h2 {
    margin-bottom: 1rem;
  }

  #home #fique_por_dentro .news_card img {
    min-height: 47%;
  }

  #home #fique_por_dentro .news_card a {
    min-height: 3rem;
    max-height: 4rem;
    font-size: 0.8rem;
    border: 2px solid #cccccc;
  }

  #home #fique_por_dentro .news_card a span {
    position: relative;
    padding-right: 0.4rem;
    left: 0.4rem;
    font-size: 0.7rem;
  }

  #home #cartao_banner div {
    margin-left: 14rem;
  }

  #home #cartao_banner h1 {
    width: 34rem;
    font-size: 3rem;
    line-height: 3.8rem;
  }
}

@media (max-width: 1440px) and (max-height: 790px) {
  #home #fique_por_dentro {
    margin-bottom: 1rem;
  }

  #home #cartao_banner {
    height: 58vh;
  }
}

@media (max-width: 1366px) and (max-height: 770px) {
  #home #banner .info h1 {
    min-height: 6.8rem;
  }

  #home #banner .info p {
    margin: 0;
    line-height: 0.9rem;
  }

  #home :is(#ofertas, #fique_por_dentro) h1 {
    font-size: 1.6rem;
  }

  #home #fique_por_dentro .news_card h2 {
    min-height: 2.8rem;
    font-size: 1rem;
  }

  #home #fique_por_dentro .news_card a {
    padding: 0.6rem;
    padding-right: 1rem;
    min-height: 2.6rem;
    max-height: 3.8rem;
    font-size: 0.7rem;
  }

  #home #fique_por_dentro .news_card a span {
    font-size: 0.8rem;
  }

  #home #cartao_banner {
    margin-top: 4rem;
  }

  #home #cartao_banner div {
    margin-left: 13rem;
  }

  #home #cartao_banner h1 {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
}

@media (max-width: 1366px) and (max-height: 660px) {
  #home #banner {
    height: 58vh;
  }

  #home #banner .info h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  #home #banner .info p {
    min-width: 52%;
    max-width: 62%;
    font-size: 0.7rem;
    line-height: 0.9rem;
  }

  #home #fique_por_dentro {
    margin-bottom: 1rem;
  }

  #home #cartao_banner h1 {
    width: 26rem;
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
}

@media (max-width: 1366px) and (max-height: 625px) {
  #home #banner .info p {
    line-height: 1.1rem;
  }

  #home #cartao_banner .home_button {
    width: 12rem;
  }

  #home #fique_por_dentro {
    margin-bottom: 1rem;
  }

  #home #cartao_banner {
    height: 68vh;
  }

  #home #cartao_banner h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 1280px) and (max-height: 800px) {
  #home #banner .info h1 {
    font-size: 2.2rem;
    line-height: 2.4rem;
  }

  #home #banner .info p {
    font-size: 0.8rem;
    line-height: 1rem;
  }

  #home #banner .info .home_button {
    font-size: 1rem;
  }

  .home_button {
    font-size: 1.2rem;
  }

  #home :is(#oferta, #fique_por_dentro) h1 {
    font-size: 1.4rem;
  }

  #home #fique_por_dentro {
    margin-bottom: -1rem;
  }

  #home #fique_por_dentro .news_card h2 {
    min-height: 2.8rem;
    font-size: 0.9rem;
  }

  #home #fique_por_dentro .news_card img {
    min-height: 48%;
  }

  #home #fique_por_dentro .news_card a {
    min-width: 40%;
    max-width: 48%;
    min-height: 2.4rem;
    max-height: 3rem;
    font-size: 0.7rem;
  }

  #home #fique_por_dentro .news_card a span {
    font-size: 0.9rem;
    left: 0.4rem;
  }

  #home #cartao_banner div {
    margin-left: 12rem;
  }

  #home #cartao_banner h1 {
    width: 28rem;
    font-size: 2.4rem;
    line-height: 3rem;
  }
}

@media (max-width: 1280px) and (max-height: 620px) {
  #home #banner .info h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  #home #banner .info p {
    font-size: 0.6rem;
    line-height: 0.8rem;
  }

  #home #fique_por_dentro {
    margin-bottom: 1rem;
  }
}

@media (max-width: 1024px) and (max-height: 768px) {
  #home #banner {
    height: 40vh;
  }

  #home #banner .info h1 {
    font-size: 1.8rem;
    line-height: 2rem;
  }

  #home #banner .info p {
    font-size: 0.6rem;
    line-height: 0.8rem;
  }

  #home #banner .info .home_button {
    font-size: 0.8rem;
  }

  #home #fique_por_dentro {
    margin-bottom: 1rem;
  }

  #home :is(#ofertas, #fique_por_dentro) h1 {
    font-size: 1.2rem;
  }

  #home #fique_por_dentro .news_card a {
    padding-right: 0.5rem;
    min-width: 54;
    max-width: 58%;
    min-height: 2.2rem;
    max-height: 3rem;
    font-size: 0.6rem;
  }

  #home #fique_por_dentro #fique_body h2 {
    min-height: 2rem;
    font-size: 0.8rem;
  }

  #home #cartao_banner {
    min-height: 50vh;
  }

  #home #cartao_banner div {
    margin-left: 10rem;
  }

  #home #cartao_banner h1 {
    width: 24rem;
    font-size: 2.2rem;
    line-height: 2.8rem;
  }

  #home #cartao_banner .home_button {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) and (max-height: 610px) {
  #home #banner .info p {
    font-size: 0.5rem;
    line-height: 0.7rem;
  }
}

@media (orientation: portrait) {
  #home {
    margin-top: -0.22rem;
  }

  #home #carousel {
    height: 32vh;
  }

  #home #ofertas {
    display: flex;
    padding: 0;
    margin: 0 auto;
    width: 82%;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  #home #ofertas h1,
  #home #fique_por_dentro h1 {
    align-self: flex-start;
    text-align: left;
  }

  #home #ofertas img {
    width: 100%;
    height: 20vh;
  }

  #home #fique_por_dentro {
    width: 82%;
  }

  #home #cartao {
    display: flex;
    padding: 0;
    margin: 0;
    margin-top: 6rem;
    align-items: center;
    justify-content: center;
    min-height: 30vh;
    max-height: 50vh;
    width: 100%;
    height: auto;
    background-image: url("../img/teste3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  #home #cartao h1 {
    color: #fff;
  }

  #home #banner .info .home_button,
  #home #cartao .home_button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 4rem;
    max-width: 8rem;
    min-height: 2rem;
    max-height: 5rem;
  }
}

@media (max-width: 480px) and (max-height: 860px) {
  #home #banner {
    min-height: 24vh;
    max-height: 75vh;
  }

  #home #banner .info h1 {
    margin-top: 0.8rem;
    width: 80%;
    font-size: 1.4rem;
    line-height: 1.4rem;
  }

  #home #banner .info p {
    margin: 0;
    width: 64%;
    font-size: 0.8rem;
    line-height: 1rem;
  }

  #home #banner .info .home_button {
    margin: 1rem 0;
    width: 6rem;
    height: 2.4rem;
    font-size: 0.8rem;
  }

  #home #ofertas h1,
  #home #fique_por_dentro h1 {
    margin-top: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
  }

  #home #fique_por_dentro h1 {
    margin-bottom: 1rem;
  }

  #home #cartao div {
    display: flex;
    flex-direction: column;
    align-self: center;
    padding: 0;
    margin: auto 1.8rem;
    min-width: 40%;
    max-width: 50%;
    min-height: 60%;
    max-height: 90%;
    width: auto;
    height: auto;
  }

  #home #cartao h1 {
    width: 12rem;
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  #home #cartao .home_button {
    font-size: 0.8rem;
  }
}

@media (max-width: 420px) and (max-height: 900px) {
  #home #banner {
    max-height: 75vh;
  }

  #home #banner .info div {
    margin-left: 2rem;
  }

  #home #banner .info h1 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  #home #banner .info p {
    margin: 0;
    min-height: 2rem;
    max-height: 6rem;
    min-width: 50%;
    max-width: 80%;
    width: auto;
    height: auto;
    font-size: 0.8rem;
    line-height: 1rem;
  }

  #home #banner .info .home_button {
    margin: 1rem 0;
    font-size: 0.7rem;
  }

  #home #ofertas h1,
  #home #fique_por_dentro h1 {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
  }

  #home #fique_por_dentro h1 {
    margin-bottom: 1rem;
  }

  #home #cartao {
    margin-top: 4rem;
  }

  #home #cartao div {
    align-self: center;
    margin-left: 2rem;
  }

  #home #cartao h1 {
    width: 10rem;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  #home #cartao .home_button {
    width: 6rem;
    height: 2rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 420px) and (max-height: 830px) {
  #home #cartao h1 {
    width: 12rem;
  }

  #home #banner .info div h1 {
    width: 70%;
  }

  #home #cartao h1 {
    width: 11rem;
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
}

@media (max-width: 420px) and (max-height: 740px) {
  :is(#home, #fique_por_dentro) :is(h1) {
    font-size: 1.6rem;
  }

  #home #cartao h1 {
    width: 12rem;
    font-size: 1.2rem;
  }

  #home #cartao h1 {
    width: 10rem;
    font-size: 1rem;
  }

  #home #cartao h1 {
    width: 10rem;
    font-size: 1.1rem;
    line-height: 1.3rem;
  }
}

@media (max-width: 400px) and (max-height: 820px) {
  .card:first-of-type {
    margin-left: 0;
  }

  .card {
    margin-left: 1rem;
    margin-right: 0;
    width: 100%;
  }

  #home #cartao h1 {
    width: 10rem;
    font-size: 1rem;
  }

  #home #cartao h1 {
    width: 9rem;
    font-size: 1rem;
    line-height: 1.2rem;
  }
}

@media (max-width: 400px) and (max-height: 740px) {
  #home #fique_por_dentro h1 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 400px) and (max-height: 670px) {
  #home #fique_por_dentro h1 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 400px) and (max-height: 568px) {
  #home #banner .info div h1 {
    width: 90%;
  }

  #home #cartao h1 {
    width: 7rem;
    font-size: 0.9rem;
  }
}

/* Nossas lojas CSS */
#nossaslojas {
  display: flex;
  margin-top: -0.4rem;
  width: 100%;
  height: auto;
}

#nossaslojas #nossaslojas_inner {
  display: flex;
  flex-direction: row;
  justify-self: center;
  align-self: center;
  margin: auto;
  margin-top: 6rem;
  margin-bottom: 6rem;
  width: 70%;
  height: auto;
}

#nossaslojas #nossaslojas_left {
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: space-between;
  width: 70%;
  height: 80%;
  margin-bottom: 4rem;
}

#nossaslojas #nossaslojas_left h1 {
  margin: 0;
  font-size: 2.8rem;
}

#nossaslojas .select {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 2rem;
  margin: 2rem 0;
  width: 40%;
  min-height: 3rem;
  max-height: 4rem;
  height: auto;
  font-family: Montserrat, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #9a9a9a;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  background-color: #fff;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
}

#nossaslojas #stores_select {
  display: block;
  position: relative;
}

#nossaslojas .select::-ms-expand {
  display: none;
}

#nossaslojas #stores_select::after {
  position: absolute;
  width: auto;
  height: auto;
  top: 2.8rem;
  left: 20.6rem;
  content: ">";
  color: var(--red);
  font-size: 1.4rem;
  font-family: "Nanum Gothic", monospace;
  pointer-events: none;
  cursor: pointer;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

#nossaslojas #img {
  display: flex;
  position: relative;
  justify-self: center;
  align-items: center;
  top: 2rem;
  width: 100%;
  height: 75%;
}

#nossaslojas #img img {
  min-width: 100%;
  height: 100%;
}

#nossaslojas #infocard {
  display: flex;
  flex-direction: column;
  width: 30%;
  min-height: 30rem;
  max-height: 38rem;
  height: auto;
  margin-top: 12.6rem;
  margin-left: 1.8rem;
  padding: 0.8rem 2rem;
  background-color: #fff;
}

#nossaslojas #infocard h2 {
  font-size: 1.8rem;
  font-weight: 500;
}

#nossaslojas #infocard #infolocation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 92%;
  height: auto;
  max-height: 20%;
  margin-top: 0rem;
  margin-bottom: -4rem;
  font-size: 0.92rem;
}

#nossaslojas #infocard #infolocation img {
  margin-right: 1rem;
  width: 1.6rem;
  height: 2.4rem;
}

#nossaslojas #infocard #infohours {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  margin-top: 5rem;
  max-height: 36%;
  font-size: 0.92rem;
  border-bottom: 1px solid rgb(69, 69, 69, 0.2);
}

#nossaslojas #infocard #infohours h5 {
  color: var(--red);
  font-size: 1rem;
  font-weight: 500;
}

#nossaslojas #infocard #infohours h5 {
  margin: 0;
  padding: 0;
}

#nossaslojas #infocard #infohours h5 {
  margin-bottom: 1rem;
}

#nossaslojas #infocard #infohours p {
  margin: 0;
  padding-bottom: 2rem;
  margin-top: 0.25rem;
}

#nossaslojas #infocard #contact {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: auto;
  max-height: 20%;
  margin-top: 0rem;
}

#nossaslojas #infocard #contact div {
  margin-top: 0.5rem;
}

#nossaslojas #infocard #contact div img {
  display: flex;
  align-self: center;
  width: 2rem;
  height: 2rem;
  margin-right: 0.8rem;
}

#nossaslojas #infocard #contact div:nth-child(2) {
  margin-top: -0.4rem;
}

#nossaslojas #infocard button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  min-height: 3rem;
  max-height: 4rem;
  height: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #d6d6d6;
  border: 2.5px solid #d6d6d6;
  border-radius: 8px;
  background-color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: Montserrat, sans-serif;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

#nossaslojas #infocard button:focus,
#nossaslojas #infocard button:hover {
  color: var(--red);
  border: 2.5px solid var(--red);
  outline-color: var(--red);
}

#map_container {
  display: none;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: -2rem;
  margin-bottom: 8rem;
}

#map_container iframe {
  display: flex;
  width: 84rem;
  height: 30rem;
  margin: 0 auto;
}

/* aiming to 2560px width */
@media (min-width: 2200px) and (max-height: 1440px) {
  #nossaslojas #nossaslojas_left h1 {
    font-size: 3.2rem;
  }

  #nossaslojas #nossaslojas_left .select {
    width: 34rem;
    height: 4rem;
    font-size: 1.4rem;
    border-radius: 16px;
  }

  #nossaslojas #stores_select::after {
    top: 2.4rem;
    left: 30rem;
    font-size: 2.4rem;
  }

  #nossaslojas #infocard {
    margin-top: 13.8rem;
    padding: 0.8rem 3rem;
    min-height: 36rem;
    max-height: 42rem;
  }

  #nossaslojas #infocard h2 {
    font-size: 2.2rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-left: -3rem;
    margin-top: 0rem;
    width: 100%;
  }

  #nossaslojas #infocard #infolocation img {
    width: 1.5rem;
    height: 2.2rem;
  }

  #nossaslojas #infocard #infolocation p {
    font-size: 1.2rem;
  }

  #nossaslojas #infocard #infohours {
    margin-top: 4rem;
  }

  #nossaslojas #infocard #infohours h5 {
    font-size: 1.2rem;
  }

  #nossaslojas #infocard #infohours p {
    font-size: 1rem;
  }

  #nossaslojas #infocard #contact {
    margin-top: 0.8rem;
    width: 44%;
  }

  #nossaslojas #infocard #contact div img {
    width: 2.4rem;
    height: 2.4rem;
  }

  #nossaslojas #infocard #contact div p {
    margin-top: 0.8rem;
    margin-left: 0.8rem;
    font-size: 1rem;
  }

  #nossaslojas #infocard #contact div:last-of-type img {
    margin-top: 1rem;
  }

  #nossaslojas #infocard #contact div:last-of-type p {
    margin-top: 1.8rem;
  }

  #nossaslojas #infocard button {
    width: 56%;
    min-height: 4rem;
    margin-top: 2.4rem;
    font-size: 1.4rem;
    border-radius: 14px;
  }

  #map_container {
    display: none;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 0rem;
    margin-bottom: 12rem;
  }

  #map_container iframe {
    display: flex;
    width: 109rem;
    height: 40rem;
    margin: 0 auto;
  }
}

@media (max-width: 1920px) and (max-height: 970px) {
  #nossaslojas .select {
    margin-top: 2.8rem;
  }

  #nossaslojas #stores_select::after {
    top: 3.6rem;
  }

  #nossaslojas #infocard {
    margin-top: 13rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-top: 0;
  }

  #nossaslojas #infocard #infohours h5 {
    margin-bottom: 0.4rem;
  }

  #nossaslojas #infocard #contact {
    margin-top: 1rem;
  }

  #nossaslojas #infocard button {
    margin-top: 1rem;
    padding-top: 0.16rem;
  }

  #map_container {
    margin-top: 0rem;
    margin-bottom: 6rem;
  }
}

@media (max-width: 1760px) and (max-height: 1080px) {
  #nossaslojas #stores_select::after {
    left: 19rem;
  }

  #nossaslojas #infocard {
    min-height: 24rem;
    max-height: 29.6rem;
  }

  #nossaslojas #infocard :is(#infolocation, #infohours, #contact) p {
    font-size: 0.8rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-left: -0.4rem;
  }

  #nossaslojas #infocard #infolocation img {
    width: 1.2rem;
    height: 1.8rem;
  }

  #nossaslojas #infocard #infohours h5 {
    font-size: 0.9rem;
  }

  #nossaslojas #infocard #contact {
    width: 50%;
  }

  #nossaslojas #infocard #contact div img {
    width: 1.4rem;
    height: 1.4rem;
  }

  #map_container iframe {
    width: 78rem;
  }
}

@media (max-width: 1560px) and (max-height: 1080px) {
  #nossaslojas #nossaslojas_left h1 {
    font-size: 1.8rem;
  }

  #nossaslojas .select {
    padding-left: 1rem;
    font-size: 0.9rem;
  }

  #nossaslojas #stores_select::after {
    left: 17rem;
  }

  #nossaslojas #infocard {
    margin-top: 11.2rem;
    min-height: 22rem;
    max-height: 26.2rem;
  }

  #nossaslojas #infocard h2 {
    font-size: 1.2rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-left: 0;
  }

  #nossaslojas #infocard #infohours h5 {
    margin-bottom: 0.4rem;
  }

  #nossaslojas #infocard #infohours {
    margin-top: 4.6rem;
  }

  #nossaslojas #infocard #contact {
    width: 58%;
  }

  #nossaslojas #infocard button {
    margin-top: 1.4rem;
    min-height: 2rem;
    max-height: 3rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 1440px) and (max-height: 900px) {
  #nossaslojas #nossaslojas_inner {
    margin-top: 4rem;
  }

  #nossaslojas #nossaslojas_left {
    height: 60%;
  }

  #nossaslojas #nossaslojas_left h1 {
    font-size: 2.2rem;
  }

  #nossaslojas #nossaslojas_left .select {
    margin: 2rem 0;
    margin-top: 2.8rem;
    width: 48%;
    font-size: 0.8rem;
  }

  #nossaslojas #stores_select::after {
    top: 3.6rem;
    left: 18.8rem;
    font-size: 1.4rem;
  }

  #nossaslojas #infocard {
    margin-top: 12.5rem;
    padding: 0.6rem 2rem;
    min-height: 20rem;
    max-height: 24.2rem;
  }

  #nossaslojas #infocard h2 {
    font-size: 1.2rem;
  }

  #nossaslojas #infocard #infolocation {
    display: flex;
    width: 100%;
    margin-top: 0.6rem;
    margin-bottom: -4.2rem;
  }

  #nossaslojas #infocard #infolocation img {
    align-self: center;
    width: 1rem;
    height: 1.6rem;
  }

  #nossaslojas #infocard #infolocation p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 0.7rem;
  }

  #nossaslojas #infocard #infohours {
    margin-top: 6rem;
  }

  #nossaslojas #infocard #infohours h5 {
    font-size: 0.8rem;
  }

  #nossaslojas #infocard #infohours p {
    padding-bottom: 1rem;
    font-size: 0.7rem;
  }

  #nossaslojas #infocard #contact {
    width: 58%;
  }

  #nossaslojas #infocard #contact div {
    margin-top: -0.8rem;
  }

  #nossaslojas #infocard #contact div img {
    width: 1.2rem;
    height: 1.2rem;
  }

  #nossaslojas #infocard #contact p {
    font-size: 0.7rem;
  }

  #nossaslojas #infocard button {
    margin-top: 1rem;
    min-height: 2.4rem;
    height: 2.4rem;
    font-size: 0.7rem;
  }

  #map_container {
    margin-top: -4rem;
    margin-bottom: 6rem;
  }

  #map_container iframe {
    width: 64rem;
  }
}

@media (max-width: 1440px) and (max-height: 790px) {
  #nossaslojas #infocard {
    height: 24.2rem;
  }

  #nossaslojas #infocard h2 {
    font-size: 1.2rem;
  }

  #nossaslojas #infocard #infolocation img {
    width: 1.2rem;
    height: 1.8rem;
  }

  #nossaslojas #infocard #infolocation p {
    margin-top: 0rem;
    font-size: 0.7rem;
  }

  #nossaslojas #infocard #infohours {
    margin-top: 5.2rem;
  }

  #nossaslojas #infocard #infohours h5 {
    margin-top: 0.2rem;
    font-size: 0.8rem;
  }

  #nossaslojas #infocard #infohours p {
    font-size: 0.7rem;
  }

  #nossaslojas #infocard #contact div {
    margin-top: 0rem;
  }

  #nossaslojas #infocard #contact div:nth-child(2) {
    margin-top: -0.4rem;
  }

  #nossaslojas #infocard #contact p {
    font-size: 0.7rem;
  }

  #nossaslojas #infocard button {
    margin-top: 1rem;
  }
}

@media (max-width: 1366px) and (max-height: 768px) {
  #nossaslojas #nossaslojas_left h1 {
    font-size: 2rem;
  }

  #nossaslojas #nossaslojas_left .select {
    margin: 1rem 0;
    margin-top: 2rem;
    min-height: 2.4rem;
  }

  #nossaslojas #stores_select::after {
    top: 2.8rem;
    left: 18rem;
    font-size: 1.2rem;
  }

  #nossaslojas #infocard {
    height: 23rem;
    margin-top: 10.4rem;
  }

  #nossaslojas #infocard h2 {
    font-size: 1rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-top: 0rem;
    margin-left: 0rem;
    max-width: 90%;
  }

  #nossaslojas #infohours h5 {
    font-size: 0.7rem;
  }

  #nossaslojas #infocard #infohours {
    margin-top: 6rem;
  }

  #nossaslojas #infocard #contact {
    width: 66%;
    margin-top: 0.6rem;
  }

  #nossaslojas #infocard #contact div {
    margin-bottom: -0.5rem;
  }

  #nossaslojas #infocard #contact div:nth-child(2) {
    margin-top: 0rem;
  }

  #nossaslojas #infocard button {
    min-height: 2.4rem;
  }

  #map_container {
    margin-top: -2rem;
  }

  #map_container iframe {
    width: 60rem;
  }
}

@media (max-width: 1366px) and (max-height: 660px) {
  #nossaslojas #infocard {
    padding: 0 1.4rem;
    height: 23rem;
  }

  #nossaslojas #infocard h2 {
    font-size: 1.2rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-top: 0.6rem;
    margin-left: 1rem;
  }

  #nossaslojas #infocard #infolocation img {
    margin-left: -1.4rem;
    width: 1rem;
    height: 1.5rem;
  }

  #nossaslojas #infocard #infolocation p {
    font-size: 0.7rem;
  }

  #nossaslojas #infocard #infohours h5 {
    font-size: 0.8rem;
  }

  #nossaslojas #infocard #infohours p {
    font-size: 0.7rem;
  }

  #nossaslojas #infocard #contact {
    width: 60%;
  }

  #nossaslojas #infocard #contact div:nth-child(2) {
    margin-top: 0.2rem;
  }

  #nossaslojas #infocard #contact div img {
    width: 1.2rem;
    height: 1.2rem;
  }

  #nossaslojas #infocard #contact p {
    font-size: 0.7rem;
  }

  #nossaslojas #infocard button {
    width: 46%;
    height: 2.4rem;
    font-size: 0.7rem;
  }

  #map_container {
    margin-top: -4rem;
    margin-bottom: 6rem;
  }

  #map_container iframe {
    height: 50vh;
  }
}

@media (max-width: 1366px) and (max-height: 625px) {
  #nossaslojas #infocard {
    height: 23rem;
  }

  #nossaslojas #infocard h2 {
    font-size: 1.2rem;
  }

  #nossaslojas #infocard button {
    margin-top: 1.4rem;
  }
}

@media (max-width: 1280px) and (max-height: 800px) {
  #nossaslojas #nossaslojas_left h1 {
    font-size: 1.4rem;
  }

  #nossaslojas #nossaslojas_left .select {
    width: 20rem;
    min-height: 2.4rem;
    height: 2.4rem;
    margin-top: 1.4rem;
    margin-bottom: 0;
    font-size: 0.7rem;
    border-radius: 8px;
  }

  #nossaslojas #stores_select::after {
    top: 2rem;
    left: 17.6rem;
    font-size: 1.2rem;
  }

  #nossaslojas #infocard {
    margin-top: 7.6rem;
    width: 16rem;
    height: 21.4rem;
    padding: 0.4rem 2rem;
  }

  #nossaslojas #infocard h2 {
    font-size: 1rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-top: 0.4rem;
    margin-bottom: -4.4rem;
  }

  #nossaslojas #infocard #infolocation img {
    width: 1rem;
    height: 1.4rem;
  }

  #nossaslojas #infocard #infolocation p {
    margin-top: 0;
    font-size: 0.6rem;
  }

  #nossaslojas #infocard #infohours {
    margin-top: 7rem;
  }

  #nossaslojas #infocard #infohours h5 {
    margin-top: -1.6rem;
    font-size: 0.7rem;
  }

  #nossaslojas #infocard #infohours p {
    font-size: 0.6rem;
  }

  #nossaslojas #infocard #contact {
    width: 60%;
    margin-top: 1.6rem;
  }

  #nossaslojas #infocard #contact div img {
    width: 1rem;
    height: 1rem;
  }

  #nossaslojas #infocard #contact div p {
    font-size: 0.6rem;
  }

  #nossaslojas #infocard button {
    width: 56%;
    min-height: 2.4rem;
    height: 2.4rem;
    margin-top: 0.8rem;
    font-size: 0.7rem;
  }

  #map_container {
    margin-top: -2rem;
  }

  #map_container iframe {
    width: 56rem;
  }
}

@media (max-width: 1280px) and (max-height: 610px) {
  #nossaslojas #infocard #infolocation {
    margin-top: 0.6rem;
    margin-left: 0;
  }

  #nossaslojas #infocard #infolocation img {
    margin-left: 0;
  }

  #nossaslojas #infocard #infohours {
    margin-top: 7.2rem;
  }

  #nossaslojas #infocard #contact {
    margin-top: 0.8rem;
  }

  #nossaslojas #infocard button {
    margin-top: 1.4rem;
  }

  #map_container {
    margin-top: -4rem;
  }
}

@media (max-width: 1024px) and (max-height: 768px) {
  #nossaslojas #nossaslojas_left .select {
    width: 16rem;
    min-height: 2rem;
    height: 2rem;
    padding-left: 1rem;
    font-size: 0.7rem;
  }

  #nossaslojas #nossaslojas_left #img {
    max-width: 100%;
  }

  #nossaslojas #stores_select::after {
    top: 1.9rem;
    left: 14rem;
    font-size: 1rem;
  }

  #nossaslojas #infocard {
    width: 12rem;
    min-height: 17rem;
    height: 17.2rem;
    margin-top: 7rem;
    margin-left: 1.4rem;
    padding: 0rem 1.2rem;
  }

  #nossaslojas #infocard h2 {
    font-size: 0.9rem;
  }

  #nossaslojas #infocard :is(#infolocation, #infohours, #contact) p {
    font-size: 0.6rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-top: 0;
  }

  #nossaslojas #infocard #infolocation img {
    width: 0.8rem;
    height: 1.2rem;
  }

  #nossaslojas #infocard #infohours h5 {
    font-size: 0.6rem;
    margin-top: -1.4rem;
  }

  #nossaslojas #infocard #infohours {
    margin-top: 6.8rem;
  }

  #nossaslojas #infocard #contact {
    width: 70%;
    margin-top: 0.2rem;
  }

  #nossaslojas #infocard button {
    min-height: 1.8rem;
    height: 1.8rem;
    margin-top: 1rem;
    font-size: 0.6rem;
    border-radius: 6px;
  }

  #map_container {
    margin-top: -4rem;
    margin-left: 0.8rem;
  }

  #map_container iframe {
    width: 46rem;
    height: 18rem;
  }
}

@media (max-width: 1024px) and (max-height: 610px) {
  #nossaslojas #infocard {
    margin-top: 7rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-left: 0;
  }
}

@media (orientation: portrait) {
  #nossaslojas #nossaslojas_left {
    width: 100%;
    height: auto;
  }

  #nossaslojas {
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem;
    height: auto;
  }

  #nossaslojas #nossaslojas_left h1 {
    width: 100%;
    margin-bottom: 0;
    font-size: 1.4rem;
  }

  #nossaslojas #stores_select .select {
    margin: 1rem 0;
    margin-top: 2rem;
    width: 100%;
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 500;
  }

  #nossaslojas #stores_select::after {
    top: 2.2rem;
  }

  #nossaslojas #nossaslojas_left #img {
    margin: 0;
    margin-top: -1rem;
    width: 100%;
    height: 30vh;
  }

  #nossaslojas #nossaslojas_left #img img {
    width: 100%;
    height: auto;
  }

  #nossaslojas #infocard {
    display: flex;
    margin: 1rem 0;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    width: 100%;
  }

  #nossaslojas #infocard #contact div {
    max-width: 80%;
  }

  #nossaslojas #infocard button {
    font-size: 0.8rem;
    border-radius: 6px;
  }

  #map_container {
    margin: 0 auto;
    margin-top: -1rem;
    margin-bottom: 2rem;
    padding: 0;
    width: 82%;
    height: 40vh;
  }

  #map_container iframe {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) and (max-height: 900px) {
  #nossaslojas #nossaslojas_left h1 {
    font-size: 1.4rem;
    font-weight: 700;
  }

  #nossaslojas #infocard {
    height: 22.4rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-left: -5rem;
  }

  #nossaslojas #stores_select .select {
    padding-left: 1rem;
    height: 3rem;
  }

  #nossaslojas #stores_select::after {
    top: 2.6rem;
    left: 23rem;
  }

  #nossaslojas #infocard :is(#infohours, #infolocation, #contact) :is(p) {
    font-size: 0.7rem;
  }

  #nossaslojas #infocard #infohours {
    margin-top: 5.4rem;
  }

  #nossaslojas #infocard #contact div {
    width: 57%;
  }

  #nossaslojas #infocard #contact div img {
    width: 1rem;
    height: 1rem;
  }

  #nossaslojas #infocard button {
    margin-top: 1.4rem;
    width: 30%;
    height: 2.4rem;
    border-radius: 4px;
  }

  #map_container {
    width: 86%;
  }
}

@media (max-width: 420px) and (max-height: 900px) {
  #nossaslojas #nossaslojas_left h1 {
    font-size: 1.2rem;
    font-weight: 700;
  }

  #nossaslojas #nossaslojas_left #img {
    margin-top: -3rem;
  }

  #nossaslojas #stores_select .select {
    margin: 1.6rem 0;
    padding-left: 1rem;
  }

  #nossaslojas #stores_select::after {
    top: 2.4rem;
    left: 18.6rem;
    font-size: 1.4rem;
  }

  #nossaslojas #infocard {
    margin-top: -1rem;
    height: 23rem;
  }

  #nossaslojas #infocard :is(#infolocation, #infohours, #contact) :is(p) {
    font-size: 0.7rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-left: -1rem;
  }

  #nossaslojas #infocard #contact div {
    width: 80%;
  }

  #nossaslojas #infocard button {
    margin-top: 1rem;
    width: 50%;
  }

  #map_container {
    margin-top: -2.2rem;
  }
}

@media (max-width: 420px) and (max-height: 830px) {
  #nossaslojas #stores_select::after {
    top: 2.4rem;
    left: 19rem;
    font-size: 1.4rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-left: -2rem;
  }

  #nossaslojas #infocard button {
    margin-top: 1rem;
    width: 8rem;
  }
}

@media (max-width: 420px) and (max-height: 740px) {
  #nossaslojas #stores_select::after {
    top: 2.4rem;
    left: 19rem;
    font-size: 1.4rem;
  }

  #nossaslojas #nossaslojas_left #img {
    margin-top: -2.8rem;
  }

  #nossaslojas #infocard {
    margin-top: -1rem;
    padding: 0.6rem 1.2rem;
    height: 20rem;
  }

  #nossaslojas #infocard h2 {
    font-size: 1.2rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-top: 0;
    margin-left: -2rem;
  }

  #nossaslojas #infocard #infohours {
    margin-top: 7rem;
  }

  #nossaslojas #infocard #infohours h5 {
    font-size: 0.82rem;
  }

  #nossaslojas #infocard #contact div {
    width: 60%;
  }

  #nossaslojas #infocard #contact div p {
    font-size: 0.7rem;
  }

  #nossaslojas #infocard button {
    width: 38%;
    margin-top: 1rem;
  }
}

@media (max-width: 400px) and (max-height: 820px) {
  #nossaslojas #stores_select::after {
    top: 2.5rem;
    left: 17rem;
    font-size: 1.2rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-left: -1rem;
  }

  #nossaslojas #infocard #contact {
    width: 64%;
  }

  #nossaslojas #infocard #contact div {
    width: 80%;
  }

  #nossaslojas #infocard button {
    margin-top: 1rem;
    width: 40%;
  }
}

@media (max-width: 400px) and (max-height: 740px) {
  #nossaslojas #stores_select .select {
    height: 2.4rem;
  }

  #nossaslojas #stores_select::after {
    top: 2.2rem;
    left: 15rem;
  }

  #nossaslojas #nossaslojas_left #img {
    margin-top: -4rem;
  }

  #nossaslojas #infocard {
    margin-top: -3rem;
    height: 21.6rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-left: 0rem;
  }

  #nossaslojas #infocard #contact {
    width: 72%;
  }

  #nossaslojas #infocard button {
    margin-top: 1rem;
    font-size: 0.7rem;
  }

  #map_container {
    margin-top: -2.8rem;
  }
}

@media (max-width: 375px) and (max-height: 667px) {
  #nossaslojas #stores_select::after {
    left: 17rem;
  }

  #nossaslojas #nossaslojas_left #img {
    margin-top: -3rem;
  }

  #nossaslojas #infocard {
    margin-top: -2rem;
    height: 20rem;
  }

  #nossaslojas #infocard #infohours h5 {
    font-size: 0.82rem;
  }

  #map_container {
    margin-top: -3rem;
  }
}

@media (max-width: 375px) and (max-height: 600px) {
  #nossaslojas #stores_select::after {
    left: 16rem;
  }

  #nossaslojas #nossaslojas_left #img {
    margin-top: -1.4rem;
  }

  #nossaslojas #infocard {
    margin-top: 0;
  }
}

@media (max-width: 340px) and (max-height: 640px) {
  #nossaslojas #infocard {
    padding: 0.2rem 1.2rem;
    height: 21.4rem;
  }

  #nossaslojas #stores_select::after {
    top: 1.8rem;
    left: 15.2rem;
    font-size: 1.2rem;
  }

  #nossaslojas #nossaslojas_left #img {
    margin-top: -3rem;
  }

  #nossaslojas #infocard {
    margin-top: -2rem;
  }

  #nossaslojas #infocard #infolocation {
    width: 90%;
    margin-left: 0rem;
  }

  #nossaslojas #infocard #infohours h5 {
    font-size: 0.84rem;
  }

  #nossaslojas #infocard #contact {
    width: 74%;
  }

  #nossaslojas #infocard button {
    margin-top: 1rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 400px) and (max-height: 568px) {
  #nossaslojas #stores_select::after {
    top: 1.5rem;
    left: 13.6rem;
  }

  #nossaslojas #stores_select .select {
    margin: 1rem auto;
  }

  #nossaslojas #nossaslojas_left #img {
    margin-top: -2.6rem;
  }

  #nossaslojas #infocard {
    margin-top: -1.4rem;
    height: 21.6rem;
  }

  #nossaslojas #infocard h2 {
    font-size: 1rem;
  }

  #nossaslojas #infocard #infolocation {
    margin-left: 0;
  }

  #nossaslojas #infocard #contact {
    max-width: 100%;
    width: 74%;
  }

  #nossaslojas #infocard button {
    margin-top: 1rem;
    width: 50%;
    font-size: 0.7rem;
  }

  #map_container {
    margin-top: -2rem;
    width: 80%;
  }
}

/* Not found CSS */
.notfound {
  padding: 0 15%;
  margin: 8rem 0;
  height: auto;
}

/* Noticias CSS */
#noticias {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 6rem 18rem;
}

#noticias h1 {
  margin-top: 0;
  font-size: 2.8rem;
}

#noticias .news_body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  margin-top: 2rem;
  margin-bottom: 4rem;
  color: #000;
  border-bottom: 1px solid rgb(0, 0, 0, 0.2);
}

#noticias #single_body {
  height: auto !important;
  border: none;
}

#noticias .news_body .news_img {
  display: flex;
  min-width: 100%;
  width: 100%;
  height: 22rem;
  object-fit: cover;
  justify-self: stretch;
}

#noticias .social {
  display: flex;
  flex-direction: row;
  width: 20rem;
  height: auto;
  margin-top: 1rem;
  margin-left: auto;
  font-weight: 600;
  color: #cccccc;
}

#noticias .social a {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: -0.2rem;
  margin-left: 1.4rem;
  cursor: pointer;
}

#noticias .social a:first-child {
  width: 0.8rem;
  height: 0.8rem;
}

#noticias .social a:nth-child(3),
#noticias .social a:nth-child(4) {
  margin-top: 0.01rem;
}

#noticias .social a img {
  width: 100%;
}

#noticias .news_body .news_info h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--blue);
}

#noticias .news_body .news_info p {
  width: 70%;
  line-height: 1.4rem;
  margin-top: 1.4rem;
}

#noticias .news_body .news_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 3rem;
  margin-top: 1rem;
  margin-bottom: 4rem;
  padding-right: 0.6rem;
  color: #adadad;
  text-align: center;
  text-decoration: none;
  border: 2px solid #cccccc;
  border-radius: 8px;
}

#noticias .news_body a.news_btn:focus,
#noticias .news_body a.news_btn:hover {
  color: var(--red);
  outline-color: var(--red);
  border: 1px solid var(--red);
}

#noticias .news_body .news_btn span {
  position: relative;
  left: 0.6rem;
  color: var(--red);
  font-size: 1rem;
  font-family: Nanum Gothic, sans-serif;
}

#noticias #pagination {
  display: flex;
  flex-direction: row;
  width: auto;
  margin-left: auto;
}

#noticias #pagination ul {
  display: flex;
  justify-content: space-between;
  width: 28rem;
  list-style: none;
}

#noticias #pagination ul li a {
  font-weight: 600;
  text-decoration: none;
  color: #cccccc;
}

#noticias #pagination ul li a:active,
#noticias #pagination ul li a:focus {
  color: var(--red);
}

/* aiming to 2560px width */
@media (min-width: 2200px) and (max-height: 1440px) {
  #noticias {
    padding: 8rem 25rem;
  }

  #noticias h1 {
    font-size: 3.2em;
  }

  #noticias .news_body .news_img {
    height: 30rem;
  }

  #noticias .news_body .social {
    font-size: 1.4rem;
  }

  #noticias .news_body .social a {
    width: 3rem;
    height: 3rem;
    margin-top: 0.2rem;
  }

  #noticias .news_body .social a:first-child {
    width: 1.5rem;
    height: 1.5rem;
  }

  #noticias .social a:nth-child(3),
  #noticias .social a:nth-child(4) {
    margin-top: 0.14rem;
  }

  #noticias .news_body .news_info h2 {
    font-size: 3.2rem;
  }

  #noticias .news_body .news_info p {
    font-size: 1.4rem;
    line-height: 2rem;
  }

  #noticias .news_body .news_btn {
    width: 14rem;
    height: 4.6rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-top: 0.26rem;
    padding-right: 1rem;
    border-radius: 16px;
    font-size: 1.6rem;
  }

  #noticias .news_body .news_btn span {
    left: 1.6rem;
    font-size: 1.8rem;
  }

  #noticias #pagination {
    width: 50rem;
    margin-bottom: 6rem;
    margin-right: -4rem;
    font-size: 2rem;
  }

  #noticias #pagination a {
    margin-left: 3rem;
  }
}

@media (max-width: 1920px) and (max-height: 970px) {
  #noticias #pagination {
    margin-right: 0rem;
  }
}

@media (max-width: 1440px) and (max-height: 900px) {
  #noticias {
    padding: 6rem 14rem;
  }

  #noticias h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 1366px) and (max-height: 768px) {
  #noticias {
    padding: 6rem 13rem;
  }

  #noticias h1 {
    font-size: 2rem;
  }
}

@media (max-width: 1280px) and (max-height: 800px) {
  #noticias {
    padding: 4rem 12rem;
  }

  #noticias h1 {
    font-size: 1.8rem;
  }

  #noticias .social {
    font-size: 0.8rem;
    margin-right: -5rem;
  }

  #noticias .social a {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
  }

  #noticias .social a:first-child {
    width: 0.5rem;
    height: 0.5rem;
  }

  #noticias .social a:nth-child(3),
  #noticias .social a:nth-child(4) {
    margin-top: 0.1rem;
  }

  #noticias .news_body .news_info h2 {
    font-size: 1.6rem;
  }

  #noticias .news_body .news_info p {
    font-size: 0.8rem;
  }

  #noticias .news_body .news_info p:last-child {
    margin-bottom: 1rem;
  }

  #noticias .news_body .news_btn {
    padding-top: 0.2rem;
  }

  #noticias .news_body .news_btn span {
    top: 0rem;
  }

  #noticias #pagination {
    margin-top: -4rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 1280px) and (max-height: 610px) {
  #noticias .news_body .news_btn {
    padding-top: 0.22rem;
  }
}

@media (max-width: 1024px) and (max-height: 768px) {
  #noticias {
    padding: 4rem 10rem;
  }

  #noticias .social {
    margin-right: -5rem;
  }

  #noticias #pagination ul {
    width: 22rem;
  }

  #noticias .news_body .news_btn {
    padding-top: 0.14rem;
    margin-bottom: 3rem;
  }
}

@media (orientation: portrait) {
  #noticias {
    height: auto;
  }

  #noticias #social {
    display: none;
  }

  #noticias .news_body {
    height: auto;
  }

  #noticias #pagination {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
}

@media (max-width: 480px) and (max-height: 900px) {
  #noticias {
    padding: 4rem 2rem;
  }

  #noticias h1 {
    font-size: 1.4rem;
  }

  #noticias .news_body .news_img {
    margin-top: -1.6rem;
    height: 20vh;
  }

  #noticias .news_body .news_info p {
    color: #9a9a9a;
    font-weight: 500;
  }

  #noticias .news_body .news_info p:first-of-type {
    margin-top: 2rem;
    width: 100%;
    font-size: 0.6rem;
  }

  #noticias .news_body .news_info h2 {
    margin: 0;
    font-size: 1.2rem;
  }

  #noticias .news_body .news_info p:last-child {
    padding: 0;
    margin: 1rem 0;
    width: 100%;
    max-height: 30vh;
    overflow: hidden;
  }

  #noticias .news_body .news_btn {
    margin: 1rem 0;
    margin-bottom: 2rem;
    padding-top: 0rem;
    width: 7rem;
    height: 2.4rem;
    font-size: 0.8rem;
  }

  #noticias .news_body .news_btn span {
    left: 0.8rem;
    font-size: 1rem;
  }

  #noticias #pagination ul {
    margin: 0;
    margin-top: -3rem;
    padding: 0;
    width: 100%;
  }

  #noticias #pagination ul li a {
    font-size: 0.8rem;
  }

  #noticias .social {
    margin-right: -2rem;
  }
}

@media (max-width: 420px) and (max-height: 900px) {
  #noticias {
    padding: 2rem 2rem;
  }

  #noticias h1 {
    font-size: 1.2rem;
    font-weight: 700;
  }

  #noticias .news_body .news_img {
    margin-top: -1.6rem;
    height: 24vh;
  }

  #noticias .news_body .news_info p {
    color: #9a9a9a;
    font-size: 0.8rem;
    font-weight: 500;
  }

  #noticias .news_body .news_info p:first-of-type {
    margin-top: 2rem;
    width: 100%;
    font-size: 0.6rem;
  }

  #noticias .news_body .news_info h2 {
    margin: 0;
    font-size: 1.2rem;
  }

  #noticias .news_body .news_info p:last-child {
    padding: 0;
    margin: 1rem 0;
    width: 100%;
    max-height: 30vh;
    overflow: hidden;
  }

  #noticias .news_body .news_btn {
    margin: 1rem 0;
    margin-bottom: 2rem;
    padding-top: 0rem;
    width: 7rem;
    height: 2.4rem;
    font-size: 0.8rem;
  }

  #noticias .news_body .news_btn span {
    left: 0.8rem;
    font-size: 0.8rem;
  }

  #noticias .social {
    margin-right: -5rem;
    font-size: 0.8rem;
  }

  #noticias .social a:first-child {
    width: 0.6rem;
    height: 1rem;
  }

  #noticias .social a {
    width: 1rem;
    height: 1rem;
  }

  #noticias #pagination {
    margin: 0;
    margin-top: 0rem;
    padding: 0;
  }
}

@media (max-width: 420px) and (max-height: 830px) {
  #noticias .news_body .news_info p:first-of-type {
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
  }

  #noticias .news_body .news_img {
    height: 26vh;
  }

  #noticias .news_body .news_btn span {
    top: 0;
  }
}

@media (max-width: 420px) and (max-height: 740px) {
  #noticias .news_body .news_btn span {
    top: 0;
  }

  #noticias .social {
    margin-right: -5.4rem;
  }
}

@media (max-width: 400px) and (max-height: 820px) {
  #noticias .news_body .news_img {
    height: 20vh;
  }

  #noticias .news_body .news_btn span {
    top: 0;
  }
}

@media (max-width: 400px) and (max-height: 568px) {
  #noticias #pagination ul li a {
    font-size: 0.8rem;
  }
}

/* Ofertas CSS */
.ofertas_button {
  display: inline-flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  width: 32rem;
  height: 5rem;
  padding: 1.6rem 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background-color: var(--red);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 0.46rem;
  cursor: pointer;
}

.ofertas_button:hover {
  background-color: rgba(141, 0, 12, 0.9);
}

#ofertas {
  display: flex;
  flex-direction: column;
  margin-top: -0.4rem;
  width: 100%;
  height: auto;
}

#ofertas #banner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  height: 30vh;
  background-image: url("../../assets/img/ofertasbannertop.jpg");
  background-position: center center;
  background-repeat: repeat;
  background-size: fill;
}

#ofertas #ofertas_inner #ofertas_left h1 {
  font-size: 2.8rem;
}

#ofertas #ofertas_inner {
  width: 100%;
  height: auto;
  padding: 6rem 18rem;
  padding-right: 6rem;
}

#ofertas #ofertas_left {
  width: 36%;
  height: 20%;
}

#ofertas #ofertas_left {
  font-size: 1.2rem;
}

#ofertas #stores_select {
  position: relative;
}

#ofertas #stores_select .select {
  position: relative;
  width: 100%;
  min-height: 3.8rem;
  max-height: 4.6rem;
  height: auto;
  padding-left: 2rem;
  color: #9a9a9a;
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  background-color: #fff;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
}

#ofertas .select::-ms-expand {
  display: none;
}

#ofertas #stores_select::after {
  position: absolute;
  top: 1rem;
  left: 28rem;
  content: ">";
  width: auto;
  height: auto;
  color: var(--red);
  font-size: 1.6rem;
  font-family: "Nanum Gothic", monospace;
  pointer-events: none;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

#ofertas #ofertas_right {
  margin-right: 12rem;
  margin-bottom: 4rem;
}

#ofertas #tabloids {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 7rem;
  margin-left: 4rem;
  min-width: 40rem;
  max-width: 55rem;
  width: auto;
  min-height: 32rem;
  max-height: 40rem;
  height: auto;
}

#ofertas #tabloids div {
  width: 48%;
  height: auto;
  text-align: center;
}

#ofertas #tabloids img {
  display: flex;
  max-width: 100%;
  height: 90%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#ofertas #tabloids h6 {
  margin-top: 0.8rem;
  font-size: 1rem;
  color: #959595;
}

#ofertas div a {
  margin-top: 4rem;
  margin-left: 4rem;
}

#ofertas #btn img {
  position: relative;
  top: 0rem;
  width: 3rem;
  height: 3rem;
}

/* aiming to 2560px width */
@media (min-width: 2200px) and (max-height: 1440px) {
  #ofertas #ofertas_inner {
    padding: 6rem 24.2rem;
  }

  #ofertas #ofertas_inner #ofertas_left h1 {
    width: 40rem;
    font-size: 3.2rem;
  }

  #ofertas #ofertas_inner #ofertas_left .select {
    width: 40rem;
    height: 5.4rem;
    font-size: 1.4rem;
    color: #9a9a9a;
  }

  #ofertas #stores_select::after {
    top: 1.4rem;
    left: 36rem;
    font-size: 2rem;
  }

  #ofertas #ofertas_inner #tabloids {
    width: 70rem;
    height: 50rem;
    margin-top: 8rem;
  }

  #ofertas #ofertas_inner #tabloids img {
    height: 100%;
  }

  #ofertas #ofertas_inner #tabloids h6 {
    font-size: 1.5rem;
  }

  #ofertas #ofertas_inner #btn {
    margin-top: 18rem;
    margin-bottom: -6rem;
  }

  #ofertas #ofertas_inner #btn .ofertas_button {
    position: relative;
    top: -12rem;
    width: 40rem;
    height: 5rem;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
    border-radius: 16px;
  }
}

@media (min-width: 2200px) and (max-height: 1280px) {
  #ofertas #ofertas_left {
    margin-left: -2rem;
    margin-right: 6rem;
  }
}

@media (max-width: 1920px) and (max-height: 970px) {
  #ofertas #ofertas_inner {
    padding: 4rem 18.6rem;
  }

  #ofertas #ofertas_inner #ofertas_left h1 {
    width: 38rem;
  }

  #ofertas #ofertas_inner #ofertas_left .select {
    font-size: 1.1rem;
  }

  #ofertas #stores_select::after {
    font-size: 1.4rem;
    top: 1.2rem;
    left: 26rem;
  }

  #ofertas #ofertas_inner #tabloids {
    min-width: 32rem;
    max-width: 38rem;
    min-height: 24rem;
    max-height: 28rem;
    margin-top: 7.4rem;
  }

  #ofertas #ofertas_inner #btn {
    margin-top: -2rem;
  }

  #ofertas #ofertas_inner #btn .ofertas_button {
    width: 24rem;
    height: 3rem;
    padding-top: 1.4rem;
    font-size: 1rem;
    border-radius: 10px;
  }

  #ofertas #ofertas_inner #btn .ofertas_button img {
    margin-top: 0;
    width: 1.8rem;
    height: 1.8rem;
  }
}

@media (max-width: 1760px) and (max-height: 1280px) {
  #ofertas #ofertas_inner #ofertas_left h1 {
    font-size: 2.2rem;
  }

  #ofertas #stores_select::after {
    left: 23rem;
  }

  #ofertas #ofertas_inner #ofertas_right {
    margin-top: -1.2rem;
  }
}

@media (max-width: 1440px) and (max-height: 900px) {
  #ofertas #ofertas_inner {
    padding: 4rem 14.4rem;
  }

  #ofertas #ofertas_inner #ofertas_left h1 {
    font-size: 1.8rem;
  }

  #ofertas #ofertas_inner #stores_select .select {
    padding-left: 1rem;
    width: 24rem;
    min-height: 2.8rem;
    font-size: 0.9rem;
  }

  #ofertas #ofertas_inner #stores_select::after {
    top: 0.7rem;
    left: 21.6rem;
  }

  #ofertas #ofertas_inner #ofertas_right {
    margin-top: 0;
  }

  #ofertas #ofertas_inner #tabloids {
    margin-top: 4.8rem;
    width: 36rem;
    height: 30rem;
  }

  #ofertas #ofertas_inner #btn {
    margin-top: 0;
  }
}

@media (max-width: 1366px) and (max-height: 768px) {
  #ofertas #ofertas_inner {
    padding: 4rem 13rem;
  }

  #ofertas #ofertas_inner #ofertas_left h1 {
    font-size: 1.6rem;
  }

  #ofertas #ofertas_inner #tabloids {
    margin-top: 4.2rem;
    margin-left: 5rem;
  }

  #ofertas #ofertas_inner #btn {
    margin-left: 1rem;
  }
}

@media (max-width: 1280px) and (max-height: 800px) {
  #ofertas #ofertas_inner {
    padding: 4rem 12rem;
  }

  #ofertas #ofertas_inner #ofertas_left h1 {
    font-size: 1.4rem;
  }

  #ofertas #ofertas_inner #stores_select .select {
    width: 21rem;
    font-size: 0.8rem;
  }

  #ofertas #ofertas_inner #stores_select::after {
    top: 0.8rem;
    left: 18.4rem;
    font-size: 1.2rem;
  }

  #ofertas #ofertas_inner #tabloids {
    margin-top: 5.2rem;
  }

  #ofertas #ofertas_inner #tabloids h6 {
    font-size: 0.7rem;
  }
}

@media (max-width: 1024px) and (max-height: 768px) {
  #ofertas #ofertas_inner {
    height: 74vh;
    padding: 4rem 9.6rem;
  }

  #ofertas #ofertas_inner #ofertas_left h1 {
    font-size: 1.2rem;
  }

  #ofertas #ofertas_inner #ofertas_left .select {
    width: 18rem;
    min-height: 2.4rem;
    height: 2.4rem;
    padding-left: 1rem;
    font-size: 0.7rem;
    border-radius: 8px;
  }

  #ofertas #ofertas_inner #stores_select::after {
    top: 0.7rem;
    left: 16rem;
    font-size: 1rem;
  }

  #ofertas #ofertas_inner #tabloids {
    min-width: 28rem;
    width: 28rem;
    margin-top: 3.2rem;
  }

  #ofertas #ofertas_inner #tabloids img {
    height: 64%;
  }

  #ofertas #ofertas_inner #tabloids h6 {
    width: 90%;
    font-size: 0.6rem;
  }

  #ofertas #ofertas_inner #btn {
    margin-top: -10rem;
  }

  #ofertas #ofertas_inner #btn .ofertas_button {
    width: 16rem;
    height: 2rem;
    padding: 0;
    padding-top: 0rem;
    padding-right: 1rem;
    font-size: 0.7rem;
    border-radius: 6px;
  }

  #ofertas #ofertas_inner #btn .ofertas_button img {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0rem;
    margin-left: 0.8rem;
  }
}

@media (max-width: 1024px) and (max-height: 610px) {
  #ofertas #ofertas_inner {
    height: 90vh;
  }
}

@media (orientation: portrait) {
  #ofertas #banner {
    display: none;
  }

  #ofertas {
    display: flex;
    flex-direction: column;
    padding: 4rem 3rem;
  }

  #ofertas #ofertas_inner {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    height: auto;
  }

  #ofertas #ofertas_left {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  #ofertas #ofertas_inner #stores_select .select {
    width: 100%;
    min-height: 2.4rem;
    max-height: 3rem;
    color: var(--red);
    font-weight: 500;
  }

  #ofertas #ofertas_inner #ofertas_right {
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
  }

  #ofertas #ofertas_inner #tabloids {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    margin-top: 1rem;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
  }

  #ofertas #ofertas_inner #tabloids div {
    width: 100%;
    height: auto;
  }

  #ofertas #ofertas_inner #tabloids img {
    width: 100%;
    height: auto;
  }

  #ofertas #ofertas_inner #tabloids h6 {
    text-align: left;
  }

  #ofertas #ofertas_inner #btn {
    text-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  #ofertas #ofertas_inner #btn .ofertas_button {
    border-radius: 6px;
  }

  #ofertas #ofertas_inner #btn a {
    margin: 0;
    padding: 0;
    font-weight: 600;
  }
}

@media (max-width: 480px) and (max-height: 900px) {
  #ofertas #ofertas_inner #ofertas_left h1 {
    font-size: 1.4rem;
  }

  #ofertas #ofertas_inner #stores_select .select {
    margin-top: 0.4rem;
    margin-bottom: 0.6rem;
    padding-left: 1rem;
    height: 3rem;
    font-size: 0.9rem;
  }

  #ofertas #ofertas_inner #stores_select::after {
    top: 1rem;
    left: 21rem;
    font-size: 1.6rem;
  }

  #ofertas #ofertas_inner #tabloids h6 {
    font-size: 0.8rem;
  }

  #ofertas #ofertas_inner #btn .ofertas_button {
    padding: 0;
    padding-right: 1.2rem;
    width: 100%;
    height: 2.6rem;
  }

  #ofertas #ofertas_inner #btn a img {
    margin-right: -1rem;
    padding: 0;
    width: 1.4rem !important;
    height: 1.4rem !important;
  }
}

@media (max-width: 420px) and (max-height: 900px) {
  #ofertas {
    padding: 2rem 2rem;
  }

  #ofertas #ofertas_inner #ofertas_left h1 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
  }

  #ofertas #ofertas_inner #ofertas_left #stores_select .select {
    height: 2.4rem;
    margin: 1rem auto;
    padding-left: 1rem;
    font-size: 0.8rem;
  }

  #ofertas #ofertas_inner #ofertas_left #stores_select::after {
    top: 1.6rem;
    left: 19rem;
    font-size: 1.2rem;
  }

  #ofertas #ofertas_inner #tabloids {
    margin: 1rem auto;
    margin-top: 0;
    padding: 0;
    width: 100%;
    height: auto;
  }

  #ofertas #ofertas_inner #tabloids h6 {
    font-size: 0.7rem;
  }

  #ofertas #ofertas_inner #btn .ofertas_button {
    padding-top: 0;
    padding-right: 1.6rem;
    margin-bottom: 1rem;
    width: 100%;
    font-size: 0.8rem;
  }

  #ofertas #ofertas_inner #btn .ofertas_button img {
    top: 0rem;
    margin-left: 1rem;
  }
}

@media (max-width: 420px) and (max-height: 830px) {
  #ofertas #ofertas_inner #ofertas_left #stores_select::after {
    top: 1.6rem;
    left: 19rem;
  }

  #ofertas #ofertas_inner #btn .ofertas_button {
    font-size: 0.7rem;
  }
}

@media (max-width: 420px) and (max-height: 740px) {
  #ofertas #ofertas_inner #ofertas_left #stores_select .select {
    font-size: 0.7rem;
  }

  #ofertas #ofertas_inner #ofertas_left #stores_select::after {
    top: 1.6rem;
    left: 19rem;
  }

  #ofertas #ofertas_inner #tabloids h6 {
    font-size: 0.7rem;
  }

  #ofertas #ofertas_inner #btn .ofertas_button {
    justify-content: space-between;
    padding: 0 2.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) and (max-height: 870px) {
  #ofertas #ofertas_inner #stores_select::after {
    top: 1.1rem;
    left: 16.8rem;
    font-size: 1.6rem;
  }

  #ofertas #ofertas_inner #tabloids h6 {
    font-size: 0.6rem;
  }

  #ofertas #ofertas_inner #btn .ofertas_button {
    padding: 0 1.2rem;
    width: 100%;
    height: 2.4rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 400px) and (max-height: 820px) {
  #ofertas #ofertas_inner #ofertas_left #stores_select::after {
    top: 1.6rem;
    left: 17rem;
  }

  #ofertas #ofertas_inner #btn .ofertas_button img {
    top: 0 !important;
  }
}

@media (max-width: 400px) and (max-height: 740px) {
  #ofertas #ofertas_inner #ofertas_left #stores_select::after {
    left: 15rem;
  }
}

@media (max-width: 400px) and (max-height: 670px) {
  #ofertas #ofertas_inner #ofertas_left #stores_select::after {
    left: 17rem;
  }

  #ofertas #ofertas_inner #tabloids h6 {
    font-size: 0.6rem;
  }

  #ofertas #ofertas_inner #btn .ofertas_button {
    padding: 0 2.4rem;
  }
}

@media (max-width: 400px) and (max-height: 640px) {
  #ofertas #ofertas_inner #ofertas_left #stores_select::after {
    top: 1.6rem;
    left: 15rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 400px) and (max-height: 568px) {
  #ofertas #ofertas_inner #ofertas_left #stores_select::after {
    top: 1.6rem;
    left: 14rem;
    font-size: 1rem;
  }

  #ofertas #ofertas_inner #tabloids h6 {
    font-size: 0.6rem;
  }

  #ofertas #ofertas_inner #btn .ofertas_button {
    padding: 0;
    padding-right: 1rem;
    width: 100%;
    height: 2.2rem;
    font-size: 0.7rem;
  }
}

/* Politicas CSS */
#politicas {
  width: 100%;
  height: auto;
  background: #fff;
}

#container {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: auto;
  margin: 0 auto;
  padding: 6rem 6rem;
}

#container h1 {
  text-align: left;
  margin-bottom: 3rem;
}

#container h1,
#container h2 {
  color: var(--blue);
}

#container div:first-of-type {
  margin-top: 4rem;
}

#container #fst_paragraph {
  margin-top: 0;
}

#container #fst_paragraph li:first-child {
  margin-top: 0;
}

#container #fst_paragraph li {
  margin-top: -1rem;
}

#container div:last-of-type {
  margin-bottom: 10rem;
}

#container div:last-of-type li {
  margin-top: 1rem;
}

@media (orientation: portrait) {
  #container {
    padding: 0 !important;
    padding-top: 4rem !important;
  }

  #container #fst_paragraph {
    margin: 0;
    padding: 0;
  }

  #container div :is(h1, h2) {
    font-size: 1.2rem;
  }

  #container div h1 {
    margin-top: -1rem;
    text-align: left;
  }

  #container div h3 {
    font-size: 1rem;
  }

  #container div :is(p, li) {
    font-size: 0.8rem;
  }

  #container div :is(ul) {
    margin-left: -1rem;
  }

  #container div:last-of-type ul:last-of-type {
    margin-bottom: -7rem;
  }
}

@media (min-width: 2200px) and (max-height: 1440px) {
  #container {
    padding: 6rem 9rem;
  }
}

@media (max-width: 1440px) and (max-height: 900px) {
  #container {
    padding: 6rem 5rem;
  }
}

@media (max-width: 1366px) and (max-height: 659px) {
  #container {
    padding: 6rem 6.4rem;
  }
}

@media (max-width: 1280px) and (max-height: 800px) {
  #container {
    padding: 6rem 4rem;
  }
}

@media (max-width: 1024px) and (max-height: 768px) {
  #container {
    padding: 4rem 4rem;
  }
}

/* Quem somos CSS */
#quemsomos {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}

#quemsomos #about {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  background-color: #fff;
}

#quemsomos #about #about_text {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
}

#quemsomos #about #about_text div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  margin: auto;
  margin-left: 18rem;
  min-width: 50%;
  max-width: 60%;
  min-height: 70%;
  max-height: 80%;
  width: auto;
  height: auto;
}

#quemsomos #about #about_text h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

#quemsomos #about #about_text p {
  line-height: 1.4rem;
}

#quemsomos #about img {
  display: flex;
  justify-self: center;
  align-items: center;
  min-width: 50%;
  width: 50%;
  height: 100%;
}

#quemsomos #infobanner {
  display: flex;
  text-align: center;
  width: 100%;
  height: 32vh;
  color: #fff;
  background-image: url("../../assets/img/ofertasbanner.png");
  background-color: var(--yellow);
  background-size: cover;
  background-repeat: no-repeat;
}

#quemsomos #infobanner div {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: center;
  margin: 0 auto;
  min-width: 60%;
  max-width: 70%;
  min-height: 54%;
  max-height: 70%;
}

#quemsomos #infobanner h2 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 3.8rem;
}

#quemsomos #infobanner p {
  margin: 0;
  font-size: 1.26rem;
  line-height: 1.7rem;
}

#quemsomos #valuesbanner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 4rem;
  color: #fff;
  background-color: var(--red);
}

#quemsomos #valuesbanner_inner {
  min-width: 62%;
  max-width: 75%;
  width: auto;
  height: 100%;
}

#quemsomos #valuesbanner_inner h3 {
  font-size: 1.6rem;
  font-weight: 600;
}

#quemsomos #valuesbanner_inner p {
  line-height: 1.4rem;
}

#quemsomos #valuesbanner_left {
  width: 33%;
  height: auto;
  border-right: 1px solid #fff;
  padding-right: 4rem;
}

#quemsomos #valuesbanner_center {
  width: 33%;
  margin-left: 5rem;
}

#quemsomos #valuesbanner_center p {
  margin-top: 1.8rem;
}

#quemsomos #valuesbanner_center h3 {
  margin-bottom: 0.5rem;
}

#quemsomos #valuesbanner_right {
  width: 33%;
  margin-top: 4.4rem;
  margin-left: 4rem;
}

#quemsomos #valuesbanner_right p {
  margin-top: 1.4rem;
}

#quemsomos #mapbanner {
  display: flex;
  width: 100%;
  height: 100vh;
}

#quemsomos #mapbanner #maptext {
  min-width: 26rem;
  max-width: 30rem;
  width: auto;
  height: auto;
  margin-top: 6rem;
  margin-left: 17.6rem;
  margin-right: 8rem;
}

#quemsomos #mapbanner #maptext h1 {
  font-size: 2.8rem;
}

#quemsomos #mapbanner #maptext p {
  width: 100%;
  text-align: left;
  line-height: 1.8rem;
}

#quemsomos #mapbanner #imagemap {
  display: flex;
  justify-self: center;
  min-width: 56rem;
  max-width: 68rem;
  min-height: 48rem;
  max-height: 56rem;
  width: auto;
  height: auto;
  margin-top: 8rem;
  margin-right: 14rem;
  background-size: contain;
  background-image: url("../../assets/img/imagemap.png");
  background-repeat: no-repeat;
  background-position: center center;
}

/* aiming to 2560px width */
@media (min-width: 2200px) and (max-height: 1440px) {
  #quemsomos #about #about_text div {
    margin-left: 24rem;
  }

  #quemsomos #about #about_text h1 {
    font-size: 3.2rem;
  }

  #quemsomos #about #about_text p {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  #quemsomos #infobanner {
    height: 34vh;
  }

  #quemsomos #infobanner h2 {
    font-size: 4.4rem;
    line-height: 5rem;
  }

  #quemsomos #infobanner p {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }

  #quemsomos #valuesbanner {
    padding: 4rem;
  }

  #quemsomos #valuesbanner h3 {
    font-size: 2.2rem;
  }

  #quemsomos #valuesbanner p {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  #quemsomos #valuesbanner #valuesbanner_left {
    width: 36rem;
    height: 42rem;
  }

  #quemsomos #valuesbanner #valuesbanner_center {
    margin-left: 6rem;
  }

  #quemsomos #valuesbanner #valuesbanner_center p {
    margin-top: 2.2rem;
  }

  #quemsomos #valuesbanner #valuesbanner_right {
    margin-top: 6.2rem;
    margin-left: 6rem;
  }

  #quemsomos #valuesbanner #valuesbanner_right p {
    margin-top: 2rem;
  }

  #quemsomos #mapbanner {
    height: 86vh;
  }

  #quemsomos #mapbanner #maptext {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 50rem;
    margin-left: 22.8rem;
  }

  #quemsomos #mapbanner #maptext h1 {
    font-size: 4rem;
    margin-bottom: -1rem;
  }

  #quemsomos #mapbanner #maptext p {
    width: 38rem;
    font-size: 1.4rem;
  }

  #quemsomos #mapbanner #imagemap {
    width: 68rem;
    height: 68rem;
    margin-top: 10rem;
    margin-left: 12rem;
  }
}

@media (min-width: 2200px) and (max-height: 1280px) {
  #quemsomos #about #about_text div {
    margin-left: 24rem;
    min-width: 44%;
    max-height: 52%;
    min-height: 74%;
    max-height: 84%;
  }

  #quemsomos #about #about_text h1 {
    font-size: 2.6rem;
  }

  #quemsomos #about #about_text p {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }

  #quemsomos #infobanner h2 {
    font-size: 3.8rem;
    line-height: 4.2rem;
  }

  #quemsomos #infobanner p {
    font-size: 2rem;
    line-height: 2.4rem;
  }

  #quemsomos #valuesbanner {
    padding: 4rem;
  }

  #quemsomos #valuesbanner_inner {
    padding: 0;
    min-width: 64%;
    max-width: 74%;
    width: auto;
  }

  #quemsomos #valuesbanner h3 {
    font-size: 2rem;
  }

  #quemsomos #valuesbanner p {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }

  #quemsomos #mapbanner #maptext {
    min-width: 34rem;
    max-width: 38rem;
    margin-left: 23.6rem;
    font-size: 1.4rem;
  }

  #quemsomos #mapbanner #imagemap {
    min-width: 64rem;
    max-width: 70rem;
    min-height: 54rem;
    max-height: 60rem;
    margin-left: 8rem;
  }
}

/* aiming to 2560px width */
@media (min-width: 2200px) and (max-height: 1080px) {
  #quemsomos #about {
    height: 58vh;
  }

  #quemsomos #about #about_text div {
    margin-left: 24rem;
  }

  #quemsomos #about #about_text h1 {
    font-size: 3rem;
  }

  #quemsomos #about #about_text p {
    width: 40rem;
    font-size: 1.4rem;
    line-height: 1.6rem;
  }

  #quemsomos #infobanner {
    height: 42vh;
  }

  #quemsomos #infobanner h2 {
    font-size: 4rem;
    line-height: 4.4rem;
  }

  #quemsomos #infobanner p {
    font-size: 1.6rem;
    line-height: 2rem;
  }

  #quemsomos #valuesbanner_inner h3 {
    font-size: 2.8rem;
  }

  #quemsomos #valuesbanner_inner p {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }

  #quemsomos #valuesbanner_center p {
    margin-top: 2.4rem;
  }

  #quemsomos #valuesbanner_right p:first-of-type {
    margin-top: 3.6rem;
  }

  #quemsomos #valuesbanner_right p {
    margin-top: 2.4rem;
  }

  #quemsomos #mapbanner {
    height: 108vh;
  }

  #quemsomos #mapbanner #maptext {
    min-width: 28rem;
    max-width: 32rem;
    margin-left: 23rem;
  }

  #quemsomos #mapbanner #maptext h1 {
    font-size: 3rem;
  }

  #quemsomos #mapbanner #maptext p {
    font-size: 1.4rem;
    line-height: 1.6rem;
    width: 110%;
  }

  #quemsomos #mapbanner #imagemap {
    height: 60rem;
    margin-top: 6rem;
    margin-left: 10rem;
  }
}

@media (max-width: 1920px) and (max-height: 970px) {
  #quemsomos #about {
    height: 60vh;
  }

  #quemsomos #about #about_text p {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  #quemsomos #infobanner {
    height: 40vh;
  }

  #quemsomos #infobanner h2 {
    font-size: 3rem;
    line-height: 3.4rem;
  }

  #quemsomos #infobanner p {
    font-size: 1.18rem;
    line-height: 1.6rem;
  }

  #quemsomos #valuesbanner_inner {
    min-width: 75%;
    max-height: 80%;
  }

  #quemsomos #mapbanner {
    height: 116vh;
  }
}

@media (max-width: 1760px) and (max-height: 1080px) {
  #quemsomos #about #about_text div {
    margin-left: 16rem;
  }

  #quemsomos #infobanner {
    height: 32vh;
  }

  #quemsomos #infobanner h2 {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }

  #quemsomos #infobanner p {
    font-size: 1.1rem;
    line-height: 1.6rem;
  }

  #quemsomos #mapbanner #maptext {
    margin-left: 16.4rem;
  }

  #quemsomos #mapbanner #imagemap {
    margin-left: -6rem;
    min-width: 50rem;
    max-width: 58rem;
    min-height: 44rem;
    max-height: 50rem;
  }
}

@media (max-width: 1640px) and (max-height: 1080px) {
  #quemsomos #about #about_text div {
    margin-left: 12rem;
  }

  #quemsomos #valuesbanner_inner {
    min-width: 70%;
    max-width: 82%;
  }

  #quemsomos #mapbanner #maptext {
    margin-left: 12rem;
  }

  #quemsomos #mapbanner #imagemap {
    min-width: 46rem;
    max-width: 50rem;
    min-height: 40rem;
    max-height: 44rem;
  }
}

@media (max-width: 1560px) and (max-height: 1080px) {
  #quemsomos #mapbanner {
    height: 90vh;
  }
}

@media (max-width: 1440px) and (max-height: 1080px) {
  #quemsomos #about {
    height: 40vh;
  }

  #quemsomos #about #about_text div {
    margin-top: 4rem;
    margin-left: 12rem;
    min-height: 60%;
    max-height: 66%;
  }

  #quemsomos #about #about_text h1 {
    font-size: 2rem;
  }

  #quemsomos #about #about_text p {
    font-size: 0.9rem;
    line-height: 1.1rem;
  }

  #quemsomos #infobanner {
    height: 26vh;
  }

  #quemsomos #infobanner h2 {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }

  #quemsomos #infobanner p {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  #quemsomos #valuesbanner_inner {
    min-width: 66%;
    max-width: 76%;
  }

  #quemsomos #valuesbanner h3 {
    font-size: 1.4rem;
  }

  #quemsomos #valuesbanner p {
    font-size: 0.9rem;
  }

  #quemsomos #valuesbanner_center p {
    margin-top: 1.2rem;
  }

  #quemsomos #valuesbanner_right p:first-of-type {
    margin-top: 0;
  }

  #quemsomos #valuesbanner_right p {
    margin-top: 1.2rem;
  }

  #quemsomos #valuesbanner_center h3 {
    margin-bottom: 0.4rem;
  }

  #quemsomos #mapbanner {
    height: 80vh;
  }

  #quemsomos #mapbanner #maptext {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 22rem;
    max-width: 26rem;
    min-height: 36%;
    max-height: 46%;
    margin-left: 12.6rem;
  }

  #quemsomos #mapbanner #maptext h1 {
    font-size: 2.4rem;
  }

  #quemsomos #mapbanner #maptext p {
    font-size: 0.9rem;
    line-height: 1.2rem;
  }

  #quemsomos #mapbanner #imagemap {
    min-width: 40rem;
    max-width: 50rem;
    min-height: 40rem;
    max-height: 50rem;
    margin-top: 1.8rem;
    margin-left: -4rem;
  }
}

@media (max-width: 1440px) and (max-height: 900px) {
  #quemsomos #about {
    height: 50vh;
  }

  #quemsomos #about #about_text div {
    margin-left: 14rem;
  }

  #quemsomos #infobanner {
    height: 32vh;
  }

  #quemsomos #infobanner p {
    font-size: 0.94rem;
    line-height: 1.4rem;
  }

  #quemsomos #valuesbanner #valuesbanner_inner h3 {
    font-size: 1.4rem;
  }

  #quemsomos #mapbanner {
    height: 90vh;
  }

  #quemsomos #mapbanner #maptext {
    margin-left: 14rem;
  }
}

@media (max-width: 1440px) and (max-height: 790px) {
  #quemsomos #about #about_text div {
    margin-top: 2rem;
  }

  #quemsomos #infobanner {
    height: 36vh;
  }

  #quemsomos #mapbanner {
    height: 106vh;
  }

  #quemsomos #mapbanner #maptext p {
    font-size: 0.9rem;
  }
}

@media (max-width: 1366px) and (max-height: 768px) {
  #quemsomos #about {
    height: 56vh;
  }

  #quemsomos #about #about_text div {
    margin-left: 13rem;
  }

  #quemsomos #about #about_text p {
    font-size: 0.9rem;
  }

  #quemsomos #infobanner {
    height: 32vh;
  }

  #quemsomos #infobanner h2 {
    font-size: 2.2rem;
    line-height: 2.4rem;
  }

  #quemsomos #infobanner p {
    font-size: 0.86rem;
    line-height: 1.4rem;
  }

  #quemsomos #valuesbanner_inner {
    min-width: 66%;
    max-width: 77%;
  }

  #quemsomos #valuesbanner #valuesbanner_inner h3 {
    font-size: 1.2rem;
  }

  #quemsomos #mapbanner #maptext {
    margin-left: 13rem;
  }

  #quemsomos #mapbanner #imagemap {
    margin-left: -6rem;
  }
}

@media (max-width: 1366px) and (max-height: 660px) {
  #quemsomos #about #about_text h1 {
    font-size: 1.8rem;
  }

  #quemsomos #about #about_text p {
    font-size: 0.8rem;
  }

  #quemsomos #about #about_text p:first-of-type {
    margin-top: 0.6rem;
  }

  #quemsomos #infobanner {
    height: 42vh;
  }

  #quemsomos #infobanner p {
    font-size: 0.86rem;
    line-height: 1.4rem;
  }

  #quemsomos #valuesbanner #valuesbanner_inner h3 {
    font-size: 1.4rem;
  }

  #quemsomos #valuesbanner #valuesbanner_inner p {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }

  #quemsomos #mapbanner {
    height: 128vh;
  }

  #quemsomos #mapbanner #maptext h1 {
    font-size: 2rem;
  }

  #quemsomos #mapbanner #maptext p {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }
}

@media (max-width: 1280px) and (max-height: 900px) {
  #quemsomos #about {
    height: 48vh;
  }

  #quemsomos #about #about_text div {
    margin-top: 2rem;
    margin-left: 12rem;
  }

  #quemsomos #about #about_text h1 {
    font-size: 1.8rem;
  }

  #quemsomos #about #about_text p {
    font-size: 0.8rem;
    line-height: 1rem;
  }

  #quemsomos #about #about_text p:last-child {
    margin-top: 1rem;
  }

  #quemsomos #infobanner {
    height: 34vh;
  }

  #quemsomos #infobanner p {
    font-size: 0.94rem;
    line-height: 1.4rem;
  }

  #quemsomos #valuesbanner_inner {
    max-width: 78%;
  }

  #quemsomos #valuesbanner #valuesbanner_inner h3 {
    font-size: 1.2rem;
  }

  #quemsomos #valuesbanner p {
    font-size: 0.8rem;
    line-height: 1.2rem;
  }

  #quemsomos #mapbanner #maptext {
    margin-left: 11.4rem;
  }

  #quemsomos #mapbanner #maptext h1 {
    font-size: 1.8rem;
  }

  #quemsomos #mapbanner #maptext p {
    font-size: 0.8rem;
  }

  #quemsomos #mapbanner #imagemap {
    margin-left: -3rem;
    margin-top: 8rem;
    min-width: 30rem;
    max-width: 34rem;
    min-height: 30rem;
    max-height: 34rem;
  }
}

@media (max-width: 1280px) and (max-height: 625px) {
  #quemsomos #about {
    height: 58vh;
  }

  #quemsomos #about #about_text div {
    margin-top: 0;
  }

  #quemsomos #infobanner {
    height: 42vh;
  }

  #quemsomos #infobanner p {
    font-size: 0.86rem;
  }
}

@media (max-width: 1024px) and (max-height: 768px) {
  #quemsomos #about #about_text div {
    margin-left: 10rem;
  }

  #quemsomos #about #about_text h1 {
    font-size: 1.4rem;
  }

  #quemsomos #about #about_text p {
    font-size: 0.7rem;
    line-height: 1.1rem;
  }

  #quemsomos #infobanner {
    height: 30vh;
  }

  #quemsomos #infobanner h2 {
    font-size: 1.6rem;
    line-height: 2rem;
  }

  #quemsomos #infobanner p {
    font-size: 0.62rem;
    line-height: 1.3rem;
  }

  #quemsomos #valuesbanner #valuesbanner_inner h3 {
    font-size: 1rem;
  }

  #quemsomos #valuesbanner #valuesbanner_inner p {
    font-size: 0.7rem;
    line-height: 1.2rem;
  }

  #quemsomos #valuesbanner #valuesbanner_left {
    height: 24rem;
  }

  #quemsomos #valuesbanner #valuesbanner_center {
    margin-left: 2.8rem;
  }

  #quemsomos #valuesbanner #valuesbanner_right {
    margin-left: 1rem;
  }

  #quemsomos #mapbanner {
    height: 80vh;
  }

  #quemsomos #mapbanner #maptext {
    margin-left: 9.4rem;
    height: 26rem;
  }

  #quemsomos #mapbanner #maptext h1 {
    font-size: 1.4rem;
    margin-bottom: -0.2rem;
  }

  #quemsomos #mapbanner #maptext p {
    width: 76%;
    font-size: 0.6rem;
    line-height: 1rem;
  }

  #quemsomos #mapbanner #imagemap {
    margin-top: 4rem;
    margin-left: -12rem;
  }
}

@media (max-width: 1024px) and (max-height: 610px) {
  #quemsomos #about #about_text div {
    margin-left: 8.6rem;
  }

  #quemsomos #infobanner {
    height: 40vh;
  }

  #quemsomos #mapbanner {
    height: 100vh;
  }
}

@media (orientation: portrait) {
  #quemsomos #about {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  #quemsomos #about img {
    width: 100%;
    height: auto;
  }

  #quemsomos #about p {
    color: #9a9a9a;
  }

  #quemsomos #infobanner {
    height: auto;
    max-height: 50vh;
  }

  #quemsomos #infobanner div {
    min-width: 84%;
    max-width: 92%;
  }

  #quemsomos #infobanner h2 {
    margin: 0 auto;
    width: 90%;
  }

  #quemsomos #valuesbanner,
  #quemsomos #valuesbanner #valuesbanner_inner,
  #quemsomos #valuesbanner #valuesbanner_left,
  #quemsomos #valuesbanner #valuesbanner_left div,
  #quemsomos #valuesbanner #valuesbanner_center,
  #quemsomos #valuesbanner #valuesbanner_right {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
  }

  #quemsomos #valuesbanner {
    padding: 2rem 2rem;
  }

  #quemsomos #valuesbanner #valuesbanner_inner {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }

  #quemsomos #valuesbanner p {
    width: 100%;
  }

  #quemsomos #valuesbanner #valuesbanner_inner div {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    border-right: 0;
  }

  #quemsomos #mapbanner {
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem;
    height: auto;
  }

  #quemsomos #mapbanner p {
    color: #9a9a9a;
  }
}

@media (max-width: 480px) and (max-height: 900px) {
  #quemsomos #about {
    padding: 4rem 2rem;
  }

  #quemsomos #about img {
    margin: 1rem 0;
  }

  #quemsomos #about h1 {
    margin: 0;
    font-size: 1.4rem;
  }

  #quemsomos #about p {
    margin-top: 1.4rem;
    font-size: 0.8rem;
    line-height: 1.1rem;
  }

  #quemsomos #infobanner h2 {
    margin: 1rem auto;
    font-size: 1.6rem;
    line-height: 1.8rem;
  }

  #quemsomos #infobanner p {
    margin: 1rem auto;
    margin-top: 0;
    font-size: 0.8rem;
    line-height: 1rem;
  }

  :is(#quemsomos #valuesbanner, #quemsomos #mapbanner) :is(p) {
    font-size: 0.8rem !important;
    line-height: 1.2rem;
  }

  #quemsomos #valuesbanner #valuesbanner_left div:nth-child(1),
  #quemsomos #valuesbanner #valuesbanner_left div:nth-child(2) {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  }

  #quemsomos #mapbanner h1 {
    font-size: 1.6rem;
  }

  #quemsomos #mapbanner #imagemap {
    margin: 2rem auto;
    min-width: 18rem;
    max-width: 24rem;
    min-height: 18rem;
    max-height: 24rem;
    width: auto;
    height: auto;
  }
}

@media (max-width: 420px) and (max-height: 900px) {
  #quemsomos #about {
    padding: 2rem 2rem;
  }

  #quemsomos :is(p),
  #quemsomos #valuesbanner :is(p) {
    font-size: 0.8rem;
  }

  #quemsomos h1 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
  }

  #quemsomos #infobanner {
    padding: 2rem 0;
  }

  #quemsomos #infobanner h2 {
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 2rem;
  }

  #quemsomos #infobanner p {
    font-size: 1rem;
    line-height: 1.2rem;
    margin-bottom: 0;
  }

  #quemsomos #valuesbanner #valuesbanner_left div:nth-child(2) {
    padding-bottom: 1rem;
    border-bottom: 1px solid #fff;
  }
}

@media (max-width: 420px) and (max-height: 820px) {
  #quemsomos #infobanner h2 {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }

  #quemsomos #infobanner p {
    margin: 0;
    margin-top: 1rem;
    line-height: 1.2rem;
  }

  #quemsomos #mapbanner #imagemap {
    margin-left: -1rem;
  }
}

@media (max-width: 420px) and (max-height: 740px) {
  #quemsomos #mapbanner #imagemap {
    margin-left: 1rem;
  }
}

@media (max-width: 400px) and (max-height: 820px) {
  #quemsomos #infobanner p {
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) and (max-height: 670px) {
  #quemsomos #about p {
    margin-top: 1.4rem;
    font-size: 0.8rem;
    line-height: 1.1rem;
  }

  #quemsomos #infobanner h2 {
    font-size: 1.8rem;
  }

  #quemsomos #infobanner p {
    margin: 0;
    margin-top: 1rem;
    line-height: 1.2rem;
  }

  #quemsomos #valuesbanner {
    padding: 1rem 2rem;
  }

  #quemsomos #valuesbanner #valuesbanner_left div:nth-child(1),
  #quemsomos #valuesbanner #valuesbanner_left div:nth-child(2) {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  }

  #quemsomos #mapbanner h1 {
    font-size: 1.4rem;
  }

  #quemsomos #mapbanner #imagemap {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 50vh;
    background-size: fill;
  }

  #quemsomos #mapbanner p {
    font-size: 0.7rem;
    line-height: 0.9rem;
  }
}

@media (max-width: 400px) and (max-height: 568px) {
  #quemsomos #infobanner h2 {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }

  #quemsomos #infobanner p {
    margin: 0;
    margin-top: 1rem;
    font-size: 0.7rem;
    line-height: 1.1rem;
  }

  #quemsomos #mapbanner #imagemap {
    max-width: 20rem;
  }
}

/* Sucesso CSS */
#red {
  color: var(--red);
}

#sucesso {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 80vh;
  background-color: var(--gray);
}

#message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: auto;
  height: auto;
}

#message img {
  display: block;
  margin: 0 auto;
  align-self: center;
  width: 8rem;
  height: auto;
}

#message h1 {
  font-size: 3.6rem;
}

#message p {
  margin-top: 0;
  font-size: 2rem;
  line-height: 2.4rem;
}

@media (min-width: 2200px) and (max-height: 1440px) {
  #message img {
    width: 12rem;
  }

  #message h1 {
    font-size: 4rem;
  }

  #message p {
    margin-top: 0;
    font-size: 2.8rem;
    line-height: 3.4rem;
  }
}

@media (max-width: 1440px) and (max-height: 900px) {
  #message img {
    width: 8rem;
  }

  #message h1 {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }

  #message p {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

@media (max-width: 1366px) and (max-height: 768px) {
  #message img {
    width: 6rem;
  }

  #message h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  #message p {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

@media (max-width: 1280px) and (max-height: 800px) {
  #message img {
    width: 5rem;
  }

  #message h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  #message p {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

@media (max-width: 480px) and (max-height: 900px) {
  #message {
    margin: 0 2rem;
  }

  #message img {
    width: 4rem;
  }

  #message h1 {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }

  #message p {
    margin: 0 auto;
    width: 80%;
    font-size: 0.8rem;
    line-height: 1rem;
  }
}

@media (max-width: 420px) and (max-height: 740px) {
  #message {
    margin: 0 2rem;
  }

  #message img {
    width: 4rem;
  }

  #message h1 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  #message p {
    margin: 0 auto;
    width: 60%;
    font-size: 0.7rem;
    line-height: 1rem;
  }
}
