/* Vooaria — cores chapadas, sem degradês, sem sombras coloridas */
:root {
  --branco: #fff;
  --azul: #012450;
  --rosa: #f75b8e;
  --font: "Outfit", system-ui, sans-serif;
  --wrap: min(1120px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--azul);
  background: var(--branco);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration: underline;
}

.u-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--rosa);
  color: var(--branco);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.text-rose {
  color: var(--rosa);
}

.text-azul {
  color: var(--azul);
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--branco);
}

.site-header__inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  max-width: min(78vw, 380px);
}

.site-logo__img {
  width: auto;
  max-width: 100%;
  max-height: 80px;
}

@media (max-width: 480px) {
  .site-logo__img {
    max-height: 64px;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--branco);
  border: none;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--azul);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  align-items: center;
}

.site-nav__list > li {
  display: flex;
  align-items: center;
}

.site-nav__item--langs {
  margin-inline-end: 0.15rem;
}

.site-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  color: var(--azul);
  padding-block: 0.3rem;
}

.site-nav a:hover {
  color: var(--rosa);
  text-decoration: none;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.05rem;
  width: 1.5rem;
  height: 1.5rem;
  border: 1.5px solid rgba(1, 36, 80, 0.12);
  border-radius: 50%;
  background: var(--branco);
  cursor: pointer;
  font: inherit;
  line-height: 0;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.lang-switcher__flag {
  display: block;
  width: 1.22rem;
  height: 1.22rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(1, 36, 80, 0.08);
}

.lang-switcher__svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lang-switcher__btn:hover {
  border-color: rgba(1, 36, 80, 0.28);
  background: rgba(1, 36, 80, 0.04);
}

.lang-switcher__btn.is-active {
  border-color: var(--rosa);
  background: rgba(247, 91, 142, 0.1);
  box-shadow: inset 0 0 0 1px rgba(247, 91, 142, 0.22);
}

.lang-switcher__btn:focus-visible {
  outline: 2px solid var(--rosa);
  outline-offset: 2px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--branco);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 420px;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.75rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn--rose {
  background: var(--rosa);
  color: var(--branco);
}

.btn--rose:hover {
  text-decoration: none;
  opacity: 0.92;
}

.btn--ghost {
  background: var(--branco);
  color: var(--azul);
}

.btn--ghost:hover {
  text-decoration: none;
  background: var(--azul);
  color: var(--branco);
}

.btn--azul {
  background: var(--azul);
  color: var(--branco);
}

.btn--azul:hover {
  text-decoration: none;
  opacity: 0.92;
}

.btn--branco {
  background: var(--branco);
  color: var(--azul);
}

.btn--branco:hover {
  text-decoration: none;
  opacity: 0.92;
}

/* Hero — slider full width, sem máscaras nem caixa branca */
.hero {
  position: relative;
  width: 100%;
  min-height: min(88vh, 780px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
  background: var(--azul);
  scroll-margin-top: 5.5rem;
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(1, 36, 80, 0.5);
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(40rem, calc(100% - 2rem));
  padding-inline: 1.25rem;
  margin-inline: auto;
}

.hero__content {
  text-align: center;
}

.hero .hero__kicker,
.hero .hero__title,
.hero .hero__lead,
.hero .hero-services__item {
  color: var(--branco);
}

.hero .hero__lead {
  opacity: 0.95;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero__lead {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.hero-services {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: min(32rem, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 0.85rem;
  justify-items: stretch;
  align-items: start;
}

.hero-services__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}

@media (min-width: 481px) {
  .hero-services__item:nth-child(odd) {
    flex-direction: row-reverse;
  }

  .hero-services__item:nth-child(odd) > span:not(.hero-services__icon) {
    text-align: right;
  }
}

.hero-services__item > span:not(.hero-services__icon) {
  min-width: 0;
  line-height: 1.25;
}

.hero-services__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosa);
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.hero-services__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

@media (max-width: 480px) {
  .hero-services {
    grid-template-columns: 1fr;
    max-width: 20rem;
  }
}

/* Sections */
.section {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
}

.section--white {
  background: var(--branco);
}

.section--tight {
  padding-top: 3rem;
}

.section--navy {
  background: var(--azul);
  color: var(--branco);
}

.section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 700;
}

.section__title--light {
  color: var(--branco);
}

.section__intro {
  margin: 0 0 2rem;
  max-width: 40rem;
  font-size: 1.05rem;
}

.section__intro--light {
  color: rgba(255, 255, 255, 0.92);
}

.section__text + .section__text {
  margin-top: 1rem;
}

.section__text {
  margin: 0;
  max-width: 36rem;
}

.section__grid {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}

@media (min-width: 800px) {
  .section__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .about-card {
    min-height: 100%;
    height: 100%;
  }
}

.about-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--rosa);
  color: var(--branco);
  padding: 2rem 1.75rem;
  box-sizing: border-box;
}

.about-card__stats {
  flex: 0 0 auto;
}

.about-card__stat {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
}

.about-card__stat:last-child {
  margin-bottom: 0;
}

.about-card strong {
  font-size: 1.5rem;
  font-weight: 700;
}

.about-card__selos {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.about-card__selo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: var(--branco);
  color: var(--rosa);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-card__selo-icon {
  display: inline-flex;
  color: var(--rosa);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.about-card__selo-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.25;
}

/* Secção imagem full + parallax (diferenciais) */
.section--fullphoto {
  position: relative;
  overflow: hidden;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: center;
  background-color: var(--azul);
}

.section__fullphoto-bg {
  position: absolute;
  left: -8%;
  right: -8%;
  top: -45%;
  bottom: -45%;
  z-index: 0;
  background-color: var(--azul);
  background-image: var(--section-img);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  transform-origin: center center;
}

.section__fullphoto-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(1, 36, 80, 0.45);
}

.section__content--fullphoto {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section__title--on-photo {
  color: var(--branco);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.checks--on-photo {
  margin: 1.75rem auto 0;
  padding: 0;
  max-width: 38rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.checks--on-photo .checks__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.65rem;
  width: fit-content;
  max-width: min(36rem, 100%);
  margin: 0 auto 1.1rem;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--branco);
}

.checks--on-photo .checks__item:last-child {
  margin-bottom: 0;
}

.checks--on-photo .checks__body {
  text-align: right;
  max-width: 30rem;
}

.checks--on-photo .checks__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: var(--rosa);
}

.checks--on-photo .checks__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

@media (max-width: 640px) {
  .section__content--fullphoto {
    max-width: 100%;
    padding-inline: 1.1rem;
    align-items: stretch;
  }

  .section__title--on-photo {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    line-height: 1.2;
    margin-bottom: 0.35rem;
  }

  .checks--on-photo {
    margin-top: 1.25rem;
    align-items: stretch;
    max-width: 100%;
  }

  .checks--on-photo .checks__item {
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    gap: 0.7rem;
  }

  .checks--on-photo .checks__body {
    text-align: left;
    max-width: none;
    flex: 1;
    min-width: 0;
  }

  .checks--on-photo .checks__icon {
    margin-top: 0.2rem;
  }
}

.section.section--fullphoto {
  padding: 5rem 0 5.5rem;
}

@media (max-width: 700px) {
  .section.section--fullphoto {
    padding: 3.5rem 0;
    min-height: 520px;
  }

  .section__fullphoto-bg {
    left: -5%;
    right: -5%;
    top: -36%;
    bottom: -36%;
  }
}

/* Serviços — imagem full + véu rosa translúcido (sem borda azul) */
.section--servicos {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: 5rem 0 5.5rem;
  background: var(--rosa);
}

.section--servicos .section__photo {
  position: absolute;
  left: -8%;
  right: -8%;
  top: -40%;
  bottom: -40%;
  z-index: 0;
  background-color: var(--azul);
  background-image: var(--section-img);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  transform-origin: center center;
}

.section--servicos .section__rosa-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(247, 91, 142, 0.52);
}

.section--servicos .section__content {
  position: relative;
  z-index: 3;
}

.section--servicos .section__parallax {
  z-index: 2;
}

.section__content {
  position: relative;
  z-index: 3;
}

.section__content--on-dark .section__title,
.section__content--on-dark .section__intro {
  max-width: 42rem;
}

.section__parallax {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.section__parallax--soft {
  right: 3%;
  bottom: 8%;
  width: min(38%, 360px);
  opacity: 0.5;
}

.section__parallax--soft svg {
  display: block;
}

@media (max-width: 700px) {
  .section--servicos {
    min-height: 420px;
    padding: 3.5rem 0;
  }

  .section--servicos .section__photo {
    left: -5%;
    right: -5%;
    top: -30%;
    bottom: -30%;
  }

  .section__content--on-dark .card {
    background: rgba(1, 36, 80, 0.42);
  }
}

/* Cards */
.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  padding: 1.5rem 1.35rem;
}

.card--dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--branco);
}

.card__icon {
  display: block;
  color: var(--rosa);
  width: 28px;
  height: 28px;
  margin-bottom: 0.75rem;
}

.card__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.card__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.card__text {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

/* Destinos */
.destinos {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .destinos {
    grid-template-columns: repeat(3, 1fr);
  }
}

.destino {
  display: flex;
  flex-direction: column;
  background: var(--azul);
  color: var(--branco);
}

.destino__photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.destino__body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.destino__name {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.destino__meta {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.9;
}

/* Checks */
.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 40rem;
}

.checks__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.checks__icon {
  flex-shrink: 0;
  color: var(--rosa);
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.checks__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 3;
}

/* Contact */
.contact-content {
  max-width: 38rem;
  margin-inline: auto;
  text-align: center;
}

.contact-content .section__title--light,
.contact-content .section__intro--light {
  margin-left: auto;
  margin-right: auto;
}

.contact-block {
  margin-bottom: 1.25rem;
}

.contact-block__label {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rosa);
}

.contact-block__value {
  display: block;
  font-size: 1.05rem;
  text-decoration: none;
  margin-bottom: 0.35rem;
}

.contact-block__value:hover {
  text-decoration: underline;
}

.contact-note {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1.5rem auto 0;
  max-width: 34rem;
  font-size: 0.95rem;
  opacity: 0.95;
  text-align: left;
}

.contact-note__icon {
  color: var(--rosa);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-note__icon svg {
  width: 22px;
  height: 22px;
}

/* Footer */
.site-footer {
  background: var(--rosa);
  color: var(--branco);
  padding: 2rem 0;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.site-footer__brand {
  margin: 0;
  font-weight: 700;
  font-size: 1.25rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.9rem;
  color: var(--branco);
}

.site-footer__copy #year {
  color: var(--branco);
}

.site-footer__top {
  font-weight: 600;
  text-decoration: none;
}

.site-footer__top:hover {
  text-decoration: underline;
}
