@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Encode+Sans:wght@400;500;700&family=Montserrat:wght@400&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Encode+Sans:wght@400;700&display=swap);
@charset "UTF-8";
/**
 * Arquivo base do SCSS
 * @version 1.1.0
 */
/* ============= BASE ============= */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

strong {
  font-weight: bold;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

input,
textarea {
  outline: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  font-size: 62.5%;
}

html,
body {
  width: 100%;
  min-height: 100%;
  font-size: 1.6rem;
}

button,
input,
optgroup,
select,
textarea,
html input[type=button],
input[type=reset],
input[type=submit],
button[disabled],
html input[disabled],
button::-moz-focus-inner,
input::-moz-focus-inner,
input[type=checkbox],
input[type=radio],
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button,
input[type=search],
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  border: none;
  background-image: none;
  background-color: transparent;
  box-shadow: none;
}

html {
  font-size: 62.5%;
}
@media (max-width: 900px) {
  html {
    font-size: 50%;
  }
}

html,
body {
  width: 100%;
  font-family: "Roboto", sans-serif;
  color: #000000;
}

body {
  font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Times New Roman", sans-serif;
  color: #000000;
  font-size: 4rem;
}

.text--ligther {
  font-weight: lighter;
}
.text--regular {
  font-weight: normal;
}
.text--bold {
  font-weight: bold;
}
.text--primary {
  color: #000000;
}
.text--secondary {
  color: #ffffff;
}

/* ============= FONTS ============ */
/* =========== SECTIONS =========== */
/* Importação da fonte Montserrat */
.header {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1000;
  padding: 0 32px;
  top: 32px;
  /* Logo */
  /* Menu Principal */
  /* Estilos específicos para página do blog */
  /* Botões de Ação */
}
.header__nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.header__logo {
  flex-shrink: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__logo__link {
  display: block;
  text-decoration: none;
}
.header__logo__image {
  height: 40px;
  width: auto;
  transition: opacity 0.3s ease;
}
.header__menu {
  flex: 1;
  display: flex;
  justify-content: end;
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__menu__container {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(15, 27, 55, 0.6);
  border-radius: 200px;
  padding: 8px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__menu__list {
  display: flex;
  gap: 16px;
  align-items: center;
}
.header__menu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 200px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #e9f0f3;
  white-space: nowrap;
  position: relative;
}
.header__menu__item:hover {
  background: #e9f0f3;
  color: #1c2847;
}
.header__menu__item--dropdown {
  cursor: pointer;
  gap: 6px;
}
.header__menu__dropdown-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: currentColor;
}
.header__menu__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 1001;
  min-width: 200px;
  margin-top: 4px;
}
.header__menu__dropdown__list {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(15, 27, 55, 0.95);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header__menu__dropdown__item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #e9f0f3;
  white-space: nowrap;
}
.header__menu__dropdown__item:hover {
  background: rgba(233, 240, 243, 0.1);
  color: #e9f0f3;
}
.header__menu__dropdown__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.header__menu__item--dropdown:hover .header__menu__dropdown, .header__menu__item--dropdown.active .header__menu__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.header__menu__item--dropdown:hover .header__menu__dropdown-icon, .header__menu__item--dropdown.active .header__menu__dropdown-icon {
  transform: rotate(180deg);
}
.header__menu__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.header--blog .header__menu__container {
  background: #e9f0f3;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
.header--blog .header__menu__item {
  color: #1c2847;
}
.header--blog .header__menu__item:hover {
  background: rgba(28, 40, 71, 0.1);
  color: #1c2847;
}
.header--blog .header__menu__dropdown-icon {
  color: #1c2847;
}
.header--blog .header__menu__item--dropdown:hover .header__menu__dropdown-icon,
.header--blog .header__menu__item--dropdown.active .header__menu__dropdown-icon {
  color: #1c2847;
}
.header__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border: none;
  border-radius: 200px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.header__cta--primary {
  background: #44aadf;
  color: #e9f0f3;
  height: 55px;
}
.header__cta--primary:hover {
  background: #3a9bcc;
}
.header__cta--whatsapp {
  background: #61d53e;
  color: white;
  width: 48px;
  height: 48px;
  padding: 0;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.header__cta--whatsapp:hover {
  background: #56c035;
  transform: translateY(-2px);
  box-shadow: 0px 6px 25px 0px rgba(0, 0, 0, 0.15);
}
.header__cta__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.header__cta__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Efeitos de scroll */
.header--scrolled {
  transition: all 0.6s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 32px;
  /* Menu centralizado no scroll */
  /* Logo escondido no scroll */
  /* Menu centralizado e sempre visível */
  /* Manter cores do blog quando scrolled na página do blog */
  /* Botões de ação escondidos no scroll */
}
.header--scrolled .header__nav {
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.header--scrolled .header__logo {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.header--scrolled .header__menu {
  justify-content: center;
  flex: none;
  display: flex;
  transform: translateX(0);
}
.header--scrolled .header__menu__container {
  background: rgba(15, 27, 55, 0.8);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  transform: scale(1);
}
.header--scrolled.header--blog .header__menu__container {
  background: #e9f0f3;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
.header--scrolled.header--blog .header__menu__item {
  color: #1c2847;
}
.header--scrolled.header--blog .header__menu__item:hover {
  background: rgba(28, 40, 71, 0.1);
  color: #1c2847;
}
.header--scrolled.header--blog .header__menu__dropdown-icon {
  color: #1c2847;
}
.header--scrolled.header--blog .header__menu__item--dropdown:hover .header__menu__dropdown-icon,
.header--scrolled.header--blog .header__menu__item--dropdown.active .header__menu__dropdown-icon {
  color: #1c2847;
}
.header--scrolled .header__actions {
  transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.header--hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

/* Responsividade */
@media (max-width: 1024px) {
  .header {
    padding: 24px 20px;
    /* Ajustes para o comportamento de scroll em tablets */
  }
  .header__menu__list {
    gap: 12px;
  }
  .header__menu__item {
    padding: 10px 14px;
    font-size: 13px;
  }
  .header__cta {
    padding: 14px 20px;
    font-size: 13px;
  }
  .header__cta--primary {
    height: 50px;
  }
  .header__cta--whatsapp {
    width: 44px;
    height: 44px;
  }
  .header--scrolled {
    padding: 12px 20px;
  }
  .header--scrolled .header__nav {
    max-width: 100%;
  }
  .header--scrolled .header__menu__container {
    padding: 6px;
  }
  .header--scrolled .header__menu__item {
    padding: 8px 12px;
    font-size: 12px;
  }
  .header--scrolled .header__menu__dropdown {
    min-width: 180px;
  }
  .header--scrolled .header__menu__dropdown__item {
    padding: 8px 12px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 20px 16px;
    display: none;
  }
}
/* ========================================
   HEADER MOBILE - BEM METHODOLOGY
   ======================================== */
/* Background com blur quando não estiver no topo - aplicado no header inteiro */
.header__mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 16px 20px;
  z-index: 1001;
  background: transparent;
  transition: all 0.3s ease;
  /* Layout flex para logo e botão */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Efeito de blur quando há scroll */
  /* Logo Mobile */
  /* Botão Hamburger */
  /* Overlay do menu */
  /* Menu mobile */
}
.header__mobile.header--scrolled {
  background: rgba(28, 40, 71, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header__mobile__logo__link {
  display: inline-block;
  text-decoration: none;
}
.header__mobile__logo__image {
  height: 32px;
  width: auto;
}
.header__mobile__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 67px;
  height: 56px;
  background: #1c2847;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  /* Círculo interno */
  /* Estado ativo do hamburger */
}
.header__mobile__toggle:focus {
  outline: none;
}
.header__mobile__toggle:hover {
  background: #2a3a5a;
  transform: scale(1.05);
}
.header__mobile__toggle::before {
  content: "";
  position: absolute;
  width: 51px;
  height: 40px;
  background: #e9f0f3;
  border-radius: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.header__mobile__toggle__line {
  width: 16px;
  height: 2px;
  background: #1c2847;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  position: relative;
  z-index: 2;
}
.header__mobile__toggle__line:nth-child(1) {
  margin-bottom: 4px;
}
.header__mobile__toggle__line:nth-child(2) {
  margin-bottom: 4px;
}
.header__mobile__toggle__line:nth-child(3) {
  margin-bottom: 0;
}
.header__mobile__toggle--active {
  background: #1c2847;
}
.header__mobile__toggle--active::before {
  background: #e9f0f3;
}
.header__mobile__toggle--active .header__mobile__toggle__line {
  background: #1c2847;
}
.header__mobile__toggle--active .header__mobile__toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.header__mobile__toggle--active .header__mobile__toggle__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__mobile__toggle--active .header__mobile__toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.header__mobile__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
.header__mobile__overlay--active {
  opacity: 1;
  visibility: visible;
}
.header__mobile__menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70vh;
  background: linear-gradient(135deg, #0f1b37 0%, #1c2847 100%);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 100vw;
  /* Header do menu mobile */
  /* Logo no menu mobile */
  /* Botão fechar */
  /* Lista do menu */
  /* Ações do menu mobile */
}
.header__mobile__menu--active {
  transform: translateY(0);
}
.header__mobile__menu__content {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.header__mobile__menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 32px;
  border-bottom: 1px solid rgba(233, 240, 243, 0.1);
}
.header__mobile__menu__logo__link {
  display: inline-block;
  text-decoration: none;
}
.header__mobile__menu__logo__image {
  height: 40px;
  width: auto;
}
.header__mobile__menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(233, 240, 243, 0.1);
  border: 1px solid rgba(233, 240, 243, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.header__mobile__menu__close:focus {
  outline: none;
}
.header__mobile__menu__close:hover {
  background: rgba(233, 240, 243, 0.15);
  border-color: rgba(233, 240, 243, 0.3);
}
.header__mobile__menu__close__icon {
  width: 20px;
  height: 20px;
  color: #e9f0f3;
  stroke: currentColor;
}
.header__mobile__menu__list {
  list-style: none;
  margin: 0;
  padding: 24px 24px 0;
  flex: 1;
}
.header__mobile__menu__item {
  margin-bottom: 12px;
}
.header__mobile__menu__item--dropdown {
  margin-bottom: 0;
}
.header__mobile__menu__item--dropdown.active .header__mobile__menu__dropdown-icon {
  transform: rotate(180deg) !important;
}
.header__mobile__menu__item--dropdown.active .header__mobile__menu__dropdown {
  display: block !important;
  max-height: 1000px !important;
  padding: 8px 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
}
.header__mobile__menu__item--dropdown.active .header__mobile__menu__dropdown__item {
  opacity: 1 !important;
  display: block !important;
}
.header__mobile__menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
}
.header__mobile__menu__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(68, 170, 223, 0.1);
  transition: width 0.3s ease;
  z-index: -1;
}
.header__mobile__menu__link:hover {
  background: rgba(68, 170, 223, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(68, 170, 223, 0.2);
}
.header__mobile__menu__link:hover::before {
  width: 100%;
}
.header__mobile__menu__link--dropdown {
  justify-content: space-between;
  gap: 12px;
}
.header__mobile__menu__dropdown-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: currentColor;
}
.header__mobile__menu__dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin-top: 8px;
  transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s ease;
}
.header__mobile__menu__dropdown__item {
  margin: 0;
  padding: 0 24px;
}
.header__mobile__menu__dropdown__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  margin: 4px 0;
}
.header__mobile__menu__dropdown__link:hover {
  background: rgba(68, 170, 223, 0.15);
  transform: translateX(4px);
}
.header__mobile__menu__dropdown__text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(233, 240, 243, 0.9);
  line-height: 1.3;
  text-align: center;
  width: 100%;
}
.header__mobile__menu__text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #e9f0f3;
  line-height: 1.3;
  text-align: center;
  width: 100%;
}
.header__mobile__menu__actions {
  margin-top: auto;
  padding: 24px;
  border-top: 1px solid rgba(233, 240, 243, 0.1);
}
.header__mobile__menu__cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: #44aadf;
  border: none;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #e9f0f3;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.header__mobile__menu__cta:hover {
  background: #3a9bcc;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(68, 170, 223, 0.3);
}
.header__mobile__menu__cta__text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #e9f0f3;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
/* Mobile First - Mostrar apenas em mobile */
@media (max-width: 768px) {
  .header__mobile {
    display: flex !important;
  }
  /* Ajustes para telas muito pequenas */
}
@media (max-width: 768px) and (max-width: 480px) {
  .header__mobile__menu {
    width: 100vw;
    max-width: 100vw;
    left: 0;
    right: 0;
    overflow-x: hidden;
  }
  .header__mobile__menu__content {
    padding: 24px 20px;
  }
  .header__mobile__menu__logo {
    margin-bottom: 10px;
  }
  .header__mobile__menu__logo__image {
    height: 36px;
  }
  .header__mobile__menu__link {
    padding: 14px 16px;
  }
  .header__mobile__menu__text {
    font-size: 2.3rem;
  }
  .header__mobile__menu__cta {
    padding: 14px 20px;
    font-size: 15px;
  }
}
/* Esconder em desktop */
@media (min-width: 769px) {
  .header__mobile {
    display: none !important;
  }
}
@keyframes slideInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideOutUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOutOverlay {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* ========================================
   ESTADOS DE ACESSIBILIDADE
   ======================================== */
.header__mobile__toggle:focus-visible {
  outline: 2px solid #44aadf;
  outline-offset: 2px;
}
.header__mobile__menu__link:focus-visible {
  outline: 2px solid #44aadf;
  outline-offset: 2px;
}
.header__mobile__menu__cta:focus-visible {
  outline: 2px solid #e9f0f3;
  outline-offset: 2px;
}

/* ========================================
   PREVENÇÃO DE SCROLL NO BODY
   ======================================== */
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Footer */
.footer {
  background-color: white;
  position: relative;
}

/* Seção de Contato */
.footer__contact {
  padding: 32px;
}

.footer__contact__content {
  display: flex;
  gap: 8px;
  margin: 0 auto;
}

.footer__contact__image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
}

.footer__contact__image-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.footer__contact__form {
  flex: 2;
  background-color: #1c2847;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.footer__contact__form-bg {
  position: absolute;
  top: -126px;
  right: -540px;
  width: 886px;
  height: 493px;
  opacity: 0.1;
}

.footer__contact__map {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer__contact__form-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 112px;
}

.footer__contact__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__contact__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  color: #e9f0f3;
  margin: 0;
}
.footer__contact__title span {
  display: block;
}

.footer__contact__description {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #c6d7df;
  margin: 0;
  max-width: 540px;
}

.footer__contact__form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__contact__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__contact__step {
  display: none;
}
.footer__contact__step--active {
  display: block;
}

.footer__contact__fields-row {
  display: flex;
  gap: 8px;
}

.footer__contact__field {
  flex: 1;
  position: relative;
}

.footer__contact__field .error {
  display: block;
  font-family: "Encode Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #ff6b6b;
  margin-top: 4px;
  padding-left: 24px;
}

.footer__contact__input {
  width: 100%;
  padding: 16px 24px;
  background-color: #2c3c67;
  border: none;
  border-radius: 200px;
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #e9f0f3;
  transition: all 0.3s ease;
}
.footer__contact__input::-moz-placeholder {
  color: #e9f0f3;
  opacity: 1;
}
.footer__contact__input::placeholder {
  color: #e9f0f3;
  opacity: 1;
}
.footer__contact__input:focus {
  outline: none;
  background-color: #3a4a7a;
}
.footer__contact__input:hover {
  background-color: #3a4a7a;
}

.footer__contact__form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__contact__submit {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  background-color: #44aadf;
  border: none;
  border-radius: 200px;
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #e9f0f3;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 250px;
}
.footer__contact__submit:hover {
  background-color: #3a9bcc;
  transform: translateY(-2px);
}

.footer__contact__submit__icon {
  width: 18px;
  height: 18px;
  color: #e9f0f3;
}

.footer__contact__logo {
  width: 181px;
  height: 40px;
}
.footer__contact__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Seção Principal do Rodapé */
.footer__main {
  padding: 80px;
}

.footer__main__content {
  display: flex;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__column__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #1c2847;
  margin: 0;
}

.footer__column__description {
  font-family: "Encode Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #677189;
  margin: 0;
}

/* Redes Sociais */
.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__social__link {
  width: 48px;
  height: 48px;
  background-color: #e9f0f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer__social__link:hover {
  background-color: #44aadf;
  transform: translateY(-2px);
}
.footer__social__link:hover svg {
  color: white;
}
.footer__social__link svg {
  width: 24px;
  height: 24px;
  color: #1c2847;
  transition: color 0.3s ease;
}

/* Endereços */
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__address__country {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #44aadf;
  margin: 0;
}

.footer__address__text {
  font-family: "Encode Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #677189;
  margin: 0;
}

/* Políticas */
.footer__policies {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__policy__link {
  font-family: "Encode Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #44aadf;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__policy__link:hover {
  color: #1c2847;
}

.footer__cnpj p {
  font-family: "Encode Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #677189;
  margin: 0;
}
.footer__cnpj p strong {
  font-weight: 700;
}

/* Logo Final */
.footer__logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo img {
  width: 100%;
}

/* Responsividade */
@media (max-width: 1024px) {
  .footer__contact__content {
    flex-direction: column;
    gap: 24px;
  }
  .footer__contact__image {
    flex: none;
    height: 300px;
  }
  .footer__contact__form-content {
    gap: 60px;
  }
  .footer__main__content {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer__contact {
    padding: 20px;
  }
  .footer__contact__image {
    height: 250px;
  }
  .footer__contact__form {
    padding: 24px;
  }
  .footer__contact__form-content {
    gap: 40px;
  }
  .footer__contact__title {
    font-size: 28px;
    line-height: 36px;
  }
  .footer__contact__fields-row {
    flex-direction: column;
    gap: 16px;
  }
  .footer__contact__form-actions {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .footer__contact__submit {
    width: 100%;
    justify-content: center;
  }
  .footer__main {
    padding: 40px 20px;
  }
  .footer__main__content {
    flex-direction: column;
    gap: 32px;
  }
  .footer__social {
    justify-content: center;
  }
  .footer__logo img {
    height: 40px;
  }
}
/* =========== PARTIALS =========== */
/* Banner Section */
.home__banner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 120px;
  background-color: #1c2847;
}
.home__banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home__banner__background__mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}
.home__banner__background-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 98.11% 0%;
  background-repeat: no-repeat;
}
.home__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(255deg, rgba(28, 40, 71, 0) 40.18%, rgba(28, 40, 71, 0.8) 64.64%);
}
.home__banner__background-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.home__banner__middle-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.home__banner__middle-image {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.home__banner__foreground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}
.home__banner__foreground-image {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.home__banner__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.home__banner__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
}
.home__banner__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  color: white;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home__banner__title span {
  display: block;
}
.home__banner__description {
  font-family: "Encode Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 500px;
}
.home__banner__actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.home__banner__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: none;
  border-radius: 200px;
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.home__banner__cta--primary {
  background-color: #44aadf;
  color: white;
}
.home__banner__cta--primary:hover {
  background-color: #3a9bcc;
  transform: translateY(-2px);
}
.home__banner__cta--secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}
.home__banner__cta--secondary:hover {
  background-color: white;
  color: #1c2847;
  transform: translateY(-2px);
}
.home__banner__cta-text {
  white-space: nowrap;
}
.home__banner__cta-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .home__banner {
    align-items: flex-start;
  }
  .home__banner__background__mobile {
    display: block;
  }
  .home__banner__background {
    display: none;
  }
  .home__banner__content {
    padding: 40px 20px;
  }
  .home__banner__title {
    font-size: 36px;
    line-height: 42px;
  }
  .home__banner__actions {
    flex-direction: column;
  }
  .home__banner__cta {
    justify-content: center;
    padding: 29px 32px;
  }
  .home__banner__cta--primary {
    width: 28vh;
  }
  .home__banner__cta--secondary {
    width: 37vh;
  }
  .home__banner__middle-image {
    right: 5%;
    top: 15%;
    max-width: 60%;
  }
  .home__banner__foreground-image {
    right: 2%;
    bottom: 5%;
    max-width: 50%;
  }
}
.flags {
  width: 100%;
}
.flags__container {
  width: 100%;
  margin: 0;
  background: #e9f0f3;
  padding: 7vh 0px;
}
.flags__row {
  display: flex;
  gap: 9vh;
  align-items: center;
  justify-content: flex-start;
  height: 160px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.flags__left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 48px;
  height: 160px;
  width: 400px;
  background: #1c2847;
  border-top-right-radius: 200px;
  border-bottom-right-radius: 200px;
  padding-right: 20px;
  transition: width 0.6s ease-out;
  flex-shrink: 0;
  position: relative;
}
.flags__left__icon {
  color: #fff;
  width: 72px;
  height: 72px;
  position: absolute;
  right: 20px;
  transition: right 0.6s ease-out;
}
.flags__left__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.flags__left__flag {
  position: absolute;
  right: 92px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  display: grid;
  place-items: center;
  transition: right 0.6s ease-out;
}
.flags__left__flag img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  display: block;
}
.flags__items {
  display: flex;
  align-items: center;
  gap: 10vh;
  flex: 1 1 auto;
  justify-content: flex-start;
  min-width: 0;
  overflow: hidden;
}
.flags__flag {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease-out;
  flex-shrink: 0;
}
.flags__flag img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  display: block;
  transition: transform 0.6s ease-out;
}
.flags .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 900px) {
  .flags__row {
    gap: 16px;
    height: auto;
    padding: 16px 0;
  }
  .flags__left {
    width: auto;
    border-radius: 24px;
    padding: 12px 16px;
    margin-right: 8px;
  }
  .flags__left__icon {
    margin-left: 0;
    width: 40px;
    height: 40px;
  }
  .flags__items {
    gap: 12px;
    justify-content: space-between;
  }
  .flags__flag {
    width: 96px;
    height: 96px;
  }
}

/* Planning Form (componentized) */
.planning-form {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.planning-form__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.planning-form__background-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.planning-form__question-marks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2344aadf" opacity="0.1"><path d="M12 2C13.1 2 14 2.9 14 4C14 5.1 13.1 6 12 6C10.9 6 10 5.1 10 4C10 2.9 10.9 2 12 2ZM21 9V7L15 1H5C3.89 1 3 1.89 3 3V21C3 22.11 3.89 23 5 23H19C20.11 23 21 22.11 21 21V9ZM19 9H14V4H5V21H19V9Z"/></svg>');
  background-size: 200px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
}
.planning-form__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  padding: 17vh 0vh;
}
.planning-form__text {
  margin-bottom: 60px;
}
.planning-form__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  color: white;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.planning-form__title span {
  display: block;
}
.planning-form__card {
  background: white;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  margin: 0 auto;
}
.planning-form__card__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #1c2847;
  margin: 0 0 32px 0;
  text-align: left;
  width: 70%;
}
.planning-form__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.planning-form__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.planning-form__step {
  display: none;
  flex-direction: column;
  gap: 15px;
}
.planning-form__step--active {
  display: flex;
}
.planning-form__field {
  position: relative;
}
.planning-form__input {
  width: 100%;
  padding: 16px 20px;
  background-color: #DCE2E5;
  border: 2px solid #DCE2E5;
  border-radius: 55px;
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1C2847;
  transition: all 0.3s ease;
}
.planning-form__input::-moz-placeholder {
  color: #1C2847;
  opacity: 1;
}
.planning-form__input::placeholder {
  color: #1C2847;
  opacity: 1;
}
.planning-form__input:focus {
  outline: none;
  border-color: #44aadf;
  background-color: white;
}
.planning-form__input:hover {
  border-color: #44aadf;
}
.planning-form__submit {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #44AADF 0%);
  border: none;
  border-radius: 55px;
  font-family: "Encode Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}
.planning-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(68, 170, 223, 0.3);
}
.planning-form__submit:active {
  transform: translateY(0);
}
.planning-form__submit__icon {
  width: 20px;
  height: 20px;
  color: white;
  margin-left: auto;
}
.planning-form__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.planning-form__status {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1c2847;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.planning-form__status--visible {
  opacity: 1;
  transform: translateY(0);
}
.planning-form__status--error {
  color: #c53030;
}

@media (max-width: 768px) {
  .planning-form {
    height: 130vh;
    min-height: 500px;
    padding: 40px 20px;
    align-items: flex-start !important;
  }
  .planning-form__content {
    padding: 0vh 0vh;
  }
  .planning-form__title {
    font-size: 36px;
    line-height: 44px;
  }
  .planning-form__card {
    padding: 32px 24px;
  }
  .planning-form__card__title {
    font-size: 20px;
    line-height: 28px;
  }
  .planning-form__form {
    gap: 24px;
  }
  .planning-form__input {
    padding: 14px 16px;
    font-size: 15px;
  }
  .planning-form__actions {
    width: 100%;
  }
  .planning-form__submit {
    padding: 16px 24px;
    font-size: 16px;
  }
}
.feedback-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.feedback-modal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.feedback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 24, 55, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.feedback-modal__content {
  position: relative;
  background: #44aadf;
  padding: 32px 48px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  min-width: 320px;
  max-width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  z-index: 1;
}
.feedback-modal__text {
  font-family: "Encode Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #e9f0f3;
  margin: 0;
}
.feedback-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #e9f0f3;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.feedback-modal__close:hover {
  transform: scale(1.1);
}
.feedback-modal--error .feedback-modal__content {
  background: #44aadf;
}
.feedback-modal--error .feedback-modal__text,
.feedback-modal--error .feedback-modal__close {
  color: #fff;
}

/* Differentials Section */
.differentials {
  background-color: #ffffff;
  padding: 80px 80px 60px;
  position: relative;
}
.differentials__content {
  margin: 0 auto;
}
.differentials__header {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 80px;
}
.differentials__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid #c6d7df;
  border-radius: 100px;
  background: transparent;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
}
.differentials__tag__dot {
  width: 7px;
  height: 7px;
  background-color: #44AADF;
  border-radius: 50%;
}
.differentials__tag__text {
  font-family: "Encode Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #1c2847;
  white-space: nowrap;
}
.differentials__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  color: #1c2847;
  margin: 0;
  flex: 1;
}
.differentials__title span {
  display: block;
}
.differentials__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 80px;
  justify-content: center;
}
.differentials__card {
  background: #ffffff;
  padding: 32px;
  border: 1px solid #dce2e5;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  flex: 0 0 calc(25% - 6px);
  min-width: 0;
}
.differentials__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(28, 40, 71, 0.1);
}
.differentials__card__icon {
  width: 48px;
  height: 48px;
  background-color: #dce2e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.differentials__card__icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.differentials__card__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #1c2847;
  margin: 0;
}
.differentials__card__description {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677189;
  margin: 0;
}
.differentials__media {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.differentials__media__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  color: #1c2847;
  margin: 0;
  flex-shrink: 0;
}
.differentials__media__carousel {
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.differentials__media__logo img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.differentials .embla {
  overflow: hidden;
}
.differentials .embla__container {
  display: flex;
}
.differentials .embla__slide {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 5vh;
}
.differentials__faq {
  text-align: center;
}
.differentials__faq__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid #c6d7df;
  border-radius: 100px;
  background: transparent;
  margin: 0 auto 40px auto;
  width: -moz-fit-content;
  width: fit-content;
}
.differentials__faq__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  color: #1c2847;
  margin: 0 0 40px 0;
}
.differentials__faq__title span {
  display: block;
}
.differentials__faq__list {
  max-width: 846px;
  margin: 0 auto;
}
.differentials__faq__item {
  border-bottom: 1px solid #c6d7df;
}
.differentials__faq__item.active .differentials__faq__icon {
  background-color: rgba(68, 170, 223, 0.1019607843);
  transform: rotate(180deg);
}
.differentials__faq__item.active .differentials__faq__answer {
  display: block;
  margin: 8px 0 16px 0;
  padding: 12px 16px 16px 16px;
  background-color: #f8fbff;
  border-left: 3px solid #44aadf;
  border-radius: 8px;
}
.differentials__faq__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, padding 0.2s ease;
}
.differentials__faq__toggle:hover {
  background-color: #f8f9fa;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
}
.differentials__faq__question {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677189;
  margin: 0;
  flex: 1;
  text-align: left;
}
.differentials__faq__icon {
  width: 32px;
  height: 32px;
  background-color: #dce2e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.differentials__faq__icon svg {
  width: 14px;
  height: 14px;
  color: #1c2847;
}
.differentials__faq__answer {
  display: none;
  padding: 0;
  margin: 0;
  color: #465068;
  line-height: 24px;
}
.differentials__faq__answer p {
  margin: 0;
}
.differentials__logo-animation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 10vh;
}
.differentials__logo-animation__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.differentials__logo-animation__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  left: 19vh !important;
}
.differentials__logo-animation__plane {
  position: relative;
  right: 40vh;
  top: 1vh;
}
.differentials__logo-animation__plane img {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Responsividade */
@media (max-width: 768px) {
  .differentials {
    padding: 40px 20px 80px;
  }
  .differentials__header {
    flex-direction: column;
    gap: 24px;
    align-items: left;
    text-align: left;
  }
  .differentials__title {
    font-size: 28px;
    line-height: 36px;
    width: 32vh;
  }
  .differentials__cards {
    gap: 16px;
  }
  .differentials__card {
    padding: 24px 16px;
    flex: 0 0 calc(50% - 8px);
  }
  .differentials__card__title {
    font-size: 18px;
    line-height: 24px;
  }
  .differentials__media {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .differentials__media__title {
    font-size: 28px;
    line-height: 36px;
  }
  .differentials__faq__title {
    font-size: 36px;
    line-height: 44px;
  }
  .differentials__faq__item {
    padding: 20px 0;
  }
  .differentials__faq__question {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 480px) {
  .differentials__card {
    flex: 0 0 100%;
  }
}
/* Visa Types Section */
.visa-types {
  background-color: #e9f0f3;
  padding: 0px 80px 0;
  position: relative;
  padding-bottom: 1vh;
}
.visa-types__content {
  margin: 0 auto;
}
.visa-types__header {
  display: flex;
  gap: 38px;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-direction: column;
}
.visa-types__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid #c6d7df;
  border-radius: 100px;
  background: transparent;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
}
.visa-types__tag__dot {
  width: 7px;
  height: 7px;
  background-color: #44AADF;
  border-radius: 50%;
}
.visa-types__tag__text {
  font-family: "Encode Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #1c2847;
  white-space: nowrap;
}
.visa-types__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  color: #1c2847;
  margin: 0;
  flex: 1;
}
.visa-types__title span {
  display: block;
}
.visa-types__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 80px;
  justify-content: flex-start;
  align-items: stretch;
}
.visa-types__card {
  background: #ffffff;
  padding: 32px;
  border: 1px solid #dce2e5;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
  width: 302px;
}
.visa-types__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(28, 40, 71, 0.1);
}
.visa-types__card__icon {
  width: 48px;
  height: 48px;
  background-color: #dce2e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.visa-types__card__icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.visa-types__card__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #1c2847;
  margin: 0;
}
.visa-types__card__description {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677189;
  margin: 0;
  flex: 1;
}
.visa-types__card__cta {
  background-color: #44aadf;
  border-radius: 200px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-decoration: none;
  color: #e9f0f3;
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  transition: all 0.3s ease;
  margin-top: auto;
}
.visa-types__card__cta:hover {
  background-color: #3a8fc4;
  transform: translateY(-2px);
}
.visa-types__card__cta span {
  white-space: nowrap;
}
.visa-types__card__cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
}

/* Responsividade */
@media (max-width: 768px) {
  .visa-types {
    padding: 40px 20px 80px;
  }
  .visa-types__header {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
    padding-top: 0;
  }
  .visa-types__title {
    font-size: 28px;
    line-height: 36px;
    width: 32vh;
  }
  .visa-types__cards {
    gap: 16px;
  }
  .visa-types__card {
    padding: 24px 16px;
    flex: 0 0 calc(50% - 8px);
    width: auto;
  }
  .visa-types__card__title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 480px) {
  .visa-types__card {
    flex: 0 0 100%;
  }
}
.history {
  background-color: white;
  position: relative;
}
.history__content {
  margin: 0 auto;
  width: 100%;
}
.history__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.history__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid #c6d7df;
  border-radius: 100px;
  background: transparent;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
}
.history__tag__dot {
  width: 7px;
  height: 7px;
  background-color: #44AADF;
  border-radius: 50%;
}
.history__tag__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #1c2847;
  white-space: nowrap;
}
.history__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  color: #1c2847;
  margin: 0;
}
.history__carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: grab;
}
.history__carousel:active {
  cursor: grabbing;
}
.history__carousel .embla__viewport {
  width: 100%;
  overflow: hidden;
}
.history__carousel .embla__container {
  display: flex;
  gap: 24px;
}
.history__carousel .embla__slide {
  flex: 0 0 calc(25% - 18px);
  background: #ffffff;
  border: 1px solid #e9f0f3;
  border-radius: 24px;
  padding: 32px;
  min-height: 280px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
  pointer-events: all;
  justify-content: flex-start;
}
@media (max-width: 1024px) {
  .history__carousel .embla__slide {
    flex: 0 0 calc(33.333% - 16px);
  }
}
@media (max-width: 768px) {
  .history__carousel .embla__slide {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 480px) {
  .history__carousel .embla__slide {
    flex: 0 0 100%;
  }
}
.history__carousel .history__card__stars {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}
.history__carousel .history__card__star {
  width: 24px;
  height: 24px;
  color: #ffd700;
}
.history__carousel .history__card__description {
  font-family: "Encode Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1c2847;
  margin: 0;
  flex-grow: 1;
}
.history__carousel .history__card__author {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: auto;
}
.history__carousel .history__card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.history__carousel .history__card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.history__carousel .history__card__name {
  font-family: "Encode Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #677189;
}
.history__testimonial__stars {
  display: flex;
  gap: 8px;
  align-items: center;
}
.history__testimonial__star {
  width: 24px;
  height: 24px;
  color: #ffd700;
  flex-shrink: 0;
}
.history__testimonial__text {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677189;
  margin: 0;
  flex: 1;
}
.history__testimonial__author {
  display: flex;
  gap: 24px;
  align-items: center;
}
.history__testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.history__testimonial__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.history__testimonial__name {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #677189;
  margin: 0;
}
.history__navigation {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  padding: 29px 0px;
}
.history__navigation__button {
  width: 48px;
  height: 48px;
  background-color: #e9f0f3;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 600;
  color: #1c2847;
}
.history__navigation__button:hover {
  background-color: #b8c9d1;
  transform: scale(1.05);
}
.history__navigation__button:active {
  transform: scale(0.95);
}
.history__navigation__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.history__navigation__button-icon {
  font-size: 24px;
  line-height: 1;
}
.history__navigation__indicators-container {
  display: flex;
  align-items: center;
}
.history__navigation__indicators {
  display: flex;
  gap: 8px;
  align-items: center;
}
.history__navigation__dots {
  display: flex;
  gap: 8px;
  align-items: center;
  background-color: #e9f0f3;
  border-radius: 55px;
  padding: 19px;
}
.history__navigation__dots-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #dce2e5;
  cursor: pointer;
  transition: all 0.3s ease;
}
.history__navigation__dots-dot--active {
  background-color: #1C2847;
  width: 35px;
  border-radius: 4px;
}
.history__navigation__dots-dot:hover {
  background-color: #44AADF;
}
.history__navigation__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e9f0f3;
  cursor: pointer;
  transition: all 0.3s ease;
}
.history__navigation__indicator--active {
  background-color: #44AADF;
  width: 24px;
  border-radius: 4px;
}
.history__navigation__indicator:hover:not(.history__navigation__indicator--active) {
  background-color: #c6d7df;
}

@media (max-width: 768px) {
  .history {
    padding: 40px 20px 60px;
  }
  .history__content {
    max-width: 95%;
  }
  .history__header {
    gap: 20px;
  }
  .history__title {
    font-size: 28px;
    line-height: 36px;
  }
  .history__testimonial {
    margin-right: 16px;
    padding: 24px 16px;
  }
  .history__testimonial__text {
    font-size: 15px;
    line-height: 22px;
  }
  .history__testimonial__author {
    gap: 16px;
  }
  .history__testimonial__avatar {
    width: 40px;
    height: 40px;
  }
  .history__testimonial__name {
    font-size: 15px;
  }
  .history__navigation {
    gap: 12px;
    justify-content: flex-start;
  }
  .history__nav-button {
    width: 40px;
    height: 40px;
  }
  .history__nav-button svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .history__testimonial {
    margin-right: 0;
  }
  .history__navigation__indicators {
    gap: 6px;
  }
  .history__navigation__indicator {
    width: 6px;
    height: 6px;
  }
  .history__navigation__indicator--active {
    width: 20px;
  }
}
.logo-animation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 10vh;
  padding: 0vh 27vh 9vh 0vh .logo-animation __content;
  padding-display: flex;
  padding-flex-direction: row;
  padding-align-items: center;
  padding-justify-content: center;
  padding-gap: 20px;
}
.logo-animation__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  left: 19vh !important;
}
.logo-animation__plane {
  position: absolute;
  top: 50%;
  left: 82%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.logo-animation__plane img {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@keyframes drawLogo {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fillReveal {
  to {
    width: 100%;
  }
}
.logo-animation__svg-logo.animate .ball-draw-path,
.logo-animation__svg-logo.animate .logo-draw-path {
  animation-fill-mode: forwards;
}

@media (max-width: 768px) {
  .logo-animation {
    overflow: visible;
    padding: 0 0px 0vh;
    height: 23vh;
    position: relative;
    top: -5vh;
  }
  .logo-animation__content {
    gap: 5px;
    transform: scale(0.3);
  }
  .logo-animation__logo {
    left: 3vh !important;
  }
  .logo-animation__plane {
    transform: translate(-50%, -50%);
  }
  .logo-animation__plane img {
    transform: translateX(0);
    height: auto;
  }
}
.faq {
  text-align: center;
}
.faq__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid #c6d7df;
  border-radius: 100px;
  background: transparent;
  margin: 0 auto 40px auto;
  width: -moz-fit-content;
  width: fit-content;
}
.faq__tag__dot {
  width: 7px;
  height: 7px;
  background-color: #44AADF;
  border-radius: 50%;
}
.faq__tag__text {
  font-family: "Encode Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #1c2847;
  white-space: nowrap;
}
.faq__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  color: #1c2847;
  margin: 0 0 40px 0;
}
.faq__title span {
  display: block;
}
.faq__list {
  max-width: 846px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid #c6d7df;
}
.faq__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, padding 0.2s ease;
}
.faq__toggle:hover {
  background-color: #f8f9fa;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
}
.faq__question {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677189;
  margin: 0;
  flex: 1;
  text-align: left;
}
.faq__icon {
  width: 32px;
  height: 32px;
  background-color: #dce2e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq__icon svg {
  width: 14px;
  height: 14px;
  color: #1c2847;
}
.faq__answer {
  display: none;
  padding: 0;
  margin: 0;
  color: #465068;
  line-height: 24px;
}
.faq__answer p {
  margin: 0;
}
.faq__item.active .faq__icon {
  background-color: rgba(68, 170, 223, 0.1019607843);
  transform: rotate(180deg);
}
.faq__item.active .faq__answer {
  display: block;
  margin: 8px 0 16px 0;
  padding: 12px 16px 16px 16px;
  background-color: #f8fbff;
  border-left: 3px solid #44aadf;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .faq__title {
    font-size: 36px;
    line-height: 44px;
  }
  .faq__item {
    padding: 20px 0;
  }
  .faq__question {
    font-size: 15px;
    line-height: 22px;
  }
}
/* Seção Blog Home */
.blog-home {
  background-color: white;
  padding: 32px;
  position: relative;
  /* Cards do Blog Home */
  /* Navegação do Blog Home */
  /* Responsividade */
}
.blog-home__content {
  background-color: #e9f0f3;
  border-radius: 24px;
  padding: 48px;
  margin: 0 auto;
}
.blog-home__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 80px;
}
.blog-home__header__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blog-home__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid #c6d7df;
  border-radius: 100px;
  background: transparent;
  width: -moz-fit-content;
  width: fit-content;
}
.blog-home__tag__dot {
  width: 7px;
  height: 7px;
  background-color: #44AADF;
  border-radius: 50%;
}
.blog-home__tag__text {
  font-family: "Encode Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #1c2847;
  white-space: nowrap;
}
.blog-home__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  color: #1c2847;
  margin: 0;
}
.blog-home__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  background-color: #44aadf;
  border: none;
  border-radius: 200px;
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #e9f0f3;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog-home__cta:hover {
  background-color: #3a9bcc;
  transform: translateY(-2px);
}
.blog-home__cta__icon {
  width: 18px;
  height: 18px;
  color: #e9f0f3;
}
.blog-home__cards {
  margin-bottom: 4vh;
}
.blog-home__carousel {
  position: relative;
  overflow: hidden;
}
.blog-home__carousel__viewport {
  overflow: hidden;
  width: 100%;
}
.blog-home__carousel__container {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.blog-home__carousel__slide {
  flex: 0 0 calc(33.333% - 5.33px);
  min-width: 0;
  display: flex;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.blog-home__card {
  background: white;
  padding: 32px;
  border: 1px solid #dce2e5;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  flex: 1;
}
.blog-home__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(28, 40, 71, 0.1);
}
.blog-home__card__image {
  width: 100%;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-home__card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-home__card__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #1c2847;
  margin: 0;
  flex-shrink: 0;
}
.blog-home__card__description {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677189;
  margin: 0;
  flex: 1;
  min-height: 72px;
  /* Altura mínima para 3 linhas */
}
.blog-home__card__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #44aadf;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: auto;
}
.blog-home__card__cta:hover {
  color: #1c2847;
}
.blog-home__card__cta__icon {
  width: 18px;
  height: 18px;
  color: currentColor;
}
.blog-home__navigation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.blog-home__navigation__arrow {
  width: 48px;
  height: 48px;
  background-color: #c6d7df;
  border: none;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  pointer-events: auto;
  flex-shrink: 0;
}
.blog-home__navigation__arrow:hover:not(:disabled) {
  background-color: #b8c9d1;
  transform: scale(1.05);
}
.blog-home__navigation__arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.blog-home__navigation__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blog-home__navigation__icon svg {
  width: 24px;
  height: 24px;
  color: #1c2847;
  transition: all 0.3s ease;
  pointer-events: none;
}
.blog-home__navigation__indicators-container {
  width: 184px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c6d7df;
  border-radius: 100px;
  position: relative;
}
.blog-home__navigation__indicators {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.blog-home__navigation__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(28, 40, 71, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
.blog-home__navigation__indicator:hover {
  background-color: #1c2847;
  transform: scale(1.2);
}
.blog-home__navigation__indicator--active {
  background-color: #1c2847;
  width: 35px;
  border-radius: 69px;
}
@media (max-width: 768px) {
  .blog-home {
    padding: 32px 20px;
  }
  .blog-home__content {
    padding: 18px;
  }
  .blog-home__header {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }
  .blog-home__title {
    font-size: 28px;
    line-height: 36px;
  }
  .blog-home__cta {
    justify-content: center;
  }
  .blog-home__carousel__slide {
    flex: 0 0 100%;
  }
  .blog-home__card {
    padding: 24px 16px;
  }
  .blog-home__card__image {
    height: 200px;
  }
  .blog-home__card__description {
    min-height: 60px;
  }
  .blog-home__card__title {
    font-size: 18px;
    line-height: 24px;
  }
  .blog-home__card__description {
    font-size: 14px;
    line-height: 20px;
  }
  .blog-home__card__cta {
    font-size: 14px;
    line-height: 20px;
  }
  .blog-home__navigation {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }
  .blog-home__navigation__arrow {
    width: 48px;
    height: 48px;
    justify-content: center;
  }
  .blog-home__navigation__indicators-container {
    width: 184px;
    max-width: 184px;
  }
  .blog-home__navigation__indicators {
    justify-content: center;
    gap: 8px;
  }
}

/* Importação das fontes */
.wevisa {
  background-color: #e9f0f3;
  padding: 80px 0px 0px;
  position: relative;
  overflow: hidden;
  /* Logo de fundo */
  /* Conteúdo principal */
  /* Header com tag e texto */
}
.wevisa__background-logo {
  position: absolute;
  top: 50vh;
  width: 100%;
  height: 40%;
  opacity: 0.5;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  will-change: transform;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
}
.wevisa__background-logo--parallax {
  transform: translateY(var(--parallax-offset, 0px));
}
.wevisa__content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.wevisa__header {
  display: flex;
  gap: 360px;
  align-items: flex-start;
  width: 90%;
  margin: 0 auto;
}
.wevisa__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid #c6d7df;
  border-radius: 100px;
  background: transparent;
  flex-shrink: 0;
}
.wevisa__tag__dot {
  width: 7px;
  height: 7px;
  background-color: #44AADF;
  border-radius: 50%;
  flex-shrink: 0;
}
.wevisa__tag__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #1c2847;
  white-space: nowrap;
}
.wevisa__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 50%;
}
.wevisa__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  color: #1c2847;
  margin: 0;
}
.wevisa__title span {
  display: block;
}
.wevisa__description {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677189;
  margin: 0;
  max-width: 55%;
}
.wevisa__cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.wevisa__cards-codepen {
  position: relative;
}
.wevisa__cards-codepen__cards {
  position: relative;
  height: 94vh;
  overflow: hidden;
}
.wevisa__cards-codepen__card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max(220px, 19vw);
  aspect-ratio: 2/3;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  transform-origin: center 280vh;
  transform: translate(-50%, -50%) rotate(var(--angle, 0deg));
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s ease;
  will-change: transform, opacity;
}
.wevisa__cards-codepen__card__button {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #44aadf;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  z-index: 15;
  opacity: 0;
}
.wevisa__cards-codepen__card__button:hover {
  background: #3a9bcc;
  transform: scale(1.1);
}
.wevisa__cards-codepen__card__button svg,
.wevisa__cards-codepen__card__button img {
  width: 20px;
  height: 20px;
  color: white;
}
.wevisa__cards-codepen__card__button span {
  display: none;
}
.wevisa__cards-codepen__card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(28, 40, 71, 0) 0%, rgba(28, 40, 71, 0.8) 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.wevisa__cards-codepen__card__content {
  position: absolute;
  top: 66%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 24px;
}
.wevisa__cards-codepen__card__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  color: #e9f0f3;
  margin: 0 0 24px 0;
  text-align: center;
}
.wevisa__cards-codepen__card__description {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #e9f0f3;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  text-align: center;
  max-width: 277px;
}
.wevisa__cards-codepen__card--active .wevisa__cards-codepen__card__overlay {
  opacity: 1;
}
.wevisa__cards-codepen__card--active .wevisa__cards-codepen__card__button {
  opacity: 1;
}
.wevisa__cards-codepen__nav {
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.wevisa__cards-codepen__nav__arrow {
  width: 48px;
  height: 48px;
  background: #c6d7df;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.wevisa__cards-codepen__nav__arrow:hover {
  background: #b8c9d1;
}
.wevisa__cards-codepen__nav__arrow svg {
  width: 24px;
  height: 24px;
  color: #1c2847;
}
.wevisa__cards-codepen__nav__dots {
  display: flex;
  gap: 8px;
}
.wevisa__cards-codepen__nav__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c6d7df;
  transition: background 0.2s ease;
}
.wevisa__cards-codepen__nav__dot--active {
  background: #44aadf;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes airplaneReveal {
  0% {
    opacity: 0;
    transform: translate(50%, -50%) scale(0) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: translate(50%, -50%) scale(1.2) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: translate(50%, -50%) scale(1) rotate(0deg);
  }
}
@keyframes airplaneDraw {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
/* Responsividade */
@media (max-width: 1400px) {
  .wevisa__cards-codepen__card {
    width: max(280px, 16vw);
  }
}
@media (max-width: 1200px) {
  .wevisa {
    padding: 60px 40px 120px;
  }
  .wevisa__header {
    gap: 200px;
  }
  .wevisa__cards-codepen__card {
    width: max(260px, 15vw);
  }
}
@media (max-width: 1024px) {
  .wevisa__cards-codepen__card {
    width: max(260px, 14vw);
  }
  .wevisa__cards-codepen__card__title {
    font-size: 2.5rem;
  }
  .wevisa__cards-codepen__card__description {
    font-size: 14px;
    max-width: 220px;
  }
}
@media (max-width: 900px) {
  .wevisa__cards-codepen__card {
    width: max(220px, 13vw);
  }
  .wevisa__cards-codepen__card__title {
    font-size: 2rem;
  }
  .wevisa__cards-codepen__card__description {
    font-size: 13px;
    max-width: 200px;
  }
}
@media (max-width: 800px) {
  .wevisa__cards-codepen__card {
    width: max(200px, 12vw);
  }
  .wevisa__cards-codepen__card__title {
    font-size: 1.8rem;
  }
  .wevisa__cards-codepen__card__description {
    font-size: 12px;
    max-width: 180px;
  }
}
@media (max-width: 768px) {
  .wevisa {
    display: none !important;
  }
}
.wevisa-mobile {
  display: block;
  position: relative;
  padding: 32px 16px 40px;
  background: #e9f0f3;
  overflow: hidden;
  /* Logo de fundo */
  /* Conteúdo principal */
  /* Header */
  /* Tag */
  /* Texto */
  /* Carousel */
  /* Card */
  /* Navegação */
}
.wevisa-mobile__background-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  z-index: 1;
}
.wevisa-mobile__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.wevisa-mobile__header {
  text-align: left;
  margin-bottom: 24px;
}
.wevisa-mobile__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px;
  background: transparent;
  border: 1px solid #c6d7df;
  border-radius: 100px;
}
.wevisa-mobile__tag__dot {
  width: 7px;
  height: 7px;
  background: #44aadf;
  border-radius: 50%;
}
.wevisa-mobile__tag__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1c2847;
}
.wevisa-mobile__text {
  max-width: 600px;
  margin: 0 auto;
}
.wevisa-mobile__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #1c2847;
  line-height: 30px;
  margin-bottom: 16px;
}
.wevisa-mobile__description {
  font-family: "Encode Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #677189;
  line-height: 24px;
}
.wevisa-mobile__carousel {
  position: relative;
  margin-top: 24px;
}
.wevisa-mobile__carousel__viewport {
  overflow: hidden;
}
.wevisa-mobile__carousel__container {
  display: flex;
  touch-action: pan-y;
}
.wevisa-mobile__carousel__slide {
  flex: 0 0 85%;
  min-width: 0;
  padding: 0 4px;
}
.wevisa-mobile__card {
  display: block;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  height: 450px;
  z-index: 1;
}
.wevisa-mobile__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.wevisa-mobile__card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.wevisa-mobile__card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wevisa-mobile__card__overlay {
  position: absolute;
  top: 18vh;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(28, 40, 71, 0), rgba(28, 40, 71, 0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.wevisa-mobile__card__overlay-title {
  font-family: "Encode Sans", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #e9f0f3;
  line-height: 46px;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.wevisa-mobile__card__overlay-description {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #e9f0f3;
  line-height: 24px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.wevisa-mobile__card__content {
  display: none; /* Removido pois o texto agora fica no overlay */
}
.wevisa-mobile__card__title, .wevisa-mobile__card__description {
  display: none; /* Esconder elementos antigos se existirem */
}
.wevisa-mobile__carousel__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 16px;
}
.wevisa-mobile__carousel__nav__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #c6d7df;
  border: none;
  border-radius: 50%;
  color: #1c2847;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.wevisa-mobile__carousel__nav__button:hover {
  background: #b8c5d1;
  color: #1c2847;
}
.wevisa-mobile__carousel__nav__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wevisa-mobile__carousel__nav__button svg {
  width: 14px;
  height: 14px;
}
.wevisa-mobile__carousel__nav__dots {
  display: flex;
  gap: 6px;
  align-items: center;
  background: transparent;
  border-radius: 22px;
  padding: 17px;
  background-color: #C6D7DF;
}
.wevisa-mobile__carousel__nav__dot {
  width: 6px !important;
  height: 12px !important;
  border-radius: 50px;
  background: rgb(146, 162, 177);
  cursor: pointer;
  transition: all 0.3s ease;
}
.wevisa-mobile__carousel__nav__dot--active {
  background: #1C2847;
  width: 23px;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
/* Mostrar apenas em mobile */
@media (max-width: 768px) {
  .wevisa-mobile {
    display: block;
  }
}
/* Esconder em desktop */
@media (min-width: 769px) {
  .wevisa-mobile {
    display: none !important;
  }
}
/* ========================================
   ANIMAÇÕES
   ======================================== */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wevisa-mobile__carousel__slide {
  animation: slideIn 0.5s ease-out;
}

.wevisa-mobile__header {
  animation: fadeInUp 0.6s ease-out;
}

.wevisa-mobile__tag {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

/* ========================================
   ESTADOS DE ACESSIBILIDADE
   ======================================== */
.wevisa-mobile__carousel__nav__button:focus-visible {
  outline: 2px solid #44aadf;
  outline-offset: 2px;
}

.wevisa-mobile__carousel__nav__dot:focus-visible {
  outline: 2px solid #44aadf;
  outline-offset: 2px;
}

/* ============ PAGES ============= */
/* Importação da fonte Encode Sans */
.home {
  overflow: hidden;
}
.home__slider div {
  height: 200px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: #EAEAEA;
}

/* Nova Seção: Atravessamos o mundo com nossos clientes */
.client-stories {
  background-color: #e9f0f3;
  padding: 80px 80px 60px;
  position: relative;
  /* Lado esquerdo: Depoimentos */
  /* Carrossel de depoimentos */
  /* Navegação do carrossel */
  /* Lado direito: Mapa-múndi */
}
.client-stories__content {
  display: flex;
  gap: 60px;
  align-items: stretch;
  margin: 0 auto;
  min-height: 500px;
  height: 100%;
}
.client-stories__testimonials {
  flex: 1;
  max-width: 500px;
}
.client-stories__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid #c6d7df;
  border-radius: 100px;
  background: transparent;
  margin-bottom: 24px;
  width: -moz-fit-content;
  width: fit-content;
}
.client-stories__tag__dot {
  width: 7px;
  height: 7px;
  background-color: #44AADF;
  border-radius: 50%;
}
.client-stories__tag__text {
  font-family: "Encode Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #1c2847;
  white-space: nowrap;
}
.client-stories__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  color: #1c2847;
  margin: 0 0 40px 0;
}
.client-stories__title span {
  display: block;
}
.client-stories__carousel {
  margin-bottom: 40px;
}
.client-stories__carousel__viewport {
  overflow: hidden;
  margin-bottom: 24px;
  width: 100%;
}
.client-stories__carousel__container {
  display: flex;
  transition: transform 0.5s ease;
  align-items: stretch;
  width: 100%;
}
.client-stories__carousel__slide {
  flex: 0 0 100%;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 100%;
}
.client-stories__testimonial {
  background: white;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid #e9f0f3;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  min-height: 280px;
  width: 100%;
  box-sizing: border-box;
}
.client-stories__testimonial__rating {
  display: flex;
  gap: 8px;
}
.client-stories__testimonial__rating svg {
  width: 24px;
  height: 24px;
  color: #ffd700;
}
.client-stories__testimonial__text {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677189;
  margin: 0;
  flex: 1;
}
.client-stories__testimonial__author {
  display: flex;
  align-items: center;
  gap: 24px;
}
.client-stories__testimonial__author__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.client-stories__testimonial__author__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.client-stories__testimonial__author__name {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #677189;
}
.client-stories__navigation {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.client-stories__navigation__arrow {
  width: 48px;
  height: 48px;
  background-color: #C6D7DF;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.client-stories__navigation__arrow:hover {
  background-color: #b8c9d1;
}
.client-stories__navigation__arrow svg {
  width: 24px;
  height: 24px;
  color: #1c2847;
}
.client-stories__navigation__dots {
  display: flex;
  gap: 8px;
  align-items: center;
  background-color: #C6D7DF;
  padding: 15px;
  border-radius: 55px;
}
.client-stories__navigation__dot {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background-color: rgb(146, 162, 177);
  cursor: pointer;
  transition: all 0.3s ease;
}
.client-stories__navigation__dot--active {
  background-color: #1c2847;
  width: 40px;
}
.client-stories__world-map {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.client-stories__world-map__container {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5/1;
}
.client-stories__world-map__background {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.client-stories__world-map__markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.client-stories__world-map__marker {
  position: absolute;
  width: 24px;
  height: 24px;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.client-stories__world-map__marker__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.client-stories__world-map__marker__image--inactive {
  opacity: 1;
}
.client-stories__world-map__marker__image--active {
  opacity: 0;
}
.client-stories__world-map__marker:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.client-stories__world-map__marker--active {
  transform: translate(-50%, -50%) scale(1.2);
}
.client-stories__world-map__marker--active .client-stories__world-map__marker__image--inactive {
  opacity: 0;
}
.client-stories__world-map__marker--active .client-stories__world-map__marker__image--active {
  opacity: 1;
  filter: drop-shadow(0 2px 4px rgba(68, 170, 223, 0.3));
}

/* planning-form styles moved to partials/_planning-form.scss */
/* Nova Seção: Diferenciais */
.diferenciais {
  background-color: white;
  padding: 80px 80px 60px;
  position: relative;
  /* Cards de Diferenciais */
  /* Seção Como visto na mídia */
  /* Seção FAQ */
}
.diferenciais__content {
  margin: 0 auto;
}
.diferenciais__header {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 80px;
}
.diferenciais__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid #c6d7df;
  border-radius: 100px;
  background: transparent;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
}
.diferenciais__tag__dot {
  width: 7px;
  height: 7px;
  background-color: #44AADF;
  border-radius: 50%;
}
.diferenciais__tag__text {
  font-family: "Encode Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #1c2847;
  white-space: nowrap;
}
.diferenciais__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  color: #1c2847;
  margin: 0;
  flex: 1;
}
.diferenciais__title span {
  display: block;
}
.diferenciais__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 80px;
}
.diferenciais__card {
  background: white;
  padding: 32px;
  border: 1px solid #dce2e5;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}
.diferenciais__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(28, 40, 71, 0.1);
}
.diferenciais__card__icon {
  width: 48px;
  height: 48px;
  background-color: #dce2e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.diferenciais__card__icon svg {
  width: 24px;
  height: 24px;
  color: #1c2847;
}
.diferenciais__card__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #1c2847;
  margin: 0;
}
.diferenciais__card__description {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677189;
  margin: 0;
}
.diferenciais__media {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.diferenciais__media__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  color: #1c2847;
  margin: 0;
  flex-shrink: 0;
}
.diferenciais__media__logos {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  justify-content: space-around;
}
.diferenciais__media__logo img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.diferenciais__faq {
  text-align: center;
}
.diferenciais__faq__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid #c6d7df;
  border-radius: 100px;
  background: transparent;
  margin: 0 auto 40px auto;
  width: -moz-fit-content;
  width: fit-content;
}
.diferenciais__faq__tag__dot {
  width: 7px;
  height: 7px;
  background-color: #44AADF;
  border-radius: 50%;
}
.diferenciais__faq__tag__text {
  font-family: "Encode Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #1c2847;
  white-space: nowrap;
}
.diferenciais__faq__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  color: #1c2847;
  margin: 0 0 40px 0;
}
.diferenciais__faq__title span {
  display: block;
}
.diferenciais__faq__list {
  max-width: 846px;
  margin: 0 auto;
}
.diferenciais__faq__item {
  border-bottom: 1px solid #c6d7df;
}
.diferenciais__faq__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, padding 0.2s ease;
}
.diferenciais__faq__toggle:hover {
  background-color: #f8f9fa;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
}
.diferenciais__faq__question {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677189;
  margin: 0;
  flex: 1;
  text-align: left;
}
.diferenciais__faq__icon {
  width: 32px;
  height: 32px;
  background-color: #dce2e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.diferenciais__faq__icon svg {
  width: 14px;
  height: 14px;
  color: #1c2847;
}
.diferenciais__faq__item.active .diferenciais__faq__icon {
  background-color: rgba(68, 170, 223, 0.1019607843);
}
.diferenciais__faq__answer {
  display: none;
  padding: 0;
  margin: 0;
  color: #465068;
  line-height: 24px;
}
.diferenciais__faq__item.active .diferenciais__faq__answer {
  display: block;
  margin: 8px 0 16px 0;
  padding: 12px 16px 16px 16px;
  background-color: #f8fbff;
  border-left: 3px solid #44aadf;
  border-radius: 8px;
}
.diferenciais__faq__answer p {
  margin: 0;
}
.diferenciais__faq__item.active .diferenciais__faq__icon {
  transform: rotate(180deg);
}
.diferenciais__logo-animation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 10vh;
}
.diferenciais__logo-animation__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.diferenciais__logo-animation__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  left: 19vh !important;
}
.diferenciais__logo-animation__ball {
  position: relative;
  left: 6vh;
  top: 6vh;
}
.diferenciais__logo-animation__svg-logo .mask-path {
  stroke-dasharray: 1000 !important;
  stroke-dashoffset: 1000 !important;
}
.diferenciais__logo-animation__svg-logo.animate .mask-path {
  animation: dash 5s linear forwards !important;
}
.diferenciais__logo-animation__plane {
  position: relative;
  right: 40vh;
  top: 1vh;
}
.diferenciais__logo-animation__plane img {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@keyframes dash {
  to {
    stroke-dashoffset: 0 !important;
  }
}

/* Animação do Logo WeVisa */
@keyframes drawLogo {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fillReveal {
  from {
    width: 0;
  }
  to {
    width: 1190px;
  }
}
/* Responsividade */
@media (max-width: 1024px) {
  .client-stories__carousel__slide {
    flex: 0 0 33.333%;
  }
}
@media (max-width: 768px) {
  .client-stories {
    padding: 40px 20px 0px;
  }
  .client-stories__content {
    flex-direction: column;
    gap: 0px;
  }
  .client-stories__testimonials {
    max-width: 100%;
  }
  .client-stories__title {
    font-size: 36px;
    line-height: 44px;
  }
  .client-stories__carousel__slide {
    flex: 0 0 50%;
  }
  .client-stories__world-map__container {
    width: 100%;
    aspect-ratio: 1.5/1;
  }
  .diferenciais {
    padding: 40px 20px 80px;
  }
  .diferenciais__header {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }
  .diferenciais__title {
    font-size: 28px;
    line-height: 36px;
  }
  .diferenciais__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .diferenciais__card {
    padding: 24px 16px;
  }
  .diferenciais__card__title {
    font-size: 18px;
    line-height: 24px;
  }
  .diferenciais__media {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .diferenciais__media__title {
    font-size: 28px;
    line-height: 36px;
  }
  .diferenciais__faq__title {
    font-size: 36px;
    line-height: 44px;
  }
  .diferenciais__faq__item {
    padding: 20px 0;
  }
  .diferenciais__faq__question {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 480px) {
  .client-stories__carousel__slide {
    flex: 0 0 100%;
  }
  .diferenciais__cards {
    grid-template-columns: 1fr;
  }
}
/* About (intro) */
.services {
  overflow: hidden;
}

.about {
  background-color: #e9f0f3;
  padding: 48px 24px;
  overflow: hidden;
  /* Grid em duas colunas: título à esquerda e texto à direita */
}
.about__container {
  max-width: 1120px;
  margin: 0 auto;
}
.about__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: flex-start;
}
.about__left {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.about__right {
  max-width: 800px;
}
.about__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #c6d7df;
  border-radius: 100px;
  background: #ffffff;
}
.about__tag__dot {
  width: 7px;
  height: 7px;
  background-color: #44AADF;
  border-radius: 50%;
}
.about__tag__text {
  font-family: "Encode Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #1c2847;
  white-space: nowrap;
}
.about__title {
  margin: 0 0 16px 0;
  font-family: "Encode Sans", sans-serif;
  font-size: 44px;
  line-height: 52px;
  font-weight: 400;
  color: #0e2346;
}
.about__title span {
  display: block;
}
.about__subtitle {
  max-width: 520px;
  color: #465068;
  font-family: "Encode Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  margin: 12px 0 0 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .about {
    padding: 40px 20px;
  }
  .about__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .about__left, .about__right {
    max-width: 100%;
  }
  .about__title {
    font-size: 32px;
    line-height: 40px;
  }
  .about__subtitle {
    font-size: 13px;
    line-height: 18px;
  }
}
/* Flags Section */
.flags {
  background-color: #ffffff;
}
.flags__container {
  margin: 0 auto;
}
.flags__header {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
}
.flags__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #c6d7df;
  border-radius: 100px;
  background: #ffffff;
}
.flags__tag__dot {
  width: 7px;
  height: 7px;
  background-color: #44AADF;
  border-radius: 50%;
}
.flags__tag__text {
  font-family: "Encode Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #1c2847;
  white-space: nowrap;
}
.flags__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  color: #1c2847;
  margin: 0;
}
.flags__title span {
  display: block;
}
.flags__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.flags__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.flags__item__image {
  width: 120px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  background: #e9f0f3;
  border: 1px solid #dce2e5;
}
.flags__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.flags__item__name {
  font-family: "Encode Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1c2847;
  text-align: center;
}

@media (max-width: 1024px) {
  .flags__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .flags {
    padding: 0 0 0;
  }
  .flags__header {
    flex-direction: column;
    gap: 16px;
  }
  .flags__title {
    font-size: 24px;
    line-height: 32px;
  }
  .flags__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .flags__item__image {
    width: 100%;
    height: 72px;
  }
}
@media (max-width: 480px) {
  .flags__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.solutions {
  background-color: #e9f0f3;
  box-sizing: border-box;
  padding: 0px 0px 60px 0px;
}
.solutions__container {
  margin: 0 auto;
}
.solutions__header {
  margin-bottom: 40px;
  padding: 40px 0vh 0px 11vh;
}
.solutions__title {
  font-family: "Encode Sans", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 46px;
  color: #1c2847;
  margin: 0;
  white-space: nowrap;
}
.solutions__content {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
}
.solutions__carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: grab;
}
.solutions__carousel:active {
  cursor: grabbing;
}
.solutions__carousel .embla__viewport {
  width: 100%;
  overflow: hidden;
}
.solutions__carousel .embla__container {
  display: flex;
  gap: 24px;
}
.solutions__carousel .embla__slide {
  flex: 0 0 calc(25% - 24px);
  margin-right: 24px !important;
  background: #ffffff;
  border: 1px solid #dce2e5;
  border-radius: 24px;
  padding: 32px;
  min-height: 280px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  pointer-events: none;
  justify-content: flex-start;
  left: 11vh;
}
@media (max-width: 768px) {
  .solutions__carousel .embla__slide {
    flex: 0 0 calc(100% - 24px);
    left: 0vh !important;
  }
}
.solutions__carousel .solutions__card__icon {
  width: 48px;
  height: 48px;
  background-color: #dce2e5;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.solutions__carousel .solutions__card__icon-image {
  width: 24px;
  height: 24px;
  display: block;
}
.solutions__carousel .solutions__card__title {
  font-family: "Encode Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #1c2847;
  margin: 0;
}
.solutions__carousel .solutions__card__description {
  font-family: "Encode Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #677189;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.solutions__carousel .solutions__card__description p {
  margin: 0 0 8px 0;
}
.solutions__carousel .solutions__card__description p:last-child {
  margin-bottom: 0;
}
.solutions__navigation {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  padding-left: 11vh;
}
.solutions__navigation__button {
  width: 48px;
  height: 48px;
  background-color: #c6d7df;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 600;
  color: #1c2847;
}
.solutions__navigation__button:hover {
  background-color: #b8c9d1;
  transform: scale(1.05);
}
.solutions__navigation__button:active {
  transform: scale(0.95);
}
.solutions__navigation__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.solutions__navigation__button-icon {
  font-size: 18px;
  font-weight: 600;
  color: #1c2847;
  line-height: 1;
}
.solutions__navigation__dots {
  width: 184px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #c6d7df;
  border-radius: 55px;
}
.solutions__navigation__dots-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1C2847;
  cursor: pointer;
  transition: all 0.3s ease;
}
.solutions__navigation__dots-dot--active {
  border-radius: 1px;
  background-color: #1C2847;
  transform: none;
  width: 4vh;
  border-radius: 12px;
}
.solutions__navigation__dots-dot:hover {
  background-color: #677189;
  transform: scale(1.1);
}

/* Responsividade para Solutions */
@media (max-width: 1200px) {
  .solutions {
    padding: 60px 40px;
  }
  .solutions__cards {
    gap: 20px;
  }
  .solutions__card {
    width: 280px;
    min-height: 260px;
  }
}
@media (max-width: 1024px) {
  .solutions {
    padding: 48px 32px;
  }
  .solutions__title {
    font-size: 32px;
    line-height: 40px;
    white-space: normal;
  }
  .solutions__cards {
    gap: 16px;
  }
  .solutions__card {
    width: 260px;
    min-height: 240px;
  }
}
@media (max-width: 768px) {
  .solutions {
    padding: 40px 24px;
  }
  .solutions__header {
    margin-bottom: 32px;
    padding-top: 24px;
  }
  .solutions__title {
    font-size: 28px;
    line-height: 36px;
  }
  .solutions__content {
    gap: 40px;
  }
  .solutions__cards {
    gap: 12px;
  }
  .solutions__card {
    width: 240px;
    min-height: 220px;
    padding: 24px;
  }
  .solutions__navigation {
    margin-top: 32px;
  }
  .steps__title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .solutions {
    padding: 32px 20px;
  }
  .solutions__title {
    font-size: 24px;
    line-height: 32px;
  }
  .solutions__card {
    width: 220px;
    min-height: 200px;
    padding: 20px;
  }
  .solutions__card__title {
    font-size: 18px;
    line-height: 22px;
  }
  .solutions__card__description {
    font-size: 14px;
    line-height: 20px;
  }
  .solutions__navigation__dots {
    width: 120px;
  }
}
/* Steps Section */
.steps {
  background-color: #e9f0f3;
  padding: 48px 24px 64px;
}
.steps__container {
  max-width: 1120px;
  margin: 0 auto;
}
.steps__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.steps__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #c6d7df;
  border-radius: 100px;
  background: #ffffff;
}
.steps__tag__dot {
  width: 7px;
  height: 7px;
  background-color: #44aadf;
  border-radius: 50%;
}
.steps__tag__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1c2847;
  white-space: nowrap;
}
.steps__title {
  font-family: "Encode Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 56px;
  color: #1c2847;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}
.steps__carousel {
  position: relative;
  overflow: hidden;
}
.steps__carousel__viewport {
  overflow: hidden;
}
.steps__carousel__container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.steps__carousel__slide {
  flex: 0 0 calc(25% - 30px);
  min-width: 0;
}
.steps__carousel:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 43px;
  height: 2px;
  background: #c6d7df;
  z-index: 0;
}
.steps__connector-line {
  display: none;
}
.steps__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.steps__item__badge {
  width: 80px;
  height: 80px;
  border-radius: 200px;
  background: #44aadf;
  color: #e9f0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Encode Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  position: relative;
  z-index: 1;
}
.steps__item__content {
  display: contents;
}
.steps__item__title {
  margin: 8px 0 0 0;
  font-family: "Encode Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #1c2847;
}
.steps__item__description {
  margin: 0;
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #677189;
  max-width: 240px;
}
.steps__item {
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s ease;
}
.steps__item--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .steps__title {
    font-size: 30px;
    line-height: 46px;
    white-space: normal;
  }
  .steps__carousel__container {
    gap: 32px;
  }
  .steps__carousel__slide {
    flex: 0 0 calc(50% - 16px);
  }
  .steps__carousel:before {
    display: none;
  }
}
@media (max-width: 640px) {
  .steps {
    padding: 40px 20px 56px;
  }
  .steps__carousel__viewport {
    overflow: visible;
  }
  .steps__carousel__container {
    gap: 24px;
    overflow: visible;
  }
  .steps__carousel__slide {
    flex: 0 0 100%;
    overflow: visible;
  }
  .steps__connector-line {
    position: absolute;
    left: -12px;
    right: -12px;
    top: 40px;
    height: 2px;
    background: #c6d7df;
    z-index: 0;
  }
  .steps__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 1;
    min-height: 100px;
  }
  .steps__item__badge {
    flex-shrink: 0;
    position: relative;
    z-index: 3;
  }
  .steps__item__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    padding-top: 8px;
  }
  .steps__item__title {
    margin: 0 0 8px 0;
    font-size: 18px;
    line-height: 24px;
    position: relative;
    z-index: 2;
  }
  .steps__item__description {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    position: relative;
    z-index: 1;
  }
}
/* Página Blog */
.blog-page {
  min-height: 100vh;
  background-color: #ffffff;
}

/* Seção Blog */
.blog-section {
  background-color: #e9f0f3;
  padding: 48px;
  border-radius: 24px;
  margin: 32px;
  position: relative;
  top: 10vh;
  /* Header da Seção */
  /* Campo de Busca */
  /* Filtros */
  /* Posts */
  /* Botão Carregar Mais */
}
.blog-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
}
.blog-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.blog-section__header__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blog-section__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  color: #1c2847;
  margin: 0;
}
.blog-section__title span {
  display: block;
}
.blog-section__search {
  position: relative;
  background-color: white;
  border-radius: 200px;
  padding: 16px 24px;
  width: 313px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-section__search__input {
  border: none;
  outline: none;
  background: transparent;
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1c2847;
  flex: 1;
  padding: 0;
}
.blog-section__search__input::-moz-placeholder {
  color: #1c2847;
}
.blog-section__search__input::placeholder {
  color: #1c2847;
}
.blog-section__search__icon {
  width: 18px;
  height: 18px;
  color: #1c2847;
  flex-shrink: 0;
}
.blog-section__search__icon svg {
  width: 100%;
  height: 100%;
}
.blog-section__filters {
  width: 100%;
}
.blog-section__filters__container {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 200px;
  padding: 8px;
  width: 100%;
  overflow: hidden;
}
.blog-section__filters__menu {
  position: relative;
  /* Estilizar a scrollbar */
}
.blog-section__filters__menu .embla {
  overflow: hidden;
}
.blog-section__filters__menu .embla__viewport {
  overflow: visible;
}
.blog-section__filters__menu .embla__container {
  display: flex;
  gap: 13vh;
  align-items: center;
}
.blog-section__filters__menu .embla__slide {
  flex: 0 0 auto;
  min-width: 0;
}
.blog-section__filters__menu .embla__viewport {
  scrollbar-width: thin;
  scrollbar-color: #c6d7df #e9f0f3;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 4px;
}
.blog-section__filters__menu .embla__viewport::-webkit-scrollbar {
  height: 8px;
}
.blog-section__filters__menu .embla__viewport::-webkit-scrollbar-track {
  background: #e9f0f3;
  border-radius: 4px;
}
.blog-section__filters__menu .embla__viewport::-webkit-scrollbar-thumb {
  background: #c6d7df;
  border-radius: 4px;
}
.blog-section__filters__menu .embla__viewport::-webkit-scrollbar-thumb:hover {
  background: #b8c9d1;
}
.blog-section__filters__item {
  background: transparent;
  border: none;
  border-radius: 200px;
  padding: 11px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1c2847;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.blog-section__filters__item:hover {
  background-color: rgba(233, 240, 243, 0.5);
}
.blog-section__filters__item--active {
  background-color: #e9f0f3;
}
.blog-section__posts {
  width: 100%;
}
.blog-section__posts__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 100%;
}
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  50% {
    opacity: 0.7;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.blog-section__post {
  background: transparent;
  border-radius: 24px;
  width: calc(33.333% - 27px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.blog-section__post:hover {
  transform: translateY(-4px);
}
.blog-section__post--hidden {
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
}
.blog-section__post--loading {
  opacity: 0.6;
  transform: translateY(15px);
  transition: all 0.4s ease-out;
}
.blog-section__post.animate-in {
  animation: slideInFromBottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.blog-section__post__image {
  width: 100%;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-section__post__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-section__post:hover .blog-section__post__image img {
  transform: scale(1.1);
}
.blog-section__post__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.blog-section__post__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #1c2847;
  margin: 0;
  transition: color 0.3s ease;
}
.blog-section__post:hover .blog-section__post__title {
  color: #44aadf;
}
.blog-section__post__description {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677189;
  margin: 0;
  flex: 1;
}
.blog-section__post__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: #44aadf;
  border: none;
  border-radius: 200px;
  padding: 16px 24px;
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #e9f0f3;
  cursor: pointer;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.blog-section__post__cta:hover {
  background-color: #3a9bcc;
  transform: translateY(-2px);
}
.blog-section__post__cta__icon {
  width: 18px;
  height: 18px;
  color: #e9f0f3;
}
.blog-section__load-more {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.blog-section__load-more__button {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.blog-section__load-more__button:hover {
  transform: translateY(-2px);
}
.blog-section__load-more__icon {
  width: 24px;
  height: 24px;
  color: #1c2847;
}
.blog-section__loading-indicator {
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blog-section__loading-indicator--visible {
  display: flex;
  opacity: 1;
}
.blog-section__loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #e9f0f3;
  border-top: 2px solid #44aadf;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 12px;
}
.blog-section__loading-text {
  font-family: "Encode Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #677189;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1200px) {
  .blog-section__posts__grid {
    gap: 30px;
  }
  .blog-section__post {
    width: calc(33.333% - 20px);
  }
}
@media (max-width: 768px) {
  .blog-section {
    padding: 32px 20px;
    margin: 20px;
  }
  .blog-section__header {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }
  .blog-section__title {
    font-size: 28px;
    line-height: 36px;
  }
  .blog-section__search {
    width: 100%;
    max-width: 313px;
  }
  .blog-section__filters__menu {
    justify-content: flex-start;
    gap: 13vh;
    padding: 0 2px;
  }
  .blog-section__filters__item {
    font-size: 12px;
    padding: 8px 12px;
  }
  .blog-section__posts__grid {
    gap: 24px;
  }
  .blog-section__post {
    width: calc(100% - 12px);
  }
  .blog-section__post__image {
    height: 200px;
  }
  .blog-section__post__title {
    font-size: 18px;
    line-height: 24px;
  }
  .blog-section__post__description {
    font-size: 14px;
    line-height: 20px;
  }
  .blog-section__post__cta {
    font-size: 14px;
    padding: 12px 20px;
  }
}
@media (max-width: 480px) {
  .blog-section {
    padding: 24px 16px;
    margin: 16px;
  }
  .blog-section__title {
    font-size: 24px;
    line-height: 32px;
  }
  .blog-section__filters__item {
    font-size: 11px;
    padding: 6px 10px;
  }
  .blog-section__post__image {
    height: 180px;
  }
}

/* Página Blog Details */
.blog-details-page {
  min-height: 100vh;
  background-color: #ffffff;
  padding-top: 100px;
}

/* Seção Blog Header */
.blog-header {
  background-color: #e9f0f3;
  padding: 72px 0 0 0;
  border-radius: 24px;
  margin: 32px;
  /* Informações do Header */
  /* Tag */
  /* Título */
  /* Metadados */
  /* Imagem Principal */
  /* Responsividade */
}
.blog-header__content {
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}
.blog-header__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1040px;
  padding: 0 32px;
}
.blog-header__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid #c6d7df;
  border-radius: 100px;
  background: transparent;
  width: -moz-fit-content;
  width: fit-content;
}
.blog-header__tag__dot {
  width: 7px;
  height: 7px;
  background-color: #44aadf;
  border-radius: 50%;
  flex-shrink: 0;
}
.blog-header__tag__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #1c2847;
  white-space: nowrap;
}
.blog-header__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  color: #1c2847;
  margin: 0;
  text-align: center;
}
.blog-header__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.blog-header__meta__date, .blog-header__meta__category {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677189;
}
.blog-header__image {
  width: 100%;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-header__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .blog-header {
    padding: 48px 0 0 0;
    margin: 20px;
  }
  .blog-header__content {
    gap: 48px;
  }
  .blog-header__info {
    padding: 0 20px;
    gap: 20px;
  }
  .blog-header__title {
    font-size: 36px;
    line-height: 44px;
  }
  .blog-header__meta {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .blog-header__image {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .blog-header {
    padding: 32px 0 0 0;
    margin: 16px;
  }
  .blog-header__content {
    gap: 32px;
  }
  .blog-header__info {
    padding: 0 16px;
    gap: 16px;
  }
  .blog-header__title {
    font-size: 28px;
    line-height: 36px;
  }
  .blog-header__tag {
    padding: 12px 16px;
  }
  .blog-header__tag__text {
    font-size: 12px;
  }
  .blog-header__meta__date, .blog-header__meta__category {
    font-size: 14px;
    line-height: 20px;
  }
  .blog-header__image {
    height: 300px;
  }
}

/* Seção Conteúdo do Artigo */
.blog-content {
  padding: 80px 0;
  background-color: #ffffff;
  /* Sidebar de Compartilhamento */
  /* Conteúdo Principal */
  /* Texto do Artigo */
  /* Títulos */
  /* Listas */
  /* Imagem */
  /* Responsividade */
}
.blog-content__container {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  padding: 0 80px;
  width: 100%;
  margin: 0 auto;
}
.blog-content__sidebar {
  position: sticky;
  top: 0;
  flex-shrink: 0;
}
.blog-content__sidebar__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px 0;
}
.blog-content__sidebar__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #44aadf;
  margin: 0;
}
.blog-content__sidebar__social {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.blog-content__sidebar__social__button {
  width: 48px;
  height: 48px;
  background-color: #e9f0f3;
  border: none;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog-content__sidebar__social__button:hover {
  background-color: #d1e0e6;
  transform: translateY(-2px);
}
.blog-content__sidebar__social__button svg {
  width: 24px;
  height: 24px;
  color: #1c2847;
}
.blog-content__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  /* Estilos para elementos HTML dentro do conteúdo */
}
.blog-content__main p {
  font-family: "Encode Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 39px;
  color: #2c3c67;
  margin: 0 0 24px 0;
}
.blog-content__main p:last-child {
  margin-bottom: 0;
}
.blog-content__main h1, .blog-content__main h2, .blog-content__main h3, .blog-content__main h4, .blog-content__main h5, .blog-content__main h6 {
  font-family: "Encode Sans", sans-serif;
  font-weight: 600;
  color: #1c2847;
  margin: 0 0 16px 0;
}
.blog-content__main h1 {
  font-size: 36px;
  line-height: 44px;
}
.blog-content__main h2 {
  font-size: 32px;
  line-height: 40px;
}
.blog-content__main h3 {
  font-size: 24px;
  line-height: 32px;
}
.blog-content__main h4 {
  font-size: 20px;
  line-height: 28px;
}
.blog-content__main h5 {
  font-size: 18px;
  line-height: 26px;
}
.blog-content__main h6 {
  font-size: 16px;
  line-height: 24px;
}
.blog-content__main ul, .blog-content__main ol {
  font-family: "Encode Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 39px;
  color: #2c3c67;
  margin: 0 0 24px 0;
  padding-left: 24px;
}
.blog-content__main ul li, .blog-content__main ol li {
  margin-bottom: 8px;
}
.blog-content__main ul li:last-child, .blog-content__main ol li:last-child {
  margin-bottom: 0;
}
.blog-content__main img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 24px 0;
}
.blog-content__main blockquote {
  font-family: "Encode Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #44aadf;
  border-left: 4px solid #44aadf;
  padding-left: 24px;
  margin: 24px 0;
  font-style: italic;
}
.blog-content__main a {
  color: #44aadf;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-content__main a:hover {
  color: #1c2847;
  text-decoration: underline;
}
.blog-content__main strong, .blog-content__main b {
  font-weight: 700;
}
.blog-content__main em, .blog-content__main i {
  font-style: italic;
}
.blog-content__main code {
  font-family: "Courier New", monospace;
  background-color: #f8f9fa;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 16px;
}
.blog-content__main pre {
  background-color: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 24px 0;
}
.blog-content__main pre code {
  background: none;
  padding: 0;
}
.blog-content__text {
  font-family: "Encode Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 39px;
  color: #2c3c67;
  margin: 0;
}
.blog-content__text p {
  margin: 0 0 24px 0;
}
.blog-content__text p:last-child {
  margin-bottom: 0;
}
.blog-content__heading {
  font-family: "Encode Sans", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 39px;
  color: #2c3c67;
  margin: 0;
}
.blog-content__subheading {
  font-family: "Encode Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #2c3c67;
  margin: 0;
}
.blog-content__list {
  font-family: "Encode Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 39px;
  color: #2c3c67;
  margin: 0;
  padding-left: 27px;
}
.blog-content__list li {
  margin-bottom: 0;
  list-style-type: disc;
}
.blog-content__list li:last-child {
  margin-bottom: 0;
}
.blog-content__image {
  width: 100%;
  max-width: 800px;
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-content__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .blog-content__container {
    padding: 0 40px;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .blog-content {
    padding: 40px 0;
  }
  .blog-content__container {
    flex-direction: column;
    padding: 0 20px;
    gap: 32px;
  }
  .blog-content__sidebar {
    position: static;
    order: 2;
  }
  .blog-content__sidebar__content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .blog-content__sidebar__social {
    flex-direction: row;
    gap: 12px;
  }
  .blog-content__sidebar__social__button {
    width: 40px;
    height: 40px;
  }
  .blog-content__sidebar__social__button svg {
    width: 20px;
    height: 20px;
  }
  .blog-content__main {
    order: 1;
    gap: 32px;
  }
  .blog-content__main p {
    font-size: 16px;
    line-height: 28px;
  }
  .blog-content__main h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .blog-content__main h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .blog-content__main h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .blog-content__main h4 {
    font-size: 18px;
    line-height: 26px;
  }
  .blog-content__main h5 {
    font-size: 16px;
    line-height: 24px;
  }
  .blog-content__main h6 {
    font-size: 15px;
    line-height: 22px;
  }
  .blog-content__main ul, .blog-content__main ol {
    font-size: 16px;
    line-height: 28px;
  }
  .blog-content__main blockquote {
    font-size: 18px;
    line-height: 28px;
  }
  .blog-content__text {
    font-size: 16px;
    line-height: 28px;
  }
  .blog-content__heading {
    font-size: 28px;
    line-height: 36px;
  }
  .blog-content__subheading {
    font-size: 18px;
    line-height: 24px;
  }
  .blog-content__list {
    font-size: 16px;
    line-height: 28px;
    padding-left: 20px;
  }
  .blog-content__image {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .blog-content {
    padding: 32px 0;
  }
  .blog-content__container {
    padding: 0 16px;
    gap: 24px;
  }
  .blog-content__sidebar__content {
    flex-direction: column;
    gap: 12px;
  }
  .blog-content__sidebar__social {
    flex-direction: row;
    gap: 8px;
  }
  .blog-content__sidebar__social__button {
    width: 36px;
    height: 36px;
  }
  .blog-content__sidebar__social__button svg {
    width: 18px;
    height: 18px;
  }
  .blog-content__main {
    gap: 24px;
  }
  .blog-content__main p {
    font-size: 15px;
    line-height: 26px;
  }
  .blog-content__main h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .blog-content__main h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .blog-content__main h3 {
    font-size: 18px;
    line-height: 26px;
  }
  .blog-content__main h4 {
    font-size: 16px;
    line-height: 24px;
  }
  .blog-content__main h5 {
    font-size: 15px;
    line-height: 22px;
  }
  .blog-content__main h6 {
    font-size: 14px;
    line-height: 20px;
  }
  .blog-content__main ul, .blog-content__main ol {
    font-size: 15px;
    line-height: 26px;
  }
  .blog-content__main blockquote {
    font-size: 16px;
    line-height: 24px;
  }
  .blog-content__text {
    font-size: 15px;
    line-height: 26px;
  }
  .blog-content__heading {
    font-size: 24px;
    line-height: 32px;
  }
  .blog-content__subheading {
    font-size: 16px;
    line-height: 22px;
  }
  .blog-content__list {
    font-size: 15px;
    line-height: 26px;
    padding-left: 16px;
  }
  .blog-content__image {
    height: 200px;
  }
}

/* Animações para o conteúdo do blog */
.blog-content__text, .blog-content__heading, .blog-content__subheading, .blog-content__list, .blog-content__image {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.blog-content__text.animate-in, .blog-content__heading.animate-in, .blog-content__subheading.animate-in, .blog-content__list.animate-in, .blog-content__image.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.blog-content__heading {
  transition-delay: 0.1s;
}
.blog-content__subheading {
  transition-delay: 0.2s;
}
.blog-content__text {
  transition-delay: 0.3s;
}
.blog-content__list {
  transition-delay: 0.4s;
}
.blog-content__image {
  transition-delay: 0.5s;
}

.country {
  overflow: hidden;
}

.country-about {
  background-color: #e9f0f3;
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 151px;
}
.country-about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 0 0 auto;
}
.country-about__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  color: #1c2847;
  margin: 0;
}
.country-about__title p {
  margin: 0;
}
.country-about__description {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677189;
  width: 445px;
  margin: 0;
}
.country-about__description p {
  margin: 0;
}
.country-about__image-wrapper {
  position: relative;
  width: 720px;
  height: 500px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 24px;
}
.country-about__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: 24px;
  display: block;
}
.country-about__badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5.5px);
  -webkit-backdrop-filter: blur(5.5px);
  background: rgba(220, 226, 229, 0.4);
  border-radius: 50%;
  z-index: 2;
}
.country-about__badge--large {
  width: 104px;
  height: 104px;
}
.country-about__badge--medium {
  width: 88px;
  height: 88px;
}
.country-about__badge--top-left {
  left: 45px;
  top: 41px;
}
.country-about__badge--top-right {
  left: 472px;
  top: 128px;
}
.country-about__badge--bottom-left {
  left: 123px;
  top: 231px;
}
.country-about__badge--bottom-right {
  left: 322px;
  top: 275px;
}
.country-about__badge__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: block;
}
.country-about__badge__icon--small {
  width: 44px;
  height: 44px;
}
@media (max-width: 1200px) {
  .country-about {
    gap: 80px;
  }
}
@media (max-width: 1024px) {
  .country-about {
    flex-direction: column;
    padding: 60px 40px;
    gap: 40px;
  }
  .country-about__content {
    width: 100%;
  }
  .country-about__description {
    width: 100%;
  }
  .country-about__image-wrapper {
    width: 100%;
    max-width: 720px;
  }
}
@media (max-width: 768px) {
  .country-about {
    padding: 40px 24px;
    gap: 32px;
  }
  .country-about__title {
    font-size: 28px;
    line-height: 36px;
  }
  .country-about__description {
    font-size: 14px;
    line-height: 20px;
  }
  .country-about__image-wrapper {
    height: 400px;
  }
  .country-about__badge--large {
    width: 80px;
    height: 80px;
  }
  .country-about__badge--medium {
    width: 70px;
    height: 70px;
  }
  .country-about__badge--top-left {
    left: 20px;
    top: 20px;
  }
  .country-about__badge--top-right {
    left: auto;
    right: 20px;
    top: 80px;
  }
  .country-about__badge--bottom-left {
    left: 20px;
    top: 180px;
  }
  .country-about__badge--bottom-right {
    left: auto;
    right: 20px;
    top: 220px;
  }
  .country-about__badge__icon {
    width: 40px;
    height: 40px;
  }
  .country-about__badge__icon--small {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 480px) {
  .country-about {
    padding: 32px 16px;
  }
  .country-about__title {
    font-size: 24px;
    line-height: 32px;
  }
  .country-about__image-wrapper {
    height: 300px;
  }
  .country-about__badge--large {
    width: 60px;
    height: 60px;
  }
  .country-about__badge--medium {
    width: 50px;
    height: 50px;
  }
  .country-about__badge--top-left {
    left: 15px;
    top: 15px;
  }
  .country-about__badge--top-right {
    left: auto;
    right: 15px;
    top: 60px;
  }
  .country-about__badge--bottom-left {
    left: 15px;
    top: 130px;
  }
  .country-about__badge--bottom-right {
    left: auto;
    right: 15px;
    top: 160px;
  }
  .country-about__badge__icon {
    width: 30px;
    height: 30px;
  }
  .country-about__badge__icon--small {
    width: 24px;
    height: 24px;
  }
}

.differentials {
  background-color: #ffffff;
  padding: 80px 80px 0 60px;
  position: relative;
}

/* Section: Documentos */
.documents {
  background-color: #ffffff;
  padding: 80px 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: flex-start;
}
.documents__container {
  background-color: #e9f0f3;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.documents__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}
.documents__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid #c6d7df;
  border-radius: 100px;
  background: transparent;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
}
.documents__tag__dot {
  width: 7px;
  height: 7px;
  background-color: #44AADF;
  border-radius: 50%;
}
.documents__tag__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #1c2847;
  white-space: nowrap;
}
.documents__title {
  font-family: "Encode Sans", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  color: #1c2847;
  margin: 0;
  text-align: center;
}
.documents__description {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677189;
  margin: 0;
  text-align: center;
}
.documents__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 846px;
}
.documents__item {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  width: 100%;
  border-bottom: 1px solid #c6d7df;
  text-decoration: none;
  transition: all 0.3s ease;
}
.documents__item--last {
  border-bottom: none;
}
.documents__item[href] {
  cursor: pointer;
}
.documents__item[href]:hover {
  background-color: rgba(68, 170, 223, 0.05);
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
}
.documents__item__icon {
  width: 48px;
  height: 48px;
  background-color: #dce2e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.documents__item__icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.documents__item__text {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1c2847;
  margin: 0;
  flex: 1;
}
.documents__footer {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #677189;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .documents {
    padding: 40px 20px 80px;
    gap: 40px;
  }
  .documents__container {
    padding: 32px 24px;
  }
  .documents__header {
    gap: 24px;
  }
  .documents__title {
    font-size: 28px;
    line-height: 36px;
  }
  .documents__description {
    font-size: 14px;
    line-height: 20px;
  }
  .documents__item {
    padding: 20px 0;
    gap: 16px;
  }
  .documents__item__icon {
    width: 40px;
    height: 40px;
  }
  .documents__item__icon img {
    width: 20px;
    height: 20px;
  }
  .documents__item__text {
    font-size: 14px;
    line-height: 20px;
  }
  .documents__footer {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 480px) {
  .documents {
    padding: 32px 16px 60px;
  }
  .documents__container {
    padding: 24px 16px;
  }
  .documents__title {
    font-size: 24px;
    line-height: 32px;
  }
  .documents__item {
    padding: 16px 0;
    gap: 12px;
  }
  .documents__item__icon {
    width: 36px;
    height: 36px;
  }
  .documents__item__icon img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .faq__list {
    padding: 0vh 2vh;
  }
}

.country .logo-animation {
  padding: 12vh 27vh 1vh 0vh;
}
@media (max-width: 768px) {
  .country .logo-animation {
    overflow: visible;
    padding: 0 0px 0vh;
    height: 23vh;
    position: relative;
    top: 4vh;
  }
}
.country .steps {
  background-color: #ffffff;
}
.country .blog-home__content {
  background-color: transparent;
}
.country .history {
  padding: 80px 80px 0px;
}
@media (max-width: 768px) {
  .country .history {
    padding: 59px 38px 12px;
  }
}
.country .home__banner__content {
  max-width: none;
  padding-left: 13vh;
}
.country .home__banner__title {
  color: #e9f0f3 !important;
  font-weight: 400 !important;
}
.country .home__banner__description {
  font-size: 16px !important;
  line-height: 24px !important;
  color: #ffffff !important;
  width: 445px;
  max-width: 445px;
}
.country .home__banner__actions {
  gap: 16px;
  align-self: flex-start;
}
.country .home__banner__cta {
  padding: 16px 24px;
  gap: 24px;
}
.country .home__banner__cta--primary {
  color: #e9f0f3 !important;
}
.country .home__banner__cta--secondary {
  display: none !important;
}
@media (max-width: 768px) {
  .country .home__banner__content {
    padding: 100px 20px 48px;
    max-width: 100%;
    align-items: flex-start;
  }
  .country .home__banner__title {
    font-size: 32px !important;
    line-height: 40px !important;
  }
  .country .home__banner__description {
    width: 100%;
    max-width: 100%;
  }
  .country .home__banner__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .country .home__banner__cta {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .country .home__banner__content {
    padding: 96px 16px 40px;
  }
  .country .home__banner__title {
    font-size: 28px !important;
    line-height: 36px !important;
  }
}

/* ========= COMPONENTES ========== */
.section {
  background: #000;
  width: 100%;
  position: relative;
}
.section__wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  padding: 10rem 2rem 12rem;
}
.section__title {
  display: inline-flex;
}
.section__title h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 6.4rem;
}
.section__slider {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  display: flex;
}
.section__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100%;
}
.section__item h1 {
  color: white;
}

.freeze {
  overflow: hidden;
}

.cms-bar {
  height: 50px;
}
.cms-bar__row {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #9700f6;
  height: 50px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
}
.cms-bar__row .text {
  color: #fff;
  margin-right: 15px;
  font-size: 14px;
  font-weight: bold;
}
.cms-bar__row .btn {
  background: #fff;
  padding: 5px 20px;
  border-radius: 15px;
  margin-right: 15px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}
.cms-bar__row .btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 900px) {
  .cms-bar__row .text {
    display: none;
  }
}
.whatsapp-floating {
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 4vw, 32px);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-floating:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}
.whatsapp-floating__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-floating__icon img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
