/* =========================================================
   MISSÃO CONEXÕES — BRASIL / PARAGUAI
   Estilos gerais
   ========================================================= */

:root {
  --color-navy: #0F1A35;
  --color-blue: #2B4B9B;
  --color-blue-light: #1C64F2;
  --color-orange: #F2641D;
  --color-orange-light: #FF9A56;
  --color-gray: #D9D9D9;
  --color-gray-light: #F4F4F5;
  --color-white: #FFFFFF;
  --color-placeholder-blue: rgba(134, 168, 255, 0.58);

  --gradient-hero: linear-gradient(120deg, #16225A 0%, #2B4B9B 45%, #1C64F2 100%);
  --gradient-cta: linear-gradient(135deg, #FF9A56 0%, #F2641D 100%);

  --font-main: "Poppins", "Segoe UI", sans-serif;

  --container-width: 1140px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --transition: 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-navy);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   BOTÕES
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-cta);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(242, 100, 29, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(242, 100, 29, 0.45);
}

.btn--primary:active {
  transform: translateY(0);
}

/* =========================================================
   HEADER
   ========================================================= */

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(15, 26, 53, 0.06);
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
}

.logo__img {
  height: 56px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-blue);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--color-navy);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 12px 26px;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-navy);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  background: var(--gradient-hero);
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__inner {
  z-index: 2;
}

.hero__title {
  color: var(--color-white);
  line-height: 1.25;
}

.hero__title-line {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hero__title-line--strong {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.hero__subtitle-box {
  margin-top: 26px;
  max-width: 640px;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero__cta {
  margin-top: 34px;
}

/* =========================================================
   FAIXA DE FOTOS DA MISSÃO (carrossel manual)
   ========================================================= */

.hero-gallery {
  position: relative;
  z-index: 3;
  margin-top: 48px;
  padding: 0 60px 10px;
}

.hero-gallery__track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.hero-gallery__track::-webkit-scrollbar {
  display: none;
}

.hero-gallery__group {
  display: flex;
  gap: 20px;
}

.hero-gallery__item {
  flex: 0 0 auto;
  width: 260px;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--color-white);
  box-shadow: 0 16px 30px rgba(15, 26, 53, 0.2);
  scroll-snap-align: start;
}

.hero-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--color-white);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(15, 26, 53, 0.25);
  z-index: 4;
  transition: transform var(--transition), background var(--transition);
}

.hero-gallery__btn:hover {
  background: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.08);
}

.hero-gallery__btn svg {
  width: 20px;
  height: 20px;
}

.hero-gallery__btn--prev {
  left: 8px;
}

.hero-gallery__btn--next {
  right: 8px;
}
/* =========================================================
   EMPRESAS JÁ VISITADAS
   ========================================================= */

.visited {
  padding: 64px 0 20px;
  text-align: center;
}

.visited__title {
  color: var(--color-blue);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 40px;
}

.visited__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.visited__logo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  background: var(--color-blue);
  border: 1px solid var(--color-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.visited__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.visited__logo:nth-child(1) { transform: rotate(-8deg); }
.visited__logo:nth-child(2) { transform: rotate(6deg) translateY(10px); }
.visited__logo:nth-child(3) { transform: rotate(-5deg) translateY(6px); }
.visited__logo:nth-child(4) { transform: rotate(9deg); }
.visited__logo:nth-child(5) { transform: rotate(-3deg) translateY(8px); }
.visited__logo:nth-child(6) { transform: rotate(7deg); }

/* =========================================================
   SOBRE A MISSÃO
   ========================================================= */

.about {
  padding: 60px 0 70px;
  text-align: center;
}

.about__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-navy);
  max-width: 560px;
  margin: 0 auto 18px;
  line-height: 1.3;
}

.about__title-accent {
  color: var(--color-orange);
}

.about__text {
  max-width: 520px;
  margin: 0 auto;
  color: var(--color-navy);
  opacity: 0.75;
  font-size: 1rem;
  line-height: 1.7;
}
/* O QUE VEM INCLUSO NA MISSÃO */

.included {
  padding: 60px 0;
  text-align: center;
}

.included__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-blue);
  margin-bottom: 30px;
}

.included__list {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.included__item {
  color: var(--color-navy);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* =========================================================
   POR QUE PARTICIPAR
   ========================================================= */

.why {
  padding: 20px 0 80px;
  text-align: center;
}

.why__title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-blue);
  margin-bottom: 46px;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.why__card {
  background: var(--color-navy);
  border-radius: var(--radius-md);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  box-shadow: 0 14px 26px rgba(15, 26, 53, 0.22);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why__card:nth-child(odd) {
  transform: rotate(-2deg);
}

.why__card:nth-child(even) {
  transform: rotate(2deg);
}

.why__card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 18px 32px rgba(15, 26, 53, 0.3);
}

.why__card-title {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

/* =========================================================
   EMPRESAS QUE VOCÊ PODE VISITAR
   ========================================================= */

.companies {
  padding: 20px 0 100px;
  text-align: center;
}

.companies__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 40px;
}

.companies__title span {
  color: var(--color-orange);
}

.companies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.companies__item {
  background: var(--color-gray);
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
  transition: transform var(--transition);
}

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

/* =========================================================
   FOOTER / CTA FINAL
   ========================================================= */

.footer {
  background: var(--color-navy);
  padding: 50px 0 40px;
  text-align: center;
}

.footer__logo {
  height: 100px;
  width: auto;
  margin: 0 auto 26px;
  filter: brightness(0) invert(1);
}

.footer__title {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.4;
}

.footer__cta {
  margin-bottom: 40px;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* =========================================================
   ANIMAÇÃO DE ENTRADA (fade-in ao rolar)
   ========================================================= */

.reveal {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transition: none;
  }
}

/* =========================================================
   O QUE VEM INCLUSO
   ========================================================= */

.included {
  padding: 20px 0 90px;
  text-align: center;
}

.included__title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-blue);
  margin-bottom: 46px;
}

.included__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.included__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 26px 18px;
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.included__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 26px rgba(15, 26, 53, 0.1);
  border-color: transparent;
}

.included__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(43, 75, 155, 0.08);
  color: var(--color-blue);
}

.included__icon svg {
  width: 26px;
  height: 26px;
}

.included__text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.4;
}

/* =========================================================
   RESPONSIVO — TABLET (≤ 1024px)
   ========================================================= */

@media (max-width: 1024px) {
  :root {
    --container-width: 720px;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .hero__title-line {
    font-size: 1.3rem;
  }

  .hero__title-line--strong {
    font-size: 1.9rem;
  }

  .hero__subtitle-box {
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 18px 22px;
  }

  .visited {
    text-align: left;
  }

  .visited__title {
    max-width: 160px;
    text-align: left;
  }

  .visited__grid {
    justify-content: flex-end;
    margin-top: -70px;
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .included__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .companies__grid {
    grid-template-columns: repeat(2, 1fr);
  }

    .included__list {
    grid-template-columns: repeat(3, 1fr);
  }
    .hero-gallery__item {
    width: 210px;
  }
    .hero-gallery {
    padding: 0 46px 10px;
  }
}

/* =========================================================
   RESPONSIVO — MOBILE (≤ 640px)
   ========================================================= */

@media (max-width: 640px) {
  .header__inner {
    height: 66px;
  }

  .logo__img {
    height: 56px;
  }

  .nav {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    height: calc(100vh - 66px);
    background: var(--color-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
    padding-top: 48px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: 26px;
    text-align: center;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 32px 0 48px;
  }

  .hero__title-line {
    font-size: 1.1rem;
  }

  .hero__title-line--strong {
    font-size: 1.5rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
  }

  .visited {
    text-align: center;
    padding: 48px 0 10px;
  }

  .visited__title {
    max-width: 100%;
    text-align: center;
    margin: 0 auto 32px;
  }

  .visited__grid {
    justify-content: center;
    margin-top: 0;
    gap: 16px;
  }

  .visited__logo {
    width: 64px;
    height: 64px;
  }

  .about {
    padding: 44px 0 50px;
  }

  .about__title {
    font-size: 1.4rem;
  }

  .why {
    padding: 10px 0 60px;
  }

  .why__title {
    font-size: 1.3rem;
    margin-bottom: 32px;
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why__card {
    min-height: 110px;
    padding: 14px;
  }

  .why__card-title {
    font-size: 0.8rem;
  }

  .companies {
    padding: 10px 0 70px;
  }

  .companies__title {
    font-size: 1.2rem;
  }

  .companies__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

    .included {
    padding: 10px 0 60px;
  }

  .included__title {
    font-size: 1.3rem;
    margin-bottom: 32px;
  }

  .included__icon svg {
    width: 46px;
    height: 46px;
    align-items: center;
    
  }

  .footer__title {
    font-size: 1.2rem;
    padding: 0 10px;
  }

    .included {
    padding: 10px 0 60px;
  }

  .included__title {
    font-size: 1.3rem;
    margin-bottom: 32px;
  }

  .included__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .included__item {
    padding: 18px 12px;
  }

  .included__icon {
    width: 46px;
    height: 46px;
  }

  .included__icon svg {
    width: 22px;
    height: 22px;
  }
  .hero-gallery {
    margin-top: 32px;
    padding: 0 40px 10px;
  }

  .hero-gallery__item {
    width: 160px;
  }

  .hero-gallery__btn {
    width: 36px;
    height: 36px;
  }
}
