/*
  Este arquivo organiza toda a aparência visual do site.
  A lógica é simples: cada classe representa um bloco da página e recebe estilos específicos.
  Se você quiser alterar algo, procure pela classe correspondente no HTML e ajuste aqui.

  Estrutura do CSS:
  1. reset/base
  2. header/navbar
  3. hero
  4. features
  5. produtos/serviços
  6. formulário
  7. rodapé
  8. botão flutuante
  9. responsividade
*/

/*
  Reset e base da página:
  Aqui o objetivo é padronizar a aparência para que o layout fique consistente em navegadores diferentes.
*/
.page-home,
.home,
.page-home *,
.home * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--foundation-blue-blue-500, #0e2d35);
}

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

button,
input,
a {
  font: inherit;
}

.page-home,
.home {
  background: var(--foundation-blue-blue-500, #0e2d35);
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

/*
  Navbar:
  O header fica centralizado e os itens ficam em linha.
  width: min(1200px, calc(100% - 48px)); faz o cabeçalho se ajustar ao tamanho da tela.
*/
.site-header,
.navbar {
  padding: 50px 0px 50px 0px;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: min(1200px, calc(100% - 48px));
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.group-1 {
  flex-shrink: 0;
  width: 262.85px;
  height: 42px;
  position: relative;
  overflow: visible;
}

.site-nav,
.nav-links {
  display: flex;
  align-items: center;
  gap: 70px;
}

.nav-link,
.institucional,
.servi-os,
.contato {
  color: var(--foundation-gray-gray-50, #fdfefe);
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  transition: opacity 0.2s ease;
}

.nav-link:hover,
.button:hover,
button.button:hover {
  opacity: 0.9;
}

/*
  Botões:
  A classe .button é reutilizada em vários locais. Por isso ela centraliza o estilo principal.
  Ela deixa o botão com fundo verde, bordas arredondadas e alinhamento flexível.
*/
.cta-button,
.button,
button.button {
  background: var(--foundation-green-green-500, #01b2a8);
  border-radius: 21.5px;
  padding: 10px 30px 10px 30px;
  display: inline-flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  color: var(--foundation-blue-blue-900, #061316);
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 8px 18px rgba(1, 178, 168, 0.25);
}

.button:focus-visible,
button.button:focus-visible,
.nav-link:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.button:hover,
button.button:hover {
  transform: translateY(-1px);
}

.fa-6-brands-whatsapp,
.fa-6-brands-whatsapp2 {
  flex-shrink: 0;
  width: 20px;
  height: 22.86px;
  position: relative;
  overflow: visible;
  aspect-ratio: 20/22.86;
}

.agende-j {
  color: var(--foundation-blue-blue-900, #061316);
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

/*
  Hero section:
  A imagem fica como fundo absoluto e o degradê escuro cria legibilidade para o texto.
  O conteúdo textual fica acima, com z-index: 1.
*/
.hero-banner,
.hero {
  padding: 64px 112px 64px 112px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 600px;
  position: relative;
  overflow: hidden;
}

/* Hero background image */
.hero-image,
.cityscape-cable-viaduct-bridge-natal-rio-grande-norte-brazil-1 {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

.rectangle-1 {
  background: linear-gradient(
    90deg,
    rgba(14, 45, 53, 1) 0%,
    rgba(115, 115, 115, 0) 100%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-content,
.frame-2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 533px;
  position: relative;
  z-index: 1;
}

/* Hero section main title */
.hero-title,
.viva-o-rn-com-conforto-e-seguran-a {
  color: var(--foundation-gray-gray-50, #fdfefe);
  text-align: left;
  font-family: "Momo Trust Display", sans-serif;
  font-size: 48px;
  line-height: 125%;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}

/* Hero section subtitle/description */
.hero-subtitle,
.desembarque-em-natal-com-uma-experi-ncia-premium-de-transfer-pontual-e-personalizada-para-voc {
  color: var(--foundation-gray-gray-50, #fdfefe);
  text-align: left;
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  line-height: 150%;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}

/*
  Features / diferenciais:
  Essa seção mostra prova social e benefícios.
  Os cards em linha são organizados com display flex e gap para espaçamento.
*/
.benefits-section,
.features {
  padding: 48px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.benefits-header,
.frame-3 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.frame-32 {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.fa-7-solid-star,
.fa-7-solid-star2,
.fa-7-solid-star3,
.fa-7-solid-star4,
.fa-7-solid-star5 {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  overflow: visible;
  aspect-ratio: 1;
}

/* Features section title */
.features-title,
.experi-ncia-de-primeira-classe {
  color: var(--foundation-gray-gray-50, #fdfefe);
  text-align: center;
  font-family: "Momo Trust Display", sans-serif;
  font-size: 40px;
  line-height: 125%;
  font-weight: 400;
  position: relative;
}

.benefit-grid,
.frame-22 {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.diferenciais {
  background: var(--foundation-blue-blue-50, #e7eaeb);
  border-radius: 50px;
  padding: 36px 0px 36px 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.fa-7-solid-clock,
.fa-7-solid-lock,
.fa-7-solid-handshake,
.fa-7-solid-car {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  position: relative;
  overflow: visible;
  aspect-ratio: 1;
}

/* Feature/benefit card label */
.benefit-label,
.diferencial-label {
  color: var(--foundation-blue-blue-500, #0e2d35);
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  line-height: 125%;
  font-weight: 700;
  position: relative;
  width: 129px;
}

.frame-26 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  height: 560px;
  position: relative;
  overflow: hidden;
}

/* Features section background image */
.features-image,
.minibus-parking-lot-airport-1 {
  width: 100%;
  height: 560px;
  position: relative;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1440/560;
}

/*
  Produtos / serviços:
  Essa seção tem uma imagem de fundo e vários cards de serviço.
  O visual foi montado para parecer uma área de destaque com cartões bem definidos.
*/
.services-section,
.products {
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  height: 998px;
  position: relative;
  overflow: hidden;
}

/* Services section background image */
.services-background,
.tropical-pipa-beach-rio-grande-norte-brazil-northeast-1 {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

/* Services section title */
.services-title,
.para-todos-os-tipos-de-viagens {
  color: var(--foundation-gray-gray-50, #fdfefe);
  text-align: center;
  font-family: "Momo Trust Display", sans-serif;
  font-size: 40px;
  line-height: 125%;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

/* Service cards now clickable to navigate to service detail pages */
.service-card,
.servi-os2 {
  background: var(--foundation-blue-blue-50, #e7eaeb);
  border-radius: 50px;
  padding: 50px;
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 800px;
  height: 160px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.servi-os2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.fa-7-solid-plane-departure,
.fa-7-solid-umbrella-beach,
.fa-7-solid-calendar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  position: relative;
  overflow: visible;
  aspect-ratio: 1;
}

.service-info,
.frame-23 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}

/* Card title - used in service cards and other sections */
.card-title,
.transfer-aeroporto {
  color: var(--foundation-blue-blue-500, #0e2d35);
  text-align: left;
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  line-height: 125%;
  font-weight: 700;
  position: relative;
  align-self: stretch;
}

/* Card description - used in service cards and other sections */
.card-description,
.log-stica-segura-entre-o-aeroporto-de-natal-e-via-costeira-ponta-negra {
  color: var(--foundation-blue-blue-500, #0e2d35);
  text-align: left;
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  line-height: 125%;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}

/*
  Formulário:
  O layout divide em texto de chamada e campos de entrada.
  Isso deixa a parte de cotação mais legível e organizada.
*/
.contact-form,
.form {
  padding: 80px 0px 80px 0px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.form-copy,
.frame-24 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 284px;
  position: relative;
}

/* Contact/form section title */
.form-title,
.solicite-sua-cota-o {
  color: var(--foundation-gray-gray-50, #fdfefe);
  text-align: left;
  font-family: "Momo Trust Display", sans-serif;
  font-size: 48px;
  line-height: 125%;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  height: 96px;
}

/* Contact/form section subtitle */
.form-subtitle,
.informe-os-detalhes-da-sua-viagem-e-entraremos-em-contato-diretamente-com-voc {
  color: var(--foundation-gray-gray-50, #fdfefe);
  text-align: left;
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  line-height: 150%;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  height: 104px;
}

.form-fields,
.frame-25 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 344px;
  position: relative;
  overflow: hidden;
}

.text-field {
  background: var(--foundation-gray-gray-50, #fdfefe);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.field {
  width: 100%;
  color: var(--foundation-blue-blue-200, #909ea2);
  text-align: left;
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  line-height: 125%;
  font-weight: 400;
  position: relative;
  border: none;
  background: transparent;
  outline: none;
}

.field::placeholder {
  color: var(--foundation-blue-blue-200, #909ea2);
}

/*
  Rodapé:
  O copyright é simples e centralizado, para manter a identidade do site sem atrapalhar o layout.
*/
.site-footer,
.copyright {
  padding: 60px 0px 60px 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Footer copyright text */
.copyright-text,
._2026-rsm-receptivo-todos-os-direitos-reservados-design-por-teapot-comunica-o-desenvolvido-por-paris-data {
  color: var(--foundation-gray-gray-50, #fdfefe);
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  position: relative;
}

/*
  Botão flutuante do WhatsApp:
  fixed permite que o botão fique preso na tela mesmo quando o usuário rola a página.
  right e bottom posicionam o botão no canto inferior direito.
*/
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/*
  Responsividade:
  Media queries ajustam o layout para tablets e celulares.
  Sem isso, o site pode ficar apertado em telas menores.
*/
@media (max-width: 1024px) {
  .navbar {
    gap: 32px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .nav-links {
    gap: 28px;
  }

  .hero {
    padding: 48px 40px;
    height: 500px;
  }

  .frame-22 {
    flex-wrap: wrap;
    justify-content: center;
  }

  .servi-os2 {
    width: min(90%, 800px);
  }

  .form {
    flex-direction: column;
    align-items: center;
  }

  .frame-24 {
    width: min(90%, 500px);
    align-items: center;
    text-align: center;
  }

  .frame-25 {
    width: min(90%, 400px);
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100% - 24px);
    gap: 16px 24px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }

  .group-1 {
    width: 200px;
  }

  .hero {
    padding: 32px 20px;
    min-height: 430px;
    height: auto;
  }

  .frame-2 {
    width: min(100%, 420px);
    gap: 18px;
  }

  .viva-o-rn-com-conforto-e-seguran-a,
  .solicite-sua-cota-o,
  .experi-ncia-de-primeira-classe,
  .para-todos-os-tipos-de-viagens {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .desembarque-em-natal-com-uma-experi-ncia-premium-de-transfer-pontual-e-personalizada-para-voc,
  .log-stica-segura-entre-o-aeroporto-de-natal-e-via-costeira-ponta-negra,
  .informe-os-detalhes-da-sua-viagem-e-entraremos-em-contato-diretamente-com-voc {
    font-size: 1rem;
  }

  .frame-22 {
    gap: 20px;
  }

  .diferenciais {
    width: 150px;
    height: 150px;
  }

  .products {
    height: auto;
    padding: 60px 0;
  }

  .service-card,
  .servi-os2 {
    width: min(92%, 800px);
    height: auto;
    padding: 24px;
    gap: 20px;
    align-items: flex-start;
  }

  .frame-23 {
    gap: 10px;
  }

  .form {
    padding: 48px 0;
  }

  .field {
    font-size: 16px;
  }
}

.floating-contact,
.frame-242,
.logos-whatsapp-icon {
  display: none !important;
}
