* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

:root {
  /* --primary-color: #f46530; */
  /* --primary-color-dark: #f74b1c; */
  --primary-color: #e46458;
  --primary-color-transparent: #e46458b2;
  --primary-color-dark: #c25349;
  --primary-color-light: #ffb36d;
  --secondary-color: #0069ab;
  --secondary-color-light: #27cdea;
  --secondary-color-transparent: rgba(39, 205, 234, 0.445);
  /* --secondary-color: #193364; */
  --text-title-color: #727376;
  --text-content-color: #8b8b8b;
  --bg-color: #ededed;
  --bg-color-transparent: #f4643093;
  --card-bg-color: #f8f9fa;
  --card-text-color: #333;
  --black: #000;

  --lg-mobile: 557px;
  --md-tablet: 768;
  --sm-desktop: 1024;
}

body {
  width: 100vw;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  background: #ededed url("../assets/bg/bg.png") repeat-y;
  background-size: contain;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* sobrecrevo o container do bootstrap */
.container {
  width: 100% !important;
  max-width: 70% !important;
  padding: 0 5% !important;
  margin: 0 auto;

  @media screen and (max-width: 768px) {
    max-width: 100% !important;
    padding: 0 5% !important;
  }

  @media screen and (max-width: 480px) {
    max-width: 100%;
    padding: 0 5% !important;
  }
}

/* ======= fim container ======= */

section {
  padding: 100px 0;
}

p,
button {
  margin: 0 !important;
  padding: 0;
}

/* Edit scroll-bar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
  width: 10px !important;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 20px;
}

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

#loading {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  z-index: 1001;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #333;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

#success-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #4caf50;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============ componentes comuns ================== */
.title {
  font-size: 40px;
  text-align: left;
  color: var(--text-title-color);
  font-weight: bold;
}

.subtitle {
  font-size: 18px;
  font-style: normal;
  color: var(--text-content-color);
}

.bar-title {
  height: 6px;
  width: 150px;
  border-radius: 20px;
  background-color: var(--primary-color);
  margin-bottom: 10px;
}

.col {
  display: flex;
  gap: 20px;
}

.col-6 {
  width: 50%;
  float: left;
  box-sizing: border-box;
}

.col-4 {
  width: 40%;
  float: left;
  box-sizing: border-box;
}

.col-8 {
  width: 60%;
  float: left;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .bar-title {
    height: 4px;
  }

  .subtitle {
    font-size: 16px;
  }

  .title {
    font-size: 28px;
  }

  .col {
    width: 100%;
    flex-direction: column;
  }
}

@media (max-width: 512px) {
  .col {
    width: 100%;
  }
  .col-sm-12 {
    width: 100%;
    float: center;
  }
  .col-sm-6 {
    width: 50%;
  }
}

@media (max-width: 375px) {
  .col-xs-12 {
    width: 100%;
  }
  .col-xs-6 {
    width: 50%;
  }
}

/* ============ header ================== */

/* ============ nav ================= */

nav {
  position: fixed;
  height: auto;
  width: 100%;
  max-width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 5%;
  margin: 0 auto;
  left: 0;
  right: 0;
  border-radius: 30px;
  margin-top: 10px;
  z-index: 2000;
  gap: 20px;
}

@media (max-width: 768px) {
  nav {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4444;
    /* backdrop-filter: blur(10px); */
    border-radius: 0;
    margin-top: 0px;
  }
}

.menu-brand img {
  width: 200px;
}

.menu {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 20px;
  position: relative;
}
.menu-brand {
  font-size: 1.5em;
}

.menu-nav {
  display: flex;
  flex-wrap: wrap;
}

.menu-nav.active {
  transform: translateX(0);
}

.menu-toggle {
  display: none;
}

.menu-nav a {
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px;
  font-weight: 600;

  transition: 0.6s ease;
}

.menu-nav a:hover {
  color: var(--primary-color);
  background-color: #8d8d8d3d;
  border-radius: 10px;
}

.isMenu {
  display: none !important;
}

@media (max-width: 768px) {
  .menu {
    flex-direction: row;
    align-items: center;
  }

  .isMenu {
    display: inline !important;
    margin-bottom: 20px;
    border-bottom: 1px solid #b6b6b657;
    border-radius: 0 !important;
  }

  .menu-nav {
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color-dark);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 80%;
    padding: 20px 15px 0px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 10;
    border-radius: 0 20px 20px 0;
    gap: 6px;

    box-shadow: 1.7px 0.4px 2.2px rgba(0, 0, 0, 0.02),
      4.2px 1.1px 5.3px rgba(0, 0, 0, 0.028),
      7.9px 2px 10px rgba(0, 0, 0, 0.035),
      14.1px 3.6px 17.9px rgba(0, 0, 0, 0.042),
      26.3px 6.7px 33.4px rgba(0, 0, 0, 0.05),
      63px 16px 80px rgba(0, 0, 0, 0.07);
  }

  .menu-nav a {
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    display: block;
    font-weight: 800;
    border-radius: 10px;
    z-index: 10;
  }

  .menu-toggle {
    display: inline;
    cursor: pointer;
    font-size: 1.2em;
    position: absolute;
    top: 35px;
    right: 20px;
    color: var(--bg-color);
  }
}

/* ============ hero banner ================= */

.hero-banner {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;

  background: linear-gradient(to left, #00000000, #000000ab),
    url("../assets/banners/hero2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.carousel-text {
  display: none;
}

.smal-text {
  font-size: 36px !important;
}

.wrapper-text-hero {
  display: flex;
  width: 100%;
  text-align: left;
  justify-content: space-between;
  overflow: hidden;
}

.wrapper-text-hero b {
  color: var(--primary-color);
  font-weight: bold;
}

.hero-banner .wrapper-text-hero h1 {
  font-size: 46px;
  font-weight: 500;
  width: 50%;
}

@media (max-width: 1024px) {
  .hero-banner .wrapper-text-hero h1 {
    font-size: 46px;
    font-weight: 500;
    width: 70%;
  }

  .smal-text {
    width: 100%;
    font-size: 20px !important;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 100vh;
    background-position: 60% 0;
  }

  .wrapper-text-hero {
    width: 100%;
  }

  .hero-banner .wrapper-text-hero h1 {
    font-size: 35px;
    font-weight: 500;
    width: 70%;
  }

  .smal-text {
    font-size: 16fpx !important;
    width: 70%;
  }

  .hero-banner .container {
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 524px) {
  .hero-banner {
    height: 70vh;
    background-position: 70% 0;
    background-size: cover;
  }

  .hero-banner .wrapper-text-hero h1 {
    font-size: 20px;
    width: 60%;
  }
}

/* ========== cards ========== */

.wrapper-card {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  width: 48%;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0.1px 0.1px 25px rgba(0, 0, 0, 0.026),
    0.1px 0.1px 31.8px rgba(0, 0, 0, 0.024),
    0.2px 0.2px 37.1px rgba(0, 0, 0, 0.029),
    1.3px 1.3px 43.1px rgba(0, 0, 0, 0.039),
    6.1px 6.1px 52.5px rgba(0, 0, 0, 0.053),
    100px 100px 80px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease; /* Adiciona uma transição suave ao tamanho do card */
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease; /* Adiciona uma transição suave ao tamanho do card */
}

.card:hover,
.card:hover::before {
  transform: scale(
    1.05
  ); /* Aumenta o tamanho do card em 5% ao passar o mouse sobre ele */
}

.card a {
  text-decoration: none;
  color: inherit;
}

.card h4 {
  margin-top: 0;
  margin-bottom: 10px;

  text-transform: uppercase;
  font-weight: 400;
  line-height: 26px;
}

.card p {
  margin-bottom: 0;
  font-weight: 600;
}

.content {
  color: white;
  position: relative;
  z-index: 1;

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.arrow-btn {
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

.arrow-btn i {
  margin-left: 5px;
  padding: 10px;
  width: auto;
  border: 1px solid #fff;
  border-radius: 100px;

  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.arrow-btn i:hover {
  background-color: #ffffff7c;
}

@media (max-width: 768px) {
  .card h4 {
    font-size: 12px;
  }

  .card p {
    font-size: 14px;
  }

  .wrapper-card-number .card {
    width: 48% !important;
  }

  .wrapper-card-number h4 {
    font-weight: 800;
  }

  .wrapper-card-number p {
    font-size: 30px !important;
  }
}

.wrapper-card-number {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.wrapper-card-number .card {
  width: 30%;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  position: relative;

  background: linear-gradient(60deg, hwb(16 19% 4% / 0.2) 30%, #e46458 100%);
  box-shadow: 0.1px 0.1px 25px rgba(0, 0, 0, 0.026),
    0.1px 0.1px 31.8px rgba(0, 0, 0, 0.024),
    0.2px 0.2px 37.1px rgba(0, 0, 0, 0.029),
    1.3px 1.3px 43.1px rgba(0, 0, 0, 0.039),
    6.1px 6.1px 52.5px rgba(0, 0, 0, 0.053),
    100px 100px 80px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease; /* Adiciona uma transição suave ao tamanho do card */

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.wrapper-card-number .content {
  color: white;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
}

.wrapper-card-number p {
  font-size: 40px;
}

/* ================== SOCIAL MEDIA ========== */

.social-icons {
  position: fixed;
  top: 40%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1000;

  display: flex;
  justify-content: center;
  flex-direction: column;
}

.social-icon {
  border-radius: 10px;

  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  color: #fc6f1e59;
  text-decoration: none;
}

.social-icon i {
  transition: color 0.3s ease;
}

.social-icon:hover i {
  color: var(--primary-color-dark);
}

/* ================== LUCIANA ========== */

.wrapper-image {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  height: 600px;
  gap: 20px;
}

.wrapper-image {
  img {
    height: 100%;
  }
}

@media (max-width: 1440px) {
  .luciana-wrapper {
    flex-direction: column !important;
  }
  .luciana-wrapper > div {
    width: 100% !important;
  }

  .wrapper-header-title {
    width: 100% !important;
  }
  .wrapper-image {
    width: 100%;
    img {
      height: 80%;
      width: auto;
    }
  }
}

@media (max-width: 768px) {
  .wrapper-image {
    justify-content: center;
  }
}

/* ==================MAP ========== */

.wrapper-mundi {
  display: flex;
  align-items: flex-start;
  justify-content: end;
}

svg {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  fill: #dbdbdb80;
}

#canada,
#peru,
#chile,
#portugal,
#new_caledonia,
#brazil,
#usa {
  fill: var(--primary-color);
  color: #0000003a;
}

#canada:hover {
  fill: var(--primary-color-dark);
}

/* ================== NOTAS ========== */

section#notas {
  height: auto;
  min-height: 400px;
  background: linear-gradient(to left, #00000000, #000000ab),
    url("../assets/banners/numbers.png");

  background-repeat: no-repeat;
  background-size: cover;
}

/* ================== DEPOIMENTOS ========== */
section#depoimentos {
  height: auto;
  background: url("assets/itens/aspas.png");
  background-position: center;
}
.depoimentos-wrapper {
  height: 100%;
}

/*  swipper ========== */

.swiper {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.swiper .swiper-pagination {
  /* margin-bottom: -20px !important; */
}

.swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--primary-color);
  width: 10px;
  height: 10px;
  margin: 0 5px;
  cursor: pointer;

  transition: 0.5s ease;
}

/* Altera a cor do botão ativo da paginação */
.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 10px;
}

.swiper .swiper-wrapper {
  height: 500px;
}

.swiper img {
  width: 100px;
}

.swiper .depoimento {
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.swiper .depoimento p {
  text-align: center;
}

.swiper .depoimento .wrapper-text-depoimento {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.swiper .depoimento h3 {
  font-size: 26px;
  text-align: center !important;
  color: var(--primary-color);
}

.swiper .depoimento .wrapper-text-depoimento span {
  text-align: center !important;
}

/* Estilo para as setas de navegação */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  z-index: 10;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (max-width: 1156px) {
  .swiper .swiper-wrapper {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .swiper .swiper-wrapper {
    height: 550px;
  }
}

@media (max-width: 425px) {
  .swiper .swiper-wrapper {
    height: 750px;
  }
}

/* ================== ACTION ========== */

section#contato {
  background-color: var(--bg-color);
}

.wrapper-contato {
  display: flex;
  align-items: center;
  justify-content: center !important;
  flex-direction: column;
  text-align: center;
  gap: 30px;
}

.wrapper-contato .contato-texto {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

.wrapper-contato .contato-texto div h2 {
  font-size: 42px;
  color: var(--primary-color);
}

.wrapper-contato .contato-texto div p {
  font-size: 20px;
  color: var(--text-content-color);
}

.wrapper-contato .contato-icon-wrapper {
  height: auto;
  width: auto;
}

.wrapper-contato .contato-icon-wrapper i {
  font-size: 60px;
  color: #25d366;
  padding: 10px;
  background-color: #dfdfdf52;
  border-radius: 20px;

  &:hover {
    background-color: #dfdfdfa4;
  }
}

.wrapper-contato .contato-wrapper-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrapper-contato .contato-wrapper-form a {
  width: auto;
  padding: 14px;
  border: none;
  color: #fff;
  border-radius: 20px;
  background-color: var(--primary-color);
  cursor: pointer;

  transition: 0.6s ease;
  outline-color: var(--primary-color);
  text-decoration: none;
  gap: 20px;

  i {
    margin-left: 8px;
    animation: oscillate 0.6s infinite alternate; /* Adicionando transição ao ícone */
  }

  &:hover {
    background-color: var(--primary-color-dark);
  }
}

@keyframes oscillate {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(6px); /* ou o ângulo desejado */
  }
}

.wrapper-contato .contato-wrapper-form form .wrapper-form {
  width: 100%;
  margin-top: 100px;
  max-width: 1300px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;

  input::placeholder {
    color: #5252522a;
  }
}

.wrapper-input {
  width: 40% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;

  label {
    align-items: flex-start;
    text-align: left;
    color: var(--text-content-color);
    font-size: 14px;
  }
}

.wrapper-textarea {
  width: 82% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;

  label {
    align-items: flex-start;
    text-align: left;
    color: var(--text-content-color);
    font-size: 14px;
  }

  textarea::placeholder {
    color: #5252522a;
  }
}

.wrapper-contato .contato-wrapper-form form .wrapper-input input {
  padding: 20px;
  border: none;
  border-radius: 20px;
}

.wrapper-contato .contato-wrapper-form form textarea {
  margin: 0 !important;
  height: 200px;
  background-color: #fff;
  min-height: 100px;
  max-height: 300px !important;
  width: 100% !important;
  padding: 20px;
  border: none;
  border-radius: 20px;
  overflow: auto !important;
  display: flex !important;
  word-wrap: break-word !important; /* Quebra de linha ao atingir a borda da caixa */
  text-align: left !important; /* Alinhamento do texto à esquerda */
}

.wrapper-contato .contato-wrapper-form form button {
  width: 300px;
  padding: 20px;
  border: none;
  color: #fff;
  border-radius: 20px;
  background-color: var(--primary-color);
  cursor: pointer;

  transition: 0.6s ease;
  outline-color: var(--primary-color);

  &:hover {
    background-color: var(--primary-color-dark);
  }
}
*/

/* ================== FOOTER ========== */

footer#footer {
  background-color: #fff;
  height: auto;
}

.wrapper-footer {
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 100px 40px;
  gap: 30px;
}

footer#footer .wrapper-footer .wrapper-footer-logo img {
  width: 120px;
}

footer#footer .wrapper-footer .wrapper-footer-menu {
  display: flex;
  flex-direction: column;
}

footer#footer .wrapper-footer .wrapper-footer-column ul {
  display: flex;
  flex-direction: column;
}

footer#footer .wrapper-footer .wrapper-footer-column h3 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  color: var(--card-text-color);
}
footer#footer .wrapper-footer .wrapper-footer-column li {
  list-style: none;
}

footer#footer .wrapper-footer .wrapper-footer-column a {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-content-color);
  text-decoration: none;
  font-weight: 500;

  transition: 0.5s ease;

  &:hover {
    color: var(--primary-color-dark);
  }
}

@media (max-width: 1326px) {
  footer#footer .wrapper-footer .wrapper-footer-logo img {
    width: 150px;
  }
}

@media (max-width: 550px) {
  footer#footer .wrapper-footer .wrapper-footer-logo img {
    width: 105px;
  }

  .wrapper-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 100px 40px;
    gap: 30px;
  }
}
