*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

:root {
  --green-dark: #0D3B40;
  --ink: #0A2622;
  --green-mid: #2d7f78;
  --teal-800: #0A4A44;
  --teal-600: #0E7A6F;
  --green: #207f7b;
  --gold: #F4B23D;
  --sun-600: #E8940F;
  --sun-500: #F5A623;
  --sun-300: #FBC94C;
  --gold-light: #FFE08A;
  --green-light: #D9F0EC;
  --ocean: #A8E6D8;
  --text-dark: #111;
  --text-mid: #444;
  --text-light: #777;
  --white: #fff;
  --bg-light: #F2F4F5;
  --shadow: 0 20px 40px -18px rgba(6, 46, 42, .35);
  --shadow-dark: 0 20px 40px -18px rgba(6, 46, 42, 0.685);
  --radius: 8px;
  --font: 'Baloo 2', sans-serif;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}


.eyebrow-line {
  width: 36px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px
}

.section-eyebrow span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ocean);
}

/* ── TOP BAR ── */
.topbar {
  background: var(--green-mid);
  font-size: 13px;
  padding: 8px 0;
}

.topbar-inner {
max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 0px 10px;
    flex-wrap: wrap;
}

.topbar-inner span {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-inner .socials {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.topbar-inner .socials a {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  transition: background .2s;
}

.topbar-inner .socials a:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #E8EDE8;
  padding: 0;
}

.nav-inner {
  max-width: 1180px;
  margin: 10px auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: var(--text-dark);
  white-space: nowrap;
}

.logo-icon {
  display: flex;
  gap: 3px;
}

.logo-icon img {
  width: auto;
  height: 40px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2
}

.logo-icon span {
  width: 10px;
  height: 22px;
  border-radius: 3px;
  background: var(--green-dark);
}

.logo-icon span:last-child {
  background: var(--gold);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}
.nav-links li {
  display: flex;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
  font-weight: 600;
}

.nav-inner .menu-burguer {
  display: none;
  margin-left: auto;
  font-size: 20px;
  color: var(--text-mid);
  cursor: pointer;
}

.btn-quote {
  background: var(--green-dark);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .1s;
}

.btn-quote:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  background-color: var(--green-mid);
  background-image: url(/assets/img/posts/hero.webp);
  background-position: center;
  background-size: cover;
}

.hero-section {
  background: linear-gradient(to right, var(--green) 5%, rgba(45, 127, 120, 0.24) 100%)
}
/* ── HERO CAROUSEL ── */
.hero.hero-slider {
  position: relative;
  overflow: hidden;
  background-image: none;
  min-height: 620px;
}

.hero-slider .hero-slides {
  position: relative;
  height: 100%;
  min-height: 620px;
}

.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  background-color: var(--green-mid);
  background-position: center;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  z-index: 1;
  border-radius: 0px;
}

.hero-slider .hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slider .hero-slide .hero-section {
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(10, 38, 34, .35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-50%) scale(1.05);
}

.hero-arrow-prev {
  left: 20px;
}

.hero-arrow-next {
  right: 20px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: background .25s ease, width .25s ease, border-radius .25s ease;
}

.hero-dot.is-active {
  background: var(--gold);
  width: 26px;
  border-radius: 6px;
}

@media (max-width: 900px) {
  
  .hero.hero-slider,
  .hero-slider .hero-slides {
    min-height: 620px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 600px) {
  .hero.hero-slider,
  .hero-slider .hero-slides {
    min-height: 620px;
  }

  .hero-arrow {
    display: none;
  }
}

.hero-content {
  position: relative;
  width: 1180px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: flex;
  /* gap: 60px; */
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  height: 420px;
}

.hero-right .hero-circulo {
  position: relative;
  height: 400px;
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
  color: var(--ink);
  width: 230px;
}

.card-boarding {
  top: 58px;
  left: -5%;
  transform: rotate(-6deg);
}

.card-boarding .tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--sun-600);
  text-transform: uppercase;
}

.card-boarding .route {
  font-family: 'Baloo 2';
  font-weight: 700;
  font-size: 20px;
  margin: 4px 0 10px;
  color: var(--teal-800);
}

.card-boarding .route span {
  color: var(--sun-500);
  margin: 0 6px;
}

.card-boarding .meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #6b7b78;
  font-weight: 700;
}

.card-price {
  bottom: 10px;
  left: 100px;
  transform: rotate(5deg);
  width: 190px;
}

.card-price .tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.card-price .amount {
  font-family: 'Baloo 2';
  font-size: 26px;
  font-weight: 700;
  color: var(--sun-600);
  margin-top: 4px;
}

.card-price .amount span {
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}

.hero-left {
  max-width: 500px;
  margin: 20px 0px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-eyebrow .dots {
  display: flex;
  gap: 4px;
}

.hero-eyebrow .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.hero-eyebrow .dot:first-child {
  background: var(--gold);
}

.hero-eyebrow .dot:last-child {
  background: var(--green-dark);
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s
}

.btn-hero-primary {
  background: var(--gold);
  color: var(--navy)
}

.btn-hero-primary:hover {
  background: var(--gold);
  transform: translateY(-2px)
}

.btn-hero-secondary {
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff
}

.btn-hero-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08)
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

.btn-link {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-link:hover {
  color: var(--green-dark);
}

/* hero image mosaic */
.hero-visual {
  position: relative;
  height: 420px;
}

.mosaic {
  position: relative;
  width: 100%;
  height: 100%;
}

.mosaic-img {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  background: #E0E5E0;
}

.mosaic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.m1 {
  top: 0;
  right: 20px;
  width: 200px;
  height: 200px;
}

.m2 {
  top: 0;
  right: 230px;
  width: 140px;
  height: 140px;
}

.m3 {
  bottom: 20px;
  right: 10px;
  width: 260px;
  height: 200px;
}

.badge-stamp {
  position: absolute;
  bottom: 80px;
  right: 200px;
  width: 80px;
  height: 80px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  border: 3px dashed var(--gold);
  z-index: 2;
}

.badge-stamp strong {
  font-size: 16px;
  display: block;
}

.star-accent {
  position: absolute;
  color: var(--gold);
  font-size: 28px;
}

.star-1 {
  bottom: 40px;
  right: 180px;
}

.star-2 {
  top: 40px;
  right: 0;
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--green-dark);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 12s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .5px;
}

.marquee-track .sep {
  color: var(--gold);
  font-size: 20px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── SECTION BASE ── */
section {
  padding: 90px 24px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

/* ── ABOUT ── */
.about {
  background: var(--white);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  justify-content: center;
}

.section-eyebrow .dots {
  display: flex;
  gap: 4px;
}

.section-eyebrow .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.section-eyebrow .dot:first-child {
  background: var(--gold);
}

.section-eyebrow .dot:last-child {
  background: var(--green-dark);
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 50px;
  color: var(--green-mid);
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.about-images-home {
  background-color: var(--gold);
  padding: 40px;
}

.about-images-membro
,.about-images-servico
,.about-images-destino
,.about-images-pacote {
  /* grid-row: span 2; */
  height: auto;
  max-height: 500px;
  max-width: 400px;
  display: flex;
}

.about-img {
  border-radius: none;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid var(--green-mid);
  height: 200px;
  padding: 10px;
  box-shadow: 9px 17px 13px 0px rgba(45, 127, 120, 0.59);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*filter: grayscale(100%);*/
  /* border-radius: 12px; */
  overflow: hidden;
  position: relative;
  background: rgb(255 255 255 / 0%);
  transition: transform .2s, background .2s;
}
.about-img:nth-child(odd) {
  transform: rotate(-3.5deg);
}

.about-img.about-img-membro,
.about-img.about-img-servico,
.about-img.about-img-destino,
.about-img.about-img-pacote {
  transform: none;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid var(--green-mid);
  height: 200px;
  padding: 20px;
  box-shadow: none;
}

.about-img.about-img-membro{
  background: var(--green-mid);
}
.about-images-destino{
  max-height: 800px;
  max-width: 500px;
}
.about-images-servico {
  max-height: 600px;
  max-width: 500px;
}

.about-img.tall {
  grid-row: span 2;
  height: auto;
  min-height: 416px;
}


.about-images .about-images-reserved {
  position: relative;
  overflow: hidden;
  background: var(--green);
  height: 200px;
}

.badge-stamp-sm {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  border: 3px dashed var(--gold);
  z-index: 2;
}

.badge-stamp-sm strong {
  font-size: 14px;
  display: block;
}

.about-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.skill-bars {
  margin-bottom: 32px;
}

.skill {
  margin-bottom: 20px;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.skill-track {
  height: 6px;
  background: #E0E5E0;
  border-radius: 3px;
  overflow: visible;
  position: relative;
}

.skill-fill {
  height: 100%;
  background: var(--green-mid);
  border-radius: 3px;
  position: relative;
  transition: width 1.2s ease;
}

.skill-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-dark);
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-mid);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}

.btn-about:hover {
  background: var(--green-mid);
}

/* ── STATS ── */
.stats {
  border-top: 1px solid #E8EDE8;
  padding: 40px 0 0;
  margin-top: 60px;
  display: flex;
  /* grid-template-columns: repeat(4, 1fr); */
  gap: 0;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.stat {
  padding: 0 10px;
  border-right: 1px solid #E0E5E0;
  text-align: left;
}

.stat:first-child {
  padding-left: 0;
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.stat-number .stat-icon {
  display: flex;
  gap: 3px;
}

.stat-number .stat-icon span {
  width: 9px;
  height: 18px;
  border-radius: 2px;
  background: var(--gold);
  display: block;
}

.stat-number .stat-icon span:last-child {
  background: var(--green-mid);
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
}

/* ── SERVICES ── */
.services {
  background: var(--green);
  color: var(--white);
}

.services .section-eyebrow .dot:first-child {
  background: var(--gold);
}

.services .section-eyebrow .dot:last-child {
  background: rgba(255, 255, 255, 0.4);
}

.services .section-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.services .section-title {
  color: var(--white);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.services-header .section-title {
  text-align: left;
  margin-bottom: 0;
  max-width: 440px;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .2s, background .2s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

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

.service-card {
  /* border-radius: 12px; */
  overflow: hidden;
  position: relative;
  background: rgb(255 255 255 / 0%);
  border: 30px solid rgb(255 255 255);
  transition: transform .2s, background .2s;
}

.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.service-card.featured {
  background: var(--gold);
  border-color: var(--gold);
}

.service-card.featured:hover {
  background: #d1f640;
}

.service-card-img {
  height: 180px;
  background: #2D7F78;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  /* filter: grayscale(80%) brightness(.7); */
}

.service-card.featured .service-card-img {
  background: #FFE08A;
}

.service-card.featured .service-card-img img {
  filter: none;
}

.service-card-body {
  padding: 24px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card.featured h3 {
  color: var(--green-dark);
}

.service-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card.featured p {
  color: var(--green-dark);
  opacity: .75;
}

.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.service-link:hover {
  gap: 10px;
}

.service-card.featured .service-link {
  color: var(--green-dark);
}

/*CERTIFICATIONS*/
.certificate-section {
  background: var(--gold);
  text-align: center;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.certificate-section .eyebrow-line {
  width: 36px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

.certificate-section .section-eyebrow{
  color: var(--white);
  margin: 40px auto;
}

.certificate-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.certificate-content {
  max-height: 100px;
  max-width: 250px;
  padding: 0 24px;
  border-right: 1px dashed #E0E5E0;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.certificate-content:last-child {
  border-right: medium none currentcolor;
}

.certificate-content img {
  border-radius: 12px;
  width: 80%;
  height: 100%;
  margin-bottom: 10px;
  object-fit: cover;
  filter: grayscale(100%);
  background-color: #ffffff;
}

.certificate-content .certificate-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

/* ── CONTACT/CTA ── */
.cta-section {
  background: var(--green-light);
  text-align: center;
  padding: 80px 24px;
}

.cta-section .section-title {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 10px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  transition: background .2s;
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content {
    padding: 10px 24px 60px;
  }

  .hero,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 320px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .stat {
    border-right: none;
    border-bottom: 1px solid #e0e8e0;
    padding-bottom: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-inner {
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 40px;
    transition: height .2s ease;
  }

  .nav-inner.is-open {
    height: auto;
    padding-bottom: 16px;
  }

  .nav-links, .planejar-viagem {
    display: none;
  }

  .nav-inner.is-open .nav-links,
  .nav-inner.is-open .planejar-viagem {
    display: flex;
  }

  .nav-links {
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 8px 0 0;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 4px;
    border-bottom: 1px solid #E8EDE8;
  }

  .planejar-viagem {
    order: 5;
    width: 100%;
    margin-top: 12px;
  }

  .planejar-viagem .btn-quote {
    width: 100%;
  }

  .nav-inner .menu-burguer {
    display: block;
    order: 3;
  }
  .hero-right {
    display: none;
  }
  .certificate-content {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 0px;
  }
  .hero-slider .hero-slide{
    border-radius: 0px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #E0E5E0;
  }

  section {
    padding: 60px 16px;
  }
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--green-dark);
  color: var(--white);
  padding: 20px 80px;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.page-header h1 {
  font-size: clamp(12px, 4vw, 42px);
  font-weight: 800;
  /*margin-bottom: 12px;*/
  padding-right: 10px;
  border-right: 2px solid;
}

.page-header .breadcrumb {
  font-size: 14px;
  color: #A8E6D8;
}

.page-header .breadcrumb a {
  color: #A8E6D8;
  text-decoration: none;
}

.page-header .breadcrumb a:hover {
  color: var(--gold);
}

.inner-section {
  padding: 80px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.card-sobre img {
  width: 100%;
  height: 180%;
  object-fit: cover;
  object-position: top;
}

.simple-card-body-sobre {
  background-color: var(--bg-light);
  padding: 12px;
  position: relative;
  margin: 1px 20px;
  border-radius: 8px;
}

.simple-card-body-sobre h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--green);
}

.simple-card-body-sobre p {
  font-size: 13.5px;
  color: var(--gold);
  line-height: 1.6;
}


.inner-section.alt {
  background: var(--bg-light);
  max-width: none;
}

.inner-section.folha-primary {
  background: var(--ink);
  max-width: none;
}

.inner-section.folha-secundary {
  background: var(--sun-600);
  max-width: none;
  border-top: 1px solid var(--sun-500);
}

.inner-section.folha-secundary .eyebrow-line {
    width: 36px;
    height: 3px;
    background: var(--green-dark);
    border-radius: 2px;
}
.inner-section.folha-secundary .section-title {
    text-align: center;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 50px;
    color: #ffffff;
}

.inner-section.folha-secundary .section-eyebrow span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-light);
}

.inner-section.alt .inner-section-in {
  max-width: 1180px;
  margin: 0 auto;
}

/* generic content grid for SOBRE / SERVICOS etc */
.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  /*align-items: center;*/
}

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

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

/* simple cards (services, blog, gallery, packages) */
.simple-card {
    /* border-radius: 12px; */
    overflow: hidden;
    position: relative;
    background: rgb(255 255 255 / 0%);
    border: 30px solid rgb(255 255 255);
    transition: transform .2s, background .2s;
}
.simple-card:nth-child(odd) {
  border: 30px solid var(--green-mid);
  transform: rotate(-3.5deg);
}
.simple-card:nth-child(even) {
  border: 30px solid var(--gold);
  transform: rotate(1.5deg);
  box-shadow: var(--shadow-dark)
}

.card-sobre {
  background: var(--white);
  border: 1px solid #E8EDE8;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  height: 400px;
}

.simple-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(14, 58, 79, 0.1);
}

.simple-card-img,
.card-sobre-img {
  height: 170px;
}

.card-sobre .card-sobre-img {
  height: 250px;
}

.simple-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.simple-card-body {
  padding: 22px;
}

.simple-card-body h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.simple-card-body p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}

.simple-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

/* package price tag */
.price-tag {
  font-size: 22px;
  font-weight: 800;
  color: var(--green-dark);
}

.price-tag span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
}

/* gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
}

/* destaca a 1ª e a 5ª foto num bloco maior, dando um efeito "bento" */
.gallery-item:nth-child(4n+1) {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(to top, rgba(10, 38, 34, .92) 0%, rgba(10, 38, 34, .38) 50%, rgba(10, 38, 34, 0) 85%);
  color: var(--white);
}

.gallery-item-categoria {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.gallery-item-titulo {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--white);
  line-height: 1.25;
}

.gallery-item-ver {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}

.gallery-item:hover .gallery-item-ver,
.gallery-item:focus-visible .gallery-item-ver {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* página de detalhe da foto */
.foto-detalhe {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.foto-detalhe-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 480px;
}

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

.foto-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(10, 38, 34, .35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.foto-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-50%) scale(1.06);
}

.foto-nav-prev {
  left: 16px;
}

.foto-nav-next {
  right: 16px;
}

.foto-detalhe-contador {
  font-size: 13px;
  color: var(--text-light);
  margin: 14px 0 18px;
}

.foto-voltar {
  display: inline-block;
  margin-top: 14px;
  margin-left: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
}

.foto-voltar:hover {
  color: var(--green-dark);
}

/* FAQ accordion */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E8EDE8;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--text-dark);
}

.faq-question .icon {
  font-size: 18px;
  color: var(--gold);
  transition: transform .2s;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 12px;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-item .ic {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-info-item h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 13.5px;
  color: var(--text-light);
  text-decoration: none;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dfe5df;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  background: var(--green-dark);
  color: var(--white);
  border: none;
  padding: 13px 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.btn-submit:hover {
  background: var(--green-mid);
}

/* legal pages */
.legal-content {
  max-width: 820px;
  margin: 0 20px;
}
.legal-content.post {
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 20px;
  color: var(--green-dark);
  margin: 32px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content .updated {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.section-eyebrow.left {
  justify-content: flex-start;
}

@media (max-width: 900px) {

  .content-grid-2,
  .content-grid-3,
  .content-grid-4,
  .foto-detalhe {
    grid-template-columns: 1fr;
  }

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

  .gallery-item:nth-child(4n+1) {
    grid-column: span 2;
  }

  .foto-detalhe-img {
    height: 340px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .page-header {
    padding: 20px 20px;
    text-align: left;
  }
  .about-images-membro,
  .about-images-servico,
  .about-images-destino,
  .about-images-pacote {
    display: flex;
    justify-content: center;
  }
}

/* map */
.map-section {
  margin-top: 10px;
}
 
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
  margin-top: 30px;
}
 
.map-card iframe {
  display: block;
  width: 100%;
  filter: grayscale(12%) contrast(1.02);
}
 
.map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--green-light);
}
 
.map-footer-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}
 
.map-footer-info i {
  color: var(--green-dark);
}
 
@media (max-width: 600px) {
  .map-card iframe {
    height: 300px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item:nth-child(4n+1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .foto-detalhe-img {
    height: 260px;
  }

  .foto-nav {
    width: 36px;
    height: 36px;
  }
 
  .map-footer {
    justify-content: flex-start;
  }
}

.map-card-lazy {
  position: relative;
  min-height: 420px;
  border-radius: 14px;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #eef1f4;
  color: var(--text-light, #666);
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s ease;
}

.map-placeholder:hover,
.map-placeholder:focus-visible {
  background: #e4e8ec;
}

.map-placeholder i {
  font-size: 28px;
  color: var(--primary, #d0473c);
}


/*========================================TRANSIÇÃO DE PÁGINAS==========================================*/

@view-transition{
  navigation: auto;
}

::view-transition-group(root){
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
}

.gallery-item, .foto-detalhe-img {
  view-transition-name: gallery-item;
}