/* Como chegar — só na /local/. Visual alinhado ao bloco da /es, sem puxar o CSS inteiro da página em espanhol. */

.arrive-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(60px, 7vw, 100px);
  color: var(--color-white);
  background:
    radial-gradient(circle at 18% 0%, rgba(244, 158, 18, 0.16), transparent 46%),
    linear-gradient(165deg, #14102a 0%, #0e2a32 48%, #0b1220 100%);
}

.arrive-section__row {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.arrive-section__eyebrow {
  margin: 0 0 8px;
  color: #f4c56a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.arrive-section__title {
  max-width: 760px;
  margin-inline: auto;
  color: var(--color-white);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.arrive-section__text {
  max-width: 640px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  text-wrap: pretty;
}

.arrive-section__grid {
  display: grid;
  gap: 16px;
  width: min(100%, 860px);
  margin: clamp(28px, 4vw, 40px) auto 0;
}

.arrive-card {
  padding: 22px 22px 24px;
  border: 1px solid rgba(244, 158, 18, 0.28);
  border-radius: 16px;
  background: rgba(10, 18, 36, 0.55);
}

.arrive-card__code {
  margin: 0;
  color: #f4c56a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.arrive-card__title {
  margin: 8px 0 0;
  color: var(--color-white);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  line-height: 1.2;
}

.arrive-card__text {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.arrive-section__facts {
  width: min(100%, 640px);
  margin: clamp(22px, 3vw, 32px) auto 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.arrive-section__facts li {
  position: relative;
  padding-left: 1.15em;
}

.arrive-section__facts li + li {
  margin-top: 10px;
}

.arrive-section__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f4c56a;
}

.arrive-section__address {
  width: min(100%, 640px);
  margin: clamp(22px, 3vw, 32px) auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.arrive-section__address a {
  color: #f4c56a;
  text-underline-offset: 0.22em;
}

.arrive-section__address a:hover,
.arrive-section__address a:focus-visible {
  color: var(--color-white);
}

.arrive-section__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
  margin-top: clamp(26px, 3vw, 38px);
}

.arrive-section__cta {
  --button-bg-color: var(--color-purple);
  --button-bg: linear-gradient(135deg, var(--color-purple), #35e0ff);
  --button-shadow: rgba(82, 25, 214, 0.34);
}

.arrive-section__more {
  color: #f4c56a;
  font-size: 16px;
  font-weight: 700;
  text-underline-offset: 0.22em;
}

.arrive-section__more:hover,
.arrive-section__more:focus-visible {
  color: var(--color-white);
}

@media (min-width: 768px) {
  .arrive-section__grid {
    grid-template-columns: 1fr 1fr;
  }
}
