* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6efe9;
  --text: #2d2d2d;
  --muted: #6b6b6b;
  --primary: #1f3b3f;
  --primary-700: #0e2a2f;
  --card: #ffffff;
  --border: #e6dcd2;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: #1e2732;
}

/* Hero */
.hero {
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
  min-height: 360px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("media/Imgs/Secao Hero.png") center/cover no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.hero__container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  min-height: 360px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f2f36;
  margin-bottom: 0;
  max-width: 520px;
}

.brand__logo {
  width: 150px;
  height: auto;
}

.hero__content h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero__content p {
  max-width: 450px;
  color: #42515b;
  margin-bottom: 22px;
}

.hero__content {
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
}

.btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(31, 59, 63, 0.25);
}

.btn--ghost {
  background: #f5f0ea;
  border-color: #c9bdb1;
  color: #3a3a3a;
}

/* Sections */
.section {
  padding: 50px 0;
}

.section h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 26px;
}

/* Services */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.card__flag {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}

.card__flag img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

/* Destinos */
.tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tabs--map {
  position: absolute;
  top: -20px;
  right: 16px;
  justify-content: flex-end;
  margin-bottom: 0;
  z-index: 4;
}

.tab {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #d9cfc4;
  background: #efe6dd;
  color: #4a4a4a;
  font-size: 13px;
  cursor: pointer;
}

.tab.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.map-area {
  position: relative;
  background: #f9f5f1;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 20px;
  min-height: 340px;
  overflow: visible;
  width: 88%;
  margin: 0 auto;
}

.map-area__bg {
  position: absolute;
  inset: 0;
  background: url("media/Maps/America.png") center/cover no-repeat;
  opacity: 1;
  z-index: 1;
}

.map-area__detail {
  position: absolute;
  top: 40px;
  right: 36px;
  width: 260px;
  text-align: left;
  z-index: 3;
}

.map-area[data-detail-side="left"] .map-area__detail {
  right: auto;
  left: 36px;
}

.detail__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.detail__flag img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: #4f4f4f;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checklist li img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.map-area__countries {
  position: absolute;
  bottom: 18px;
  left: 40px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  z-index: 3;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #d4c9bd;
  background: #f1e8de;
  font-size: 13px;
  cursor: pointer;
}

.chip img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.chip.is-active {
  background: #1e2f3a;
  color: #fff;
  border-color: #1e2f3a;
}

/* Steps */
.steps__grid {
  background: #fdf9f5;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: -10px;
  position: relative;
  z-index: 5;
}

.steps__title {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 30px;
  margin-bottom: 6px;
}

.step {
  text-align: left;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 26px 1fr;
  grid-template-areas:
    "num title"
    "text text";
  column-gap: 10px;
  align-items: center;
}

.step__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #dfe6ef;
  display: grid;
  place-items: center;
  color: #3a4a5f;
  font-weight: 700;
  margin-bottom: 8px;
  grid-area: num;
}

.step h4 {
  font-size: 16px;
  margin-bottom: 6px;
  grid-area: title;
}

.step p {
  font-size: 13px;
  color: var(--muted);
  grid-area: text;
}

/* CTA */
.cta {
  padding-bottom: 0;
}

.cta h2 {
  margin-bottom: 16px;
}

.section__title {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.section__title img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.cta__bar {
  background: #23394a;
  color: #dfe6ee;
  padding: 24px 16px 30px;
  text-align: center;
  margin-top: 8px;
}

.cta__bar p {
  margin-bottom: 14px;
}

/* Footer */
.footer {
  background: #1f3342;
  color: #d7dde4;
  padding: 20px 0 12px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 12px;
}

.brand--footer {
  color: #e9eef2;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  justify-content: center;
}

.footer__contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__contact img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.footer__nav {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  font-size: 13px;
}

.footer__bottom {
  text-align: center;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: #aeb8c2;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.footer__bottom img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

/* Responsive - Telas Grandes */
@media (min-width: 1400px) {
  .hero {
    min-height: 500px;
    padding: 60px 0 80px;
  }

  .hero__bg {
    background-size: cover;
    background-position: center;
  }

  .hero__container {
    min-height: 500px;
    gap: 32px;
  }

  .hero__content h1 {
    font-size: 52px;
    margin-bottom: 20px;
  }

  .hero__content p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 28px;
  }

  .hero__content {
    max-width: 650px;
  }

  .brand {
    max-width: 600px;
  }

  .brand__logo {
    width: 180px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 16px;
  }

  .container {
    width: min(1400px, 90%);
  }
}


@media (min-width: 2000px) {
  .hero {
    min-height: 500px;
    padding: 100px 0 120px;
  }

  .hero__container {
    min-height: 500px;
  }

  .container {
    width: min(1800px, 90%);
  }
}

/* Responsive - Telas Médias e Pequenas */
@media (max-width: 1000px) {
  .hero__container {
    grid-template-columns: 1fr;
  }

  .hero__image {
    justify-self: start;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__nav {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero__content h1 {
    font-size: 32px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .map-area__detail {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .map-area__countries {
    position: static;
    margin-top: 16px;
  }

  .steps__grid {
    grid-template-columns: 1fr;
  }
}
