.elementor-kit-12{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-12 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ============================== */
/* 🌍 BLACK NOVEMBER - LET ME GO! INTERCÂMBIO */
/* CSS customizado para Elementor */
/* ============================== */

/* ---------- RESET BÁSICO ---------- */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
  scroll-behavior: smooth;
}

section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ---------- CORES PRINCIPAIS ---------- */
:root {
  --primary: #FFD700; /* amarelo */
  --secondary: #E10600; /* vermelho */
  --dark: #000000;
  --light: #ffffff;
  --gray: #111111;
}

/* ---------- CONTAINERS ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- HEADER ---------- */
header {
  background-color: var(--dark);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 2px solid var(--primary);
}

header nav a {
  color: var(--light);
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s;
}

header nav a:hover {
  color: var(--primary);
}

header nav .group {
  position: relative;
  display: inline-block;
}

header nav .group div {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark);
  border-radius: 6px;
  padding: 10px 0;
  min-width: 180px;
}

header nav .group:hover div {
  display: block;
}

header nav .group div a {
  display: block;
  padding: 8px 16px;
  color: #fff;
}

header nav .group div a:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--primary);
}

header a.btn-top {
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
}

header a.btn-top:hover {
  background: #ffec80;
  transform: translateY(-2px);
}

/* ---------- HERO ---------- */
#hero {
  background: linear-gradient(180deg, #000 80%, #111 100%);
  color: var(--light);
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

#hero::before {
  content: "";
  background: url("https://letmegointercambio.com.br/wp-content/uploads/2024/09/bg-map.webp") center/cover no-repeat;
  opacity: 0.15;
  position: absolute;
  inset: 0;
  z-index: 0;
}

#hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

#hero p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

#hero ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  position: relative;
  z-index: 1;
}

#hero li {
  margin-bottom: 8px;
  color: var(--light);
}

#hero a {
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

#hero a:hover {
  background: #ffe85c;
  transform: scale(1.05);
}

/* ---------- DESTINOS ---------- */
#destinos {
  background: #111;
  color: var(--light);
  text-align: center;
  padding: 100px 20px;
}

#destinos h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 50px;
}

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card-destino {
  background: var(--light);
  color: var(--dark);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.card-destino:hover {
  transform: scale(1.03);
}

.card-destino img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-destino h3 {
  font-size: 1.5rem;
  margin: 16px 0 8px;
}

.card-destino span {
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 16px;
}

/* ---------- POR QUE ESCOLHER ---------- */
#porque {
  background: var(--dark);
  color: var(--light);
  padding: 100px 20px;
  text-align: center;
}

#porque h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 40px;
}

#porque .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

#porque i {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 12px;
}

/* ---------- DEPOIMENTOS ---------- */
#depoimentos {
  background: #111;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

#depoimentos h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.depo {
  background: #000;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.depo:hover {
  transform: translateY(-4px);
}

/* ---------- FORMULÁRIO ---------- */
#formulario {
  background: var(--primary);
  color: var(--dark);
  text-align: center;
  padding: 100px 20px;
}

#formulario h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

#formulario p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* ---------- RODAPÉ ---------- */
footer {
  background: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 60px 20px;
  border-top: 2px solid var(--primary);
}

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

footer p {
  margin: 6px 0;
  font-size: 0.9rem;
}

footer a {
  color: var(--primary);
  text-decoration: none;
  margin: 0 8px;
}

footer a:hover {
  color: #fff;
}

footer i {
  transition: transform 0.2s;
}

footer i:hover {
  transform: scale(1.2);
}/* End custom CSS */