:root {
  --black-100: #1A1A1A;
  --grey: #515252;
  --black: #040406;
  --white: #ffffff;
  --orange: #F26122;
  --orange-red: #D84A0C;
  --grey-light: #F8FAFA;
  --grey-light2: #F0F3F5;
  --grey-light3: #e0e0e0;
  --orange-light: #FF7437;
  --midnight-blue: #002838;
  --bg-page: #ffffff;
  --bg-section: #f7f8fb;
  --text-strong: #0f172a;
  --text-body: #334155;
  --feature-maxw: 1200px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0, 0, 0, .08);
  --tabs-h:108px;
  --transition-fast:300ms;
  --transition-med:400ms;
  
}

html {
  scroll-behavior: smooth;
}


/* Reset global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Utilitários */

.i18n-preline {
  white-space: pre-line; 
}



.fade-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-element--visible {
  opacity: 1;
  transform: translateY(0);
}

.whiter {
  color: var(--white) !important;
}

.Transforme {
  color: var(--black) !important;
  ;
}

.orange {
  color: var(--orange) !important;
  ;
}

.black{
  color: var(--black) !important;
}

.btn__secondary {
  background-color: transparent !important;
  color: var(--orange) !important;
  border: 1px solid var(--orange) !important; 
}

.btn__secondary:hover {
  background-color: var(--midnight-blue) !important;
  color: var(--white) !important;
  border: 1px solid var(--midnight-blue) !important;

  .icon__contact__btn__secondary {
    background-color: var(--white);
    color: var(--black);
  }
}

.btn__large {
  padding: 8px 14px !important;
}

.icon__contact__btn__secondary {
  background-color: var(--orange);
  color: var(--white);
}

.ph-bold {
  font-weight: 800 !important;
}

.mgbt {
  margin-bottom: 24px !important;

}

.mgtop__hero {
  margin-top: 69.5px !important;
}


.mgr {
  margin-right: 24px !important;
}

.mgt {
  margin-top: 24px !important;

}

.mgtx {
  margin-top: 48px !important;

}

.mg {
  padding: 0rem 1rem;
}

.w100 {
  width: 100%;
}

.pdall {
  padding: 6rem 0rem !important;
}

.start {
  text-align: start !important;
  padding: 0% !important;
}


.underline {
  text-decoration: underline var(--orange);
}

.show__mobile {
  display: none;
}

.icon_xsm {
  font-size: 16px;
}

.icon_sm {
  font-size: 18px;
}

.icon_md {
  font-size: 24px;
}

.icon_lg {
  font-size: 32px;
}

.icon_xlg {
  font-size: 48px;
}

body {
  font-family: "Afacad", sans-serif;
  background-color: var(--white);
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 12px;
  /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: var(--grey-light);
  /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--orange-light);
  /* color of the scroll thumb */
  border-radius: 20px;
  /* roundness of the scroll thumb */
  border: 3px solid var(--grey-light);
  /* creates padding around scroll thumb */
}




/* Botões e estados */
.btnfo:focus {
  width: 26px;
  height: 19px;
  border-radius: 4px;
  box-shadow: 0 0 2px 2px rgba(231, 108, 7, 0.497);
}

.btnac:active {
  transform: scale(0.95);
}

.btn__primary {
  border: none;
  cursor: pointer;
  border-radius: 8px;
  width: fit-content;
  color: var(--white);
  text-decoration: none;
  transition: background 0.3s;
  background-color: var(--orange);

  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;

  color: var(--white);
  font-family: Saira;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; 
  letter-spacing: 0.24px;
}

.icon__contact__btn {
  aspect-ratio: 1/1;
  width: fit-content;
  font-size: 10px;  
  line-height: 0;
  border-radius: 50%;
  padding: 0 4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon__contact__btn__primary {
  background-color: var(--white);
  color: var(--black);
}

/* Card bases (desktop) */
.card-surface {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.card-surface--md {
  padding: 12px 16px;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid #F3F3F3;
  align-items: flex-start;
}

.card-surface--tight {
  padding: 12px 8px;
  gap: 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  align-items: center;
}

.card-surface--p24 {
  padding: 24px;
}

.card-surface--p32 {
  padding: 32px;
}

.card-surface--p16x24 {
  padding: 16px 24px;
}

.card-surface--gap24 {
  gap: 24px;
}

.card-surface--gap8 {
  gap: 8px;
}

.card-surface--radius16 {
  border-radius: 16px;
}

.card-surface--radius8 {
  border-radius: 8px;
}

.card-surface--radius24 {
  border-radius: 24px;
}

.card-surface--border-light {
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.card-surface--border-subtle {
  border: 1px solid #E5E3E3;
}

.card-surface--center {
  align-items: center;
}

.card-surface--start {
  align-items: flex-start;
}

.card-surface--shadow-soft {
  box-shadow: 1px 1px 16px 0 rgba(0, 0, 0, 0.08);
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #ccc;
  color: #666;
}

.btn__primary:hover {
  background-color: var(--midnight-blue);
}

.btn__primary:active {
  background-color: var(--orange-red);
}

/* Switch de idiomas */

.language-switch {
  gap: 24px;
  display: flex;
  align-items: center;
}

.language-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.language-switch__flagPT,
.language-switch__flagEN {
  width: 29.5px;
  height: 19px;
  border: none;
  outline: none;
  cursor: pointer;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}

.language-switch__flagPT {
  background-image: url('../img/br.svg');
}

.language-switch__flagEN {
  background-image: url('../img/eua.svg');
}


/* Navbar */
.navbar {
  top: 0;
  width: 100%;
  z-index: 10000;
  position: fixed;
  color: var(--black);
  background-color: var(--white);
}

.navbar a {
  cursor: pointer;
}

.navbar__container {
  display: flex;
  padding: 12.25px;
  margin: 0 auto;
  max-width: 1200px;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  width: 117px;
  height: fit-content;

  img {
    width: 100%;
  }
}

.navbar__menu {
  gap: 0;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.navbar__link {
  position: relative;
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; 
  font-family: 'Saira', sans-serif;
}

.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: var(--orange);
  transition: width 0.5s ease-in-out;
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__link:hover {
  color: var(--orange);
}

.navbar__link.active {
  border-radius: 1px;
  color: var(--orange);
  border-bottom: solid var(--orange) 0rem;
}


.navbar__toggle {
  border: none;
  display: none;
  cursor: pointer;
  background: none;
  font-size: 1.5rem;
  color: var(--orange);
}

.products-modal {
  top: 57px;
  left: 0;
  right: 0;
  z-index: 9;
  display: none;
  padding: 2rem;
  position: fixed;
  background: var(--grey-light2);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3 ease, transform 0.3s ease;

}

.products-modal__content {
  margin: auto;
  max-width: 800px;
  text-align: center;
}

.products-modal__button {
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-top: 1rem;
  padding: 12px 24px;
  border-radius: 12px;
  background-color: #f1592a;
}

.products-modal.show {
  display: block;
}

.balloon-container {
  gap: 16px;
  margin: 24px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: height 0.3s ease;
}

/* Balão */
.balloon {
  gap: 4px;
  z-index: 2;
  width: 320px;
  display: flex;
  padding: 16px;
  cursor: pointer;
  border-radius: 8px;
  position: relative;
  align-items: center;
  flex-direction: column;
  background-color: var(--white);
  transition: transform 0.3s ease;
  box-shadow: 0px 6px 8.2px 0px #E4E5E5;
}

/* Logo + texto */

.balloon__text {
  font-size: 0.875rem;
  color: var(--grey);
}

/* Pontinha apontando para o card */
.balloon::after {
  top: 50%;
  width: 0;
  height: 0;
  content: "";
  right: -12px;
  position: absolute;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 16px solid var(--white);
}


/* Card que aparece */
/* deixa o card invisível inicialmente */

/* .balloon__card {
  opacity: 0;
  width: 566px;
  max-height: 0;
  padding: 0 24px;
  overflow: hidden;
  border-radius: 10px;
  pointer-events: none;
  background-color: var(--white);
  box-shadow: 0px 6px 8.2px 0px #E4E5E5;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}  */

/* Card visivel */
.balloon__card {
  opacity: 1;
  width: 566px;
  max-height: 500px;
  padding: 24px;
  overflow: hidden;
  border-radius: 10px;
  pointer-events: auto;
  background-color: var(--white);
  box-shadow: 0px 6px 8.2px 0px #E4E5E5;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.bg__card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../img/bg_acesso.svg');
}

.ballon-card__title {
  text-align: start;
  font-size: 1rem;
  font-weight: 600;
  line-height: 120%;
  color: var(--black, #04151C);
}

.ballon-card__content {
  gap: 12px;
  display: flex;
  font-size: small;
  text-align: start;
  color: var(--grey);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.ballon-card__btn {
  display: flex;
  align-items: start;
}

/* CARD visível */
.balloon-container:hover .balloon__card {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
  padding: 24px;
  /* Mostra o padding ao expandir */
}

.balloon-container:hover .balloon {
  transform: translateX(-12px);
}

.creers__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.creers__cards {
  display: flex;
  flex-direction: row;
  width: 380px;
  height: 158px;
  padding: 24px;
  gap: 24px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 8.2px 0 #E4E5E5;

}

.creers__cards-title {
  color: var(--black);
  font-family: Afacad;
  font-size: 32px !important;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
}

/*Estrutura das sections*/

.section__container {
  margin: 0 auto;
  width: 100%;
  padding: 80px 12.25px;
  align-content: center;
  max-width: 1200px;
}

.section_content {
  gap: 2rem;
  display: flex;
  margin: 0 auto;
  width: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.section_content--horizontal {
  flex-direction: row;
  position: relative;
}

.section__container-title {
  flex: 1 1 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section__title {
  line-height: 1;
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.section__title--large {
  text-align: center;
  margin-bottom: 1rem;

  font-family: Exo;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.12px;
}

.section__text {
  padding: 0 15%;
  text-align: center;
  color: var(--grey);
  font-family: Saira;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.section__text--start {
  text-align: start;
  padding: 0%;
  width: 100%;
}

.section__bg-dark {
  background: var(--black);
}

.media {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}


/*Modal*/

.body--no-scroll {
  overflow: hidden;
  height: 100vh;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 1000;
}

.modal {
  position: fixed;
  top: 70px;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
  padding: 3rem 1rem;
  overflow-y: auto;
  z-index: 99998;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  display: flex;
  flex-direction: column;

}

.section__text--modal {
  padding: 0;
  text-align: center;
  font-size: 1rem;

}

.modal--active {
  transform: translateX(0%);
}

.modal--hidden {
  transform: translateX(100%);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--orange);
  transition: color 0.2s ease;
}

.modal__close:hover {
  color: var(--orange-red);
}

.title__large {
  font-size: 1.7rem;
}

.section__text--feedback {
  padding: 0;
  text-align: center;
  font-size: 1rem;

}

.form__row {
  display: flex;
  gap: 1rem;

}

.form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}

.form__label {
  margin-bottom: 0.25rem;
  color: #04151C;
  font-family: Saira;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form__input,
.form__textarea {
  width: 100%;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 1rem;
  height: 41px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #FFF;
  font-family: Saira;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder,
.form__input::-webkit-input-placeholder, .form__textarea::-webkit-input-placeholder,
.form__input::-moz-placeholder, .form__textarea::-moz-placeholder,
.form__input:-ms-input-placeholder, .form__textarea:-ms-input-placeholder,
.form__input::-ms-input-placeholder, .form__textarea::-ms-input-placeholder {
  color: rgba(4, 21, 28, 0.30);
  font-family: Saira;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form__select {
  font-family: Saira;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgba(4, 21, 28, 0.90);
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

.form__select option[disabled][selected][hidden] {
  color: rgba(4, 21, 28, 0.30); 
}

select {
  appearance: none;
  /* Remove estilo nativo */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background-color: #fff;
  color: var(--grey);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iIzUxNTI1MiIgdmlld0JveD0iMCAwIDI1NiAyNTYiPjxwYXRoIGQ9Ik0yMTYuNDksMTA0LjQ5bC04MCw4MGExMiwxMiwwLDAsMS0xNywwbC04MC04MGExMiwxMiwwLDAsMSwxNy0xN0wxMjgsMTU5bDcxLjUxLTcxLjUyYTEyLDEyLDAsMCwxLDE3LDE3WiI+PC9wYXRoPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

select:hover {
  outline: none;
  border-color: var(--orange-light);
  box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

input:hover {
  outline: none;
  border-color: var(--orange-light);
  box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

textarea:hover {
  outline: none;
  border-color: var(--orange-light);
  box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

.form__phone {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.form__input--ddd {
  width: 60px;
}


.form__textarea {
  resize: vertical;
  min-height: 60px;
}

.form__radio {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  color: var(--orange);
  width: fit-content;
  font-family: Saira;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: 1.5rem;
}

.form__radio--position {
  display: flex;
  justify-content: flex-start;
}

.count_chars {
  text-align: end;
  color: var(--black);
  text-align: right;
  font-family: Saira;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form__privacidade {
  font-size: 0.8rem;
  margin-top: 1rem;
}

.form__link {
  color: var(--orange);
  text-decoration: underline;
}

.form__error {
  color: var(--orange-red);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

input[type='radio'] {
  accent-color: var(--orange);
}

/*Contact*/

.bg__contact {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../img/map_background.png');
  padding-bottom: 150px;
}

.bg__contact_dark {
  position: relative;
  padding-bottom: 150px;
  background: rgba(0, 0, 0, 0.72);
  overflow: hidden;
}

.bg__contact_dark::before {
  content: "";
  position: absolute;
  inset: 0; /* cobre todo o container */
  background-image: url('../img/background_contact_dark.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4; /* controla a opacidade só do fundo */
}

.text_color {
  color: var(--white) !important;
}

.contact__form {
  display: flex;
  padding: 40px;
  flex-direction: column;
  gap: 24px;
  border-radius: 25.259px;
  border: 1.263px solid #E4E4E4;
  background: var(--grey-light, --white);
  box-shadow: 0px 0px 30.311px 6.315px rgba(0, 0, 0, 0.05);
}

.section_content--contact {
  max-width: 1200px;
  gap: 3rem;
}

.section_content--copy {
  max-width: 1200px;
  justify-content: center;
  gap: 6rem;
  color: #D0D5DD;
  text-align: center;
  font-family: Saira;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
}

.section_content--footer {
  max-width: 1200px;
  gap: 3rem;
  padding: 0 32px;
  margin-bottom: 64px;
}

.section__container-title--contact {
  align-self: self-start !important;
  flex: 1 1 0;
}

.cidade__title {
  color: #04151C;
  font-family: "Exo 2";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-wrap: nowrap;
}

.endereco__title {
  color: #04151C;
  font-family: Saira;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; 
}

.citie_content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}

.gosht__button {
  color: var(--orange);
  font-family: Saira;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; 
  letter-spacing: 0.24px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.gosht__button i {
  background-color: var(--orange);
  color: var(--white);
  border-radius: 50%;
  padding: 4px;
  aspect-ratio: 1/1;
}

.contact_submit {
  display: flex;
  justify-content: flex-start;
}

footer {
  background-image: url('./../img/Footer.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

footer .section__container {
  width: 100%;
  padding: 2rem;
}

.link {
  text-decoration: none;
  color: #EAECF0;
  font-family: Saira;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.32px;
}

.link:hover {
  color: var(--orange-light);
}

.footer__logo {
  width: 160px;
  height: 42px;
  background-size: cover;
  background-image: url('../img/logos/logo_light.svg');
}

.footer__title {
  margin: 12px 0px;
  width: 296px;
  font-size: 1rem;
  color: var(--white);
}

.footer__menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
  align-self: start;
}

.footer__menu-title {
  color: var(--white);
  font-family: Saira;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.footer__menu--content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
  min-width: 192px;
}

.social {
  display: flex;
  font-size: 32px;
  gap: 1rem;
}

#mercados {
  transition: scroll-margin-top 0.3s ease;
}

.circle-orange {
  aspect-ratio: 1/1;
  width: 10px;
  display: flex;
  border-radius: 50%;
  background-color: var(--orange);
}

.container-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.section__title_content {
  color: #3D3D3D;
  text-align: center;
  font-family: Saira;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 4.2px;
  text-transform: uppercase;
}

.section__title_content--large {
  color: var(--white);
  text-align: center;
  font-family: Saira;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 133%;
  letter-spacing: 4.96px;    
  text-transform: uppercase;
}

.section_title_large {
  color: var(--black-100);
  text-align: center;
  font-family: "Exo 2";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.text_black_100 {
  color: var(--black-100);
}

.text_highlight {
  color: var(--orange);
}

.container-section-title--contact {
  justify-content: flex-start;
  margin-bottom: 24px;
}

.title__contact {
  color: var(--black);
  text-align: center;
  font-family: "Exo 2";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 24px;
}

.section__title_content--contact {
  color: #888;
}

.section__text--contact {
  color: rgba(0, 0, 0, 0.70);
  margin-bottom: 48px;
}

.cities__container {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 48px;
  max-width: 280px;
  width: 100%;
}

.btn__contact {
  padding: 8px 14px;
}

.container_privacy_policy {
  color: var(--black);
  font-family: Saira;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; 
}

.policy_link {
  color: #04151C;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* Collapse Component */

.collapse-component {
  width: 100%;
}

.collapse-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

.collapse-card {
  display: flex;
  padding: 16px 24px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  border-radius: 8px;
  border: 1px dashed rgba(242, 97, 34, 0.32);
}

.collapse-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px;
}

.collapse-card__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  display: none;
}

.collapse-card--open .collapse-card__content {
  max-height: 1000px;
  transition: max-height 0.3s ease-in;
  display: inline-block;
}

.collapse-card__title {
  color: var(--black-100);
  font-family: Saira;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.collapse-card__icon {
  color: var(--orange);
  font-family: Saira;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  background-color: rgba(242, 97, 34, 0.08);
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 4px;
  line-height: 0;
  border: 1px dashed rgba(242, 97, 34, 0.32);
}

.container-logo-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

.mgbt-large {
  margin-bottom: 56px;
}

.text-center {
  text-align: center;
}

.mgt-large {
  margin-top: 48px;
}

.section__container-left {
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.section__container-left .section__title--large {
  text-align: left;
}

.section__text--large {
  color: var(--grey);
  font-family: Saira;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.2px;
}

.text-left {
  text-align: start;
  padding: 0;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* logo abaixo do link */
  left: 0;
  background: white;
  border: 1px solid #ccc;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  min-width: 200px;
  z-index: 1000;
}

.dropdown-menu li {
  padding: 8px 16px;
}

.dropdown-menu li a {
  display: block;
  color: #333;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #f0f0f0;
}

.actions_hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  width: 100%;
}

@media (width <=1023px) {

  .mgtop__hero {
    margin-top: 40px !important;
  }

  .navbar__container {

    padding: 1rem;
  }

  .navbar__backdrop {
    left: 0;
    right: 0;
    bottom: 0;
    top: 58px !important;
    opacity: 0;
    z-index: 9998 !important;
    position: fixed !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease-in-out !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
  }

  /* Ativo */
  .navbar__backdrop--active {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .navbar__menu {
    position: fixed;
    top: 57px;
    right: 0;
    bottom: 0;
    opacity: 0;
    width: 100% !important;
    z-index: 99998;
    display: flex;
    max-width: 500px !important;
    align-items: flex-start;
    pointer-events: none;
    flex-direction: column;
    transform: translateX(100%);
    background-color: var(--midnight-blue);
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease-in-out, opacity 0.2s ease-in-out;
  }


  .navbar__menu--active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Links */
  .navbar__link {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    width: 500px;
    text-align: left;
    border-bottom: solid var(--black) 0.1rem;
  }

  .navbar__link:hover {
    background-color: var(--orange-red);
    color: var(--white);
  }


  #navbar__toggle {
    width: 30px;
    height: 16px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
  }

  #navbar__toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #d3531a;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }

  #navbar__toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 50%;
    background: var(--orange);
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }

  #navbar__toggle span:nth-child(even) {
    left: 28%;
    border-radius: px;
  }

  #navbar__toggle span:nth-child(odd) {
    left: 0px;
    border-radius: 9px 0 0 9px;
  }

  #navbar__toggle span:nth-child(1),
  #navbar__toggle span:nth-child(2) {
    top: 0px;
  }

  #navbar__toggle span:nth-child(3),
  #navbar__toggle span:nth-child(4) {
    top: 8px;
  }

  #navbar__toggle span:nth-child(5),
  #navbar__toggle span:nth-child(6) {
    top: 16px;
  }

  #navbar__toggle.open span:nth-child(1),
  #navbar__toggle.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #navbar__toggle.open span:nth-child(2),
  #navbar__toggle.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  #navbar__toggle.open span:nth-child(1) {
    left: 5px;
    top: 7px;
  }

  #navbar__toggle.open span:nth-child(2) {
    left: calc(50% - 5px);
    top: 7px;
  }

  #navbar__toggle.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
  }

  #navbar__toggle.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
  }

  #navbar__toggle.open span:nth-child(5) {
    left: 5px;
    top: 12px;
  }

  #navbar__toggle.open span:nth-child(6) {
    left: calc(50% - 5px);
    top: 12px;
  }

  .navbar__logo {
    width: 98px;
    height: 24px;
  }

  .language-switch {
    padding: 0.5rem 1rem;
  }

  .hidden {
    display: none !important;
  }

  .show__mobile {
    display: block !important;
  }

  .section_content--contact {
    gap: 3rem;
  }

  .section__container {
    padding: 6rem 1.5rem;
    box-sizing: border-box;
  }

  .section_content--horizontal {
    flex-direction: column;
    margin: 24px 0px;

  }

  .section__container-title {
    align-items: center;
  }

  .section__title--large {
    line-height: 0.8;
    font-size: 2.5rem;
    text-align: center !important;

  }

  .section__text {
    padding: 0%;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center !important;
  }

  .btn__primary {
    font-size: 0.99rem;
    width: 100%;
    margin: 1.5rem 0rem;
  }

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

  .stats {
    gap: 20px !important;
    flex-direction: column !important;
  }

  .stats__divider {
    width: 100% !important;
    height: 1px !important;
    background: linear-gradient(to left right, #ffffff2d, #ffffff) !important;
  }

  .card {
    max-width: 100% !important;
  }

  .card__container {
    width: 100% !important;
    flex: 0px !important;
  }

  .markets__group {
    gap: 3rem;
    max-width: 100%;
  }

  .markets__group--reverse {
    flex-wrap: wrap-reverse !important;
  }

  .markets__group--title {
    text-align: center !important;
  }

  .markets__description {
    text-align: center !important;
    padding: 0rem !important;
  }

  .options-cards__description {
    width: 85% !important;

  }

  .pdall {
    padding: 6rem 0.5rem !important;
  }

  .pd_md {
    padding: 0px 24px;
  }


  .endereco__title {
    padding: 0 !important;
  }

  .form__row {
    flex-direction: column;
  }

  .contact__form {
    padding: 1.5rem;
  }

  .bg__config {
    width: 100% !important;
    height: 300px !important;
  }

  footer .section__container {
    padding: 0.5rem;
  }

  .footer__menu {
    align-self: center;
    flex-direction: column;
    text-align: center;

  }

  .footer__menu-title {
    font-size: 2rem;
  }

  .footer__logo {
    width: inherit;
    height: 42px;
    background-size: inherit;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .copy {
    padding: 2% 17%;
  }

  .footer__title {
    text-align: center;
    padding: 5%;
  }

  .social {
    justify-content: center;
    margin-bottom: 0 !important;
  }

  .footer__center {
    gap: 1.5rem !important;
    text-align: center;
  }

  .modal {
    width: 100%;
    max-width: 100%;
    padding: 5rem 1rem;
    top: 57px;
  }

  .modal__close {
    top: 0.5rem;
    right: 1.8rem;
    font-size: 1.2rem;
  }

  .form__input,
  .form__textarea,
  .form__group select {
    font-size: 1rem;
    padding: 0.5rem;
  }

  .bg__feedback {
    background-size: cover !important;

  }

  .section-categorias__container {
    flex-direction: column;
  }

  .menu-categorias__item--active::after {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 820px) {

  .mgtop__hero {
    margin-top: 40px !important;
  }


  .section-categorias__container {
    flex-direction: column;
  }

  .menu-categorias__item--active::after {
    display: none;
  }

  .bg__feedback {
    background-size: cover !important;

  }

  /* Estilos para telas entre 769px e 1024px */
  .section__title--large {
    line-height: 0.8;
    font-size: 3rem;
    text-align: center !important;
    padding: 0% 5%;
    margin-bottom: 2rem !important;
  }

  .section__text {
    padding: 0% 5%;
    font-size: 1.5rem;
    line-height: 1.2;
    text-align: center !important;
  }

  .card {
    gap: 5rem;

  }

  .markets__group {

    width: 100%;
  }

  .markets__group--title {
    font-size: 1.5rem;
    text-align: center;
  }

  .bg__config {
    width: inherit !important;
    height: 400px !important;
  }

  .options-cards__title {
    width: 250px;
  }

  .footer__menu {
    align-self: center;
    flex-direction: row;
    text-align: start;
    margin-bottom: 24px;
  }

}
