*,
*::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: #FAAD3A;
  --sun-300: #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: 'Segoe UI', system-ui, 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(--sun-500);
  border-radius: 2px
}

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

/* ── TOP BAR ── */
.topbar {
  background: var(--teal-600);
  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(--sun-500);
  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;
  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: 50px;
  fill: none;
  stroke: var(--sun-500);
  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(--sun-500);
}

.nav-links {
  display: flex;
  gap: 10px;
  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;
  padding: 10px;
  border: 1px solid var(--white);
  border-radius: 6px;
  transition: .3s all ease-in-out;
}


.nav-links a.active {
  color: var(--white);
  font-weight: 600;
  background: var(--teal-600);
  border-radius: 6px;
  padding: 10px;
}

.nav-links a:hover {
  border: 1px solid var(--sun-500);
}

.nav-links a.active:hover {
  border: none;

}

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

.btn-quote {
  background: var(--teal-600);
  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: rgb(45 127 120 / 51%);*/
}

/* ── 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: 84px;
  border-radius: 12px;
  border: 1px solid var(--sun-600);
  background: var(--sun-600);
  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(--sun-500);
  border-color: var(--sun-500);
  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(--sun-500);
  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; */
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}

.hero-right {
  position: relative;
  display: flex;
  height: 420px;
  align-items: flex-end;
}

.hero-right .hero-circulo {
  display: flex;
  bottom: 10px;
  position: relative;
  height: 200px;
  width: 250px;
  border-radius: 12px;
  background: transparent;
  flex-direction: column;
}

.float-card {
  /* position: absolute; */
  background: var(--white);
  border-radius: 20px;
  padding: 18px 20px;
  color: var(--ink);
  width: 230px;
  height: 100px;
  border: 1px solid var(--teal-600);
}

.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;
  background: linear-gradient(to right, #207f7b94 1%, rgba(45, 127, 120, 0.24) 100%);
  padding: 20px 20px;
  border-radius: 12px;
}

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

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

.hero-eyebrow span {
  color: var(--white);
}

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

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

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

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

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

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

.hero-btns {
  display: flex;
  gap: 10px;
  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(--sun-500);
  color: var(--white)
}

.btn-hero-primary:hover {
  background: var(--sun-500);
  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(--teal-600);
  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(--sun-500);
  z-index: 2;
}

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

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

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

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

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--teal-600);
  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(--sun-500);
  font-size: 20px;
}

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

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

/* ── SECTION BASE ── */
section {
  padding: 1.5rem;
}

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

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

.about .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-header-home {}

.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(--sun-500);
}

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

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

.section-title.title-center {
  text-align: left;
}

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

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

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

.about-images-home {
  padding: 0;
  border-radius: var(--radius);
}

.about-images-membro,
.about-images-servico,
.about-images-destino,
.about-images-pacote {
  height: auto;
  max-height: 500px;
  max-width: 400px;
  display: flex;
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--green-mid);
  height: 250px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: rgb(255 255 255 / 0%);
  transition: transform .2s, background .2s;
}

.about-img .ver-foto {
  display: flex;
  gap: 10px;
  position: absolute;
  font-weight: bolder;
  bottom: 10px;
  left: 10px;
  background: var(--teal-600);
  color: var(--white);
  padding: 10px 20px;
  border: 2px solid var(--sun-500);
  border-radius: 8px;
}

.about-outras-images-destino {
  position: relative;
  display: flex;
  height: 150px;
  align-items: center;
}

.about-outras-images-destino button {
  position: absolute;
  background: var(--gold);
  padding: 10px;
  z-index: 30;
}

.about-outras-images-destino button.right {
  right: 10px;
}

.about-outras-images-destino button.left {
  left: -10px;
}

.about-outras-images-destino ul {
  height: 100px;
  list-style: none;
  display: flex;
  gap: 10px;
  border: 1px solid var(--teal-600);
  border-radius: 12px;
  background: var(--teal-600);
  padding: 10px;
}

.about-outras-images-destino ul li {
  display: flex;
  max-height: 80px;
  min-width: 110px;
  background: var(--sun-500);
  transform: none;
  border: 1px solid var(--sun-500);
  border-radius: 10px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.about-outras-images-destino ul li img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.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: var(--white);
  border: 2px solid var(--green-mid);
  height: 200px;
  box-shadow: none;
}

.about-images-destino {
  max-height: 800px;
  max-width: 500px;
  flex-direction: column;
}

.about-content{
  min-height: 400px;
  max-height: 700px;
  overflow-y: auto;
}

.about-images-servico {
  max-height: 600px;
  max-width: 500px;
}

.about-img.tall {
  position: relative;
  grid-row: span 2;
  height: auto;
}


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

.badge-stamp-sm {
  position: absolute;
  bottom: -10px;
  left: 80%;
  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(--sun-500);
  z-index: 2;
}

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

.about-content p {
  font-size: 16px;
  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(--sun-500);
  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 var(--bg-light);
  border-radius: 12px;
  padding: 10px;
  margin-top: 2rem;
  display: flex;
  /* grid-template-columns: repeat(4, 1fr); */
  gap: 0;
  justify-content: space-evenly;
  flex-wrap: wrap;
  background: var(--teal-600);
}

.stat {
  padding: 0 10px;
  /* border-right: 1px solid #E0E5E0; */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.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(--bg-light);
  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(--sun-500);
  display: block;
}

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

.stat-label {
  font-size: 13px;
  color: var(--white);
  font-weight: bolder;
}

/* ── PACOTES ── */
.pacotes {
  background: transparent;
  color: var(--green);
}

.circle {
  display: none;
  position: absolute;
  padding: 5rem;
  background: var(--teal-600);
  border-radius: 50%;
  right: 16px;
  height: 200px;
  width: 200px;
}

.pacotes .container {
  padding-top: 2rem;
  margin-bottom: 0;
  border-top: 1px solid;
}

.pacote-especial-home .container {
  padding-bottom: 2rem;
  border-top: none;
  border-bottom: 1px solid;
}

.pacotes-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.pacotes .section-eyebrow .dot:first-child {
  background: var(--sun-500);
}

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

.pacotes .section-eyebrow,
.blog-home .section-eyebrow {
  color: rgba(255, 255, 255, 0.6);
  justify-content: flex-start;
}

.pacotes .section-title {
  color: var(--green);
}

.pacotes-header,
.blogs-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.pacotes-header .section-eyebrow span {
  color: var(--green);
}

.pacotes-header.pacote-home .section-eyebrow span,
.blog-home .section-eyebrow span {
  color: var(--green);
}

.pacotes-header .section-title,
.blogs-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;
}

.blog-home .btn-outline-white,
.pacotes-header .btn-outline-white {
  border: 1.5px solid var(--teal-600);
  color: var(--teal-600);
}

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

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

.pacote-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--white);
  border: 1px solid var(--green);
  transition: transform .2s, background .2s;
}

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

.pacote-card.featured {
  background: var(--sun-500);
  border-color: var(--sun-500);
}

.pacote-card-img {
  height: 180px;
  background: var(--teal-600);
  overflow: hidden;
  border-radius: 8px 8px 0 0;

}

.pacote-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  /*border-radius: 10px 10px 0 0;
  filter: grayscale(80%) brightness(.7); */
}

.pacote-card.featured .pacote-card-img {
  background: var(--sun-500);
}

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

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

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

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

.pacote-card p {
  font-size: 13px;
  color: var(--green-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pacote-card.featured p {
  color: var(--green-dark);
}

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

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

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

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

.services .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.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: center;
  align-items: flex-end;
}

.services-header.service-home {
  justify-content: space-between;
}

.services-header .section-eyebrow span {
  color: var(--green);
}

.services-header.service-home .section-eyebrow span {
  color: var(--white);
}

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


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

.service-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--white);
  border: 10px solid var(--white);
  transition: transform .2s, background .2s;
}

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

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

.service-card-img {
  height: 180px;
  background: var(--teal-600);
  overflow: hidden;
  border-radius: 8px;
}

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

.service-card.featured .service-card-img {
  background: var(--sun-300);
}

.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(--green-dark);
}

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

.service-card p {
  font-size: 13px;
  color: var(--green-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--sun-500);
  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);
}

/*PACOTE ESPECIAL HOME*/

.pacotes-especial-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 1rem;
}

.pacote-especial-home-img {
  display: flex;
  height: 400px;
  width: auto;
  overflow: hidden;
  background-color: var(--teal-600);
  border-radius: 12px;
  justify-content: center;
}

.pacote-especial-home-img img {
  position: absolute;
  margin-top: -2rem;
  max-height: 28rem;
  width: auto;
  max-width: 20rem;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.pacote-especial-home-descricao {
  padding: 1rem;
  border: 1px solid;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.pacote-especial-home-descricao .section-title {
  text-align: center;
}

.pacote-especial-home-descricao p {
  text-align: center;
}

.pacote-especial-home-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--white);
  border: 10px solid rgb(255 255 255);
  transition: transform .2s, background .2s;
}

.pacote-especial-home-card.featured {
  background: var(--teal-600);
  border-color: var(--teal-600);
}

.pacote-especial-home-card-body {
  padding: 24px;
}

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

.pacote-especial-home-card.featured p {
  color: var(--white);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.pacote-especial-home-card.featured .pacote-link {
  color: var(--white);
}


/*CERTIFICATIONS*/
.certificate-section {
  background: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.certificate-section .etiqueta {
  padding: 10px;
  position: absolute;
  background: var(--sun-500);
  color: var(--teal-800);
  width: 12rem;
  height: 8vh;
  border-radius: 6px;
  left: 13rem;
  margin-top: 5rem;
  font-weight: bolder;
}

.certificate-section .container {
  display: flex;
  width: 100%;
  padding: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
  background-color: var(--teal-600);
  border-radius: 12px;
  flex-direction: column;
}

.header-certify {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.certificate-section .eyebrow-line {
  background: var(--sun-500);
}

.certificate-section .section-eyebrow span {
  color: var(--white);
}

.certificate-section .section-title {
  margin-bottom: 10px;
  text-align: left;
  color: var(--sun-500);
}

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

.certificate-section .container ul {
  display: grid;
  list-style: none;
  text-align: left;
  color: var(--green-dark);
  gap: 10px;
}

.certificate-section .container ul li span {
  font-weight: bold;

}

.certificate-grid {
  display: flex;
  grid-auto-flow: column;
  flex-wrap: wrap;
  gap: 1rem;
  align-content: flex-start;
}

.certificate-explain {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
}

.certificate-content {
  max-height: 80px;
  max-width: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px dashed var(--sun-500);
  border-radius: 10px;
}


.certificate-content img {
  width: 100%;
  /*min-width: 160px;*/
  height: 100%;
  object-fit: cover;
  background-color: var(--white);
  border-radius: 10px;
}

.certificate-explain .certificate-label {
  width: auto;
  min-width: 200px;
  max-width: 600px;
  text-align: justify;
  color: var(--white);
}

/* ── CONTACT/CTA ── */
.cta-section {
  display: flex;
  background: var(--white);
  text-align: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 4rem 1.5rem;
}

.cta-section .container {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--teal-800);
  width: 100%;
  padding: 0 2rem;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 10px;
  margin: 0rem auto;
}

.cta-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem .5rem;
}

.cta-section .eyebrow-line {
  background: var(--white);
}

.cta-section .section-title em {
  color: var(--sun-500);
}

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

.cta-section .container .describe {
  margin-top: 2rem;
  text-align: left;
  max-width: 600px;
}

.cta-section .section-eyebrow {
  justify-content: left;
}

.cta-section .section-eyebrow span {
  color: var(--sun-500);
}

.cta-section .section-title {
  margin-bottom: 0px;
  text-align: left;
}

.cta-section p {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
  max-width: 480px;
  line-height: 1.7;
  text-align: left;
}

.cta-section .btn-primary {
  background: var(--sun-600);
}

.cta-section .img-cta {
  display: flex;
  height: 300px;
  width: 300px;
  overflow: hidden;
  justify-content: center;
}

.cta-section .img-cta img {
  position: absolute;
  margin-top: -6.3rem;
  max-height: 25rem;
  width: auto;
  max-width: 20rem;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ── videos ── */
.videos {
  background: var(--white);
  color: var(--white);
  padding: 0px 24px 90px;
}

.videos .container {
  min-height: 400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  background-color: var(--teal-800);
  border-radius: 10px;
  padding: 40px 20px;
}

.videos-header {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.videos-header .section-eyebrow span {
  color: var(--white);
}

.videos-header .section-title {
  text-align: left;
  margin-bottom: 0;
  max-width: 440px;
  color: var(--white);
}

.apresentation-video {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.container-video-youtube {
  background-color: var(--sun-500);
  padding: 10px;
  max-width: 600px;
  border-radius: 8px 8px;
}

.video-descricao {
  padding: 1rem;
}

.video-youtube {
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  min-width: 500px;
  border-radius: 5px;
}

.description {
  display: flex;
  max-width: 550px;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

/* ── FOOTER ── */
footer {
  background: var(--teal-800);
  color: var(--white);
  padding: 30px 16px;
}

.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: var(--sun-500);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-800);
  font-size: 12px;
  text-decoration: none;
  transition: background .2s;
}

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

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

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
}

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

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

.footer-bottom a {
  color: var(--white);
  text-decoration: none;
}

/* ── DESTINO GALLERY ── */
.about-outras-images-destino {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.about-outras-images-destino button {
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-dark);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--teal-600);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14);
}

.about-outras-images-destino ul {
  display: flex;
  gap: 10px;
  padding: 10px;
  margin: 0;
  list-style: none;
  overflow-x: hidden;
}

.about-outras-images-destino li {
  /*flex: 0 0 auto;*/
}

.about-outras-images-destino .gallery-thumb-btn {
  position: relative;
  width: 100%;
  height: 74px;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.about-outras-images-destino .gallery-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-outras-images-destino .gallery-thumb-btn.is-active {
  border-color: var(--gold);
}

.about-img.tall img {
  cursor: zoom-in;
}

.destino-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--teal-600);
}

.destino-gallery-modal.is-open {
  display: flex;
}

body.modal-open {
  overflow: hidden;
}

.destino-gallery-modal-inner {
  position: relative;
  width: min(100%, 980px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.destino-gallery-modal-inner img {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  border-radius: 18px;
  border: 4px solid var(--sun-600);
}

.destino-gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0px 2rem;
  margin-top: -5rem;
}

.destino-gallery-controls button {
  border: 0;
  background: var(--sun-600);
  color: var(--white);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.destino-gallery-caption {
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
}

.destino-gallery-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sun-600);
  color: var(--white);
  border: 0;
  cursor: pointer;
}

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

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


  .about-images-home {
    display: flex;
    flex-direction: column;
  }

  .hero-visual {
    height: 320px;
  }

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

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

  .pacotes-especial-home-grid {
    grid-template-columns: 1fr;
  }

  .pacote-especial-home-img img {
    margin-top: -5.2rem;
    max-height: 30.5rem;
    max-width: 13rem;
    object-fit: cover;
    object-position: top;
  }

  .pacote-especial-home .pacotes-header .section-title {
    text-align: center;
    margin-bottom: 0;
    max-width: 440px;
  }

  .pacote-especial-home .section-eyebrow,
  .blog-home .section-eyebrow {
    justify-content: center;
  }

  .pacote-especial-home .eyebrow-line,
  .blog-home .eyebrow-line {
    display: none;
  }

  .pacote-especial-home .pacotes-header-top .section-title,
  .blog-home .blogs-header-top .section-title {
    text-align: center;
  }

  .pacote-especial-home .pacotes-header-top,
  .blogs-header-top {
    margin: auto;
  }

  .certificate-section .container {
    width: 100%;
  }

  .certificate-section .etiqueta {
    left: 10.5rem;
    margin-top: 0rem;
  }

  .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;
  }

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


  .circle {
    position: absolute;
    padding: 3rem;
    background: var(--green);
    border-radius: 50%;
    margin-right: 0;
    margin-top: 10rem;
    height: 50px;
    width: 50px;
  }

  nav {
    padding: 10px;
  }

  .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%;
    min-width: 100px;
    padding: 12px 4px;
    border-bottom: 1px solid #E8EDE8;
  }

  .pacotes .btn-outline-white,
  .blog-home .btn-outline-white {
    position: relative;
    padding: 12px 0;
    z-index: 20;
    border: 1.5px solid transparent;
    color: var(--green);
  }

  .blog-home .btn-outline-white {
    margin: auto;
  }

  .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;
  }

  .cta-section .btn-primary {
    width: 100%;
  }

  .certificate-content {
    max-width: 80px;
  }

  .certificate-explain .certificate-label {
    text-align: center;
  }

  .certificate-explain {
    gap: 1rem;
  }

  .container-video-youtube {
    max-width: 400px;
  }

  .video-youtube {
    min-width: 100%;
  }

  .cta-section .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    padding: 2rem;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 10px;
    align-content: space-between;
    flex-direction: column-reverse;
  }

  .cta-section .section-title {
    text-align: center;
  }

  .cta-section .img-cta img {
    position: absolute;
    margin-top: -5rem;
    max-height: 20rem;
    width: auto;
    max-width: 20rem;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-bottom: 2px solid var(--green-mid);
  }

  .cta-section .img-cta {
    display: flex;
    height: 100%;
    min-height: 200px;
    width: 300px;
    overflow: hidden;
    justify-content: center;
  }

  .cta-section .container .describe {
    text-align: center;
  }

}

@media (max-width: 600px) {
  .footer-inner {}

  .hero {
    padding: 0px;
  }

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

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

  section {
    padding: 10px 16px;
  }
}

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

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

.page-header .breadcrumb {
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
}

.page-header .breadcrumb a {
  color: var(--sun-500);
  text-decoration: none;
}

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

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

.gallery-item-video .gallery-item-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sun-500);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 2;
  transition: transform .3s ease;
}

.gallery-item-video:hover .gallery-item-play {
  transform: translate(-50%, -50%) scale(1.1);
}


.inner-section .gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.inner-section .gallery-header .section-eyebrow {
  justify-content: left;
}

.inner-section .gallery-header .section-title {
  margin-bottom: 10px;
}

.inner-section .gallery-header .btn-hero-secondary {
  border: 1px solid var(--green);
  color: var(--green);
}

.card-sobre img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: .4rem;
}

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

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

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


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

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

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

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

.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);
  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: var(--white);
}

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

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

/* filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 8px;
}

.filter-pill {
  border: 1px solid var(--green);
  background: var(--white);
  color: var(--green-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.filter-pill.is-active,
.filter-pill:hover {
  background: var(--sun-500);
  border-color: var(--sun-500);
  color: var(--green-dark);
}

.filter-card.is-hidden {
  display: none !important;
}

/* generic content grid for SOBRE / SERVICOS etc */
.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  border: 1px solid var(--teal-600);
  /* align-items: center; */
  padding: 25px;
  border-radius: 12px;
  overflow: hidden;
}

.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 {
  overflow: hidden;
  position: relative;
  background: rgb(255 255 255 / 0%);
  border: 10px solid rgb(255 255 255);
  transition: transform .2s, background .2s;
}

.simple-card:nth-child(odd) {
  border: 1px solid var(--teal-600);
  background-color: var(--teal-600);
  border-radius: 12px;
}

.simple-card:nth-child(even) {
  border: 1px solid var(--sun-500);
  background-color: var(--sun-500);
  border-radius: 12px;
}

.simple-card:nth-child(even) .service-link {
  color: var(--teal-600);
}

.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: 100%;
}

.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(--white);
}

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

.about-content .simple-card-meta {
  color: var(--sun-600);
}

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

/* package price tag */
.price-tag {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  width: 100%;
}

.about-content .price-tag {
  color: var(--sun-600);
}

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

/* 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);
  border: 2px solid var(--sun-500);
  border-radius: 10px;
}

.gallery-item-categoria {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sun-300);
  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(--sun-500);
  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(--sun-500);
  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(--sun-500);
  border-color: var(--sun-500);
  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(--sun-500);
  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-top: 24px;
  justify-content: left;
  width: 100%;
}

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

.about-content .contact-info-item .ic {
  background: var(--white);
}

.about-content .contact-info-item {

  background: var(--sun-500);
  border-radius: 8px;
  padding: 10px;
  width: 300px;
}

.about-content .contact-info-item h4 {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--white);
}

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


.contact-info-item h4 {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--teal-600);
}

.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;
  list-style: none;
}

.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;
}

.section-title.left {
  text-align: left;
}

@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 {
    display: flex;
    padding: 20px 20px;
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: stretch;
    gap: 1rem;
  }

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

  .about-images-membro,
  .about-images-servico,
  .about-images-destino,
  .about-images-pacote {
    display: flex;
    justify-content: center;
  }

  .about-header-home .section-eyebrow.left .eyebrow-line {
    display: none;
  }

  .section-eyebrow.left {
    justify-content: center;
  }

  .section-title {
    text-align: justify;
  }

  .section-title.title-center {
    text-align: center;
  }

  .btn-about {
    width: 100%;
  }

  .skill-bars {
    width: 100%;
  }

}

/* 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;
}

/* --- Selo "Pacote Especial" nos cards da listagem de Pacotes --- */
.badge-especial {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--sun-500);
  color: var(--teal-600);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* --- Aviso no topo da página de um pacote normal que tem versão especial --- */
/* --- Formulário de pedido de reserva (partials/reserva_form.php) --- */
.reserva-form-wrap {
  max-width: 640px;
  margin: 32px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.reserva-form-wrap .form-status {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 18px;
  font-size: 14px;
}
.reserva-form-wrap .form-status.success { background: var(--green-light); color: var(--green-dark); }
.reserva-form-wrap .form-status.error { background: #fde2e2; color: #a12626; }

.pacote-tem-especial {
  background: var(--green-light);
  border: 1px solid var(--sun-500);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.pacote-tem-especial span {
  font-size: 14px;
  color: var(--green-dark);
  max-width: 620px;
}

.pacote-tem-especial i {
  color: var(--sun-600);
  margin-right: 4px;
}

/* --- Hero --- */
.pacote-especial-hero {
  background-size: cover;
  background-position: center;
  position: relative;
}

.pacote-especial-hero-overlay {
  background: linear-gradient(180deg, rgba(10, 38, 34, .55) 0%, rgba(10, 38, 34, .85) 100%);
  padding: 90px 10px 60px;
  color: var(--white);
}

.pacote-especial-tag {
  display: inline-block;
  background: var(--sun-500);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.pacote-especial-hero-overlay h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 12px;
  max-width: 640px;
}

.pacote-especial-subtitulo {
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 22px;
}

.pacote-especial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 26px;
}

.pacote-especial-tags span {
  font-size: 13.5px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pacote-especial-tags i {
  color: var(--sun-500);
}

/* --- Itinerário (timeline) --- */
.pacote-especial-timeline {
  max-width: 720px;
  margin: 40px auto 0;
  position: relative;
  padding-left: 28px;
  border-left: 2px dashed var(--teal-600);
}

.pacote-especial-timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.pacote-especial-timeline-item:last-child {
  padding-bottom: 0;
}

.pacote-especial-timeline-dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sun-500);
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}

.pacote-especial-timeline-card {
  background: var(--teal-600);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  color: var(--white);
}

.pacote-especial-timeline-horario {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal-600);
  background: var(--white);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.pacote-especial-timeline-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.pacote-especial-timeline-card p {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.6;
}

/* --- O Pacote Inclui (grelha escura) --- */
.pacote-especial-inclui-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--teal-800);
  color: var(--white);
  padding: 70px 24px;
}

.pacote-especial-inclui-section .section-title,
.pacote-especial-inclui-section .section-eyebrow span {
  color: var(--white);
}

.pacote-especial-inclui-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pacote-especial-inclui-item {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--sun-500);
  border-radius: var(--radius);
  padding: 22px;
  max-width: 350px;
  text-align: center;
}

.pacote-especial-inclui-icone {
  font-size: 26px;
  display: block;
  margin-bottom: 10px;
}

.pacote-especial-inclui-item h4 {
  margin: 0 0 6px;
  font-size: 14.5px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--sun-500);
}

.pacote-especial-inclui-item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .8);
}

/* --- Tabela de Preços --- */
.pacote-especial-precos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 40px auto 0;
}

.pacote-especial-preco-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  border: 2px solid transparent;
}

.pacote-especial-preco-card.destaque {
  background: var(--teal-800);
  color: var(--white);
  border-color: var(--sun-500);
}

.pacote-especial-preco-card h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.pacote-especial-preco-valor {
  font-size: 30px;
  font-weight: 800;
  color: var(--sun-600);
  margin-bottom: 4px;
}

.pacote-especial-preco-card.destaque .pacote-especial-preco-valor {
  color: var(--sun-500);
}

.pacote-especial-preco-nota {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.pacote-especial-preco-card.destaque .pacote-especial-preco-nota {
  color: rgba(255, 255, 255, .75);
}

.pacote-especial-preco-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pacote-especial-preco-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  padding: 6px 0;
}

.pacote-especial-preco-card li i {
  color: var(--teal-600);
  margin-top: 3px;
}

.pacote-especial-preco-card.destaque li i {
  color: var(--sun-500);
}

/* --- CTA final: aviso de vagas + data confirmada --- */

.section-title.center {
  text-align: center;
}

.pacote-especial-cta .container {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--teal-600);
  width: 80%;
  padding: 0 2rem;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 10px;
  margin: 0rem auto;
  position: relative;
  overflow-x: clip;
}

.pacote-especial-vagas {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--teal-600);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .02em;
  padding: 7px 16px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.pacote-especial-cta p {
  color: var(--sun-500);
}

.pacote-especial-data-confirmada {
  margin: 14px 0 22px;
  font-size: 13.5px;
}

.pacote-especial-data-confirmada strong {
  display: block;
  font-size: 17px;
  color: var(--white);
  margin-top: 2px;
}

.pacote-especial-cta .btn-primary {
  background: var(--sun-600);
  color: var(--white);
}

.pacote-especial-cta-img {
  display: flex;
  height: 300px;
  width: 300px;
  overflow: hidden;
  justify-content: center;
}

.pacote-especial-cta-img img {
  position: absolute;
  margin-top: -3rem;
  width: 550px;
  max-width: 40rem;
  height: auto;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 900px) {
  .pacote-especial-cta .container {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--sun-500);
    width: 80%;
    padding: 0 2rem;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 10px;
    margin: 0rem auto;
    position: relative;
    overflow-x: visible;
  }

  .pacote-especial-cta-img {
    display: flex;
    height: 150px;
    width: 200px;
    overflow: hidden;
    justify-content: center;
  }

  .cta-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem .5rem;
  }

  .cta-section p {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    max-width: 480px;
    line-height: 1.7;
    text-align: center;
  }

  .pacote-especial-cta-img img {
    position: absolute;
    margin-top: 1rem;
    width: 350px;
    max-width: 40rem;
    height: auto;
    object-fit: cover;
    object-position: top;
  }

}

/* =====================================================================
   Banners de publicidade de parceiros (partials/banner_publicidade.php)
   Usa só variáveis já existentes no :root — não introduz cores novas.
   ===================================================================== */

.banner-publicidade-wrap {
  padding: 32px 1.5rem;
  position: relative;
}

/* ---- Pista (comportamento carrossel vs estático) ---- */
.banner-publicidade-pista {
  max-width: 1180px;
  width: 100%;
  margin: 0 1.5rem;
  position: relative;
  border: 2px solid var(--gold);
  border-radius: 8px;
}

/* Banner individual */
.banner-publicidade-item {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.banner-publicidade-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-dark);
}

/* Carrossel: oculta os banners que não são o activo */
.banner-publicidade-wrap.is-carrossel .bp-oculto {
  display: none;
}

/* Imagem do banner */
.banner-publicidade-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.banner-publicidade-item:hover img { transform: scale(1.04); }

/* Banner sem imagem: fundo com gradiente da paleta do site */
.banner-publicidade-item:not(.tem-imagem) {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--teal-600) 100%);
  min-height: 140px;
  justify-content: center;
}

/* Corpo de texto do banner */
.banner-publicidade-corpo {
  padding: 18px 20px;
  display: none;
  flex-direction: column;
  gap: 8px;
}
.banner-publicidade-item:not(.tem-imagem) .banner-publicidade-corpo { padding: 28px; }

.banner-publicidade-parceiro {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}
.banner-publicidade-texto {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-mid);
  margin: 0;
}
.banner-publicidade-item:not(.tem-imagem) .banner-publicidade-texto { color: rgba(255,255,255,.88); }

.banner-publicidade-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-600);
  margin-top: 4px;
}
.banner-publicidade-item:not(.tem-imagem) .banner-publicidade-cta { color: var(--gold); }
.banner-publicidade-item:hover .banner-publicidade-cta i {
  transform: translateX(3px);
  transition: transform .2s ease;
}

/* ---- Dots de navegação ---- */
.bp-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.bp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--ocean);
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
  flex-shrink: 0;
}
.bp-dot.is-active {
  background: var(--green-dark);
  transform: scale(1.25);
}

/* ---- Barra de progresso ---- */
.bp-progresso-wrap {
  max-width: 860px;
  margin: 8px auto 0;
  height: 3px;
  background: var(--green-light);
  border-radius: 999px;
  overflow: hidden;
}
.bp-progresso-barra {
  height: 100%;
  width: 0%;
  background: var(--teal-600);
  border-radius: 999px;
}

/* Separador visual acima/abaixo */
.banner-publicidade-wrap + section,
section + .banner-publicidade-wrap {
  display: flex;
  border-top: 1px solid var(--bg-light);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Responsivo */
@media (max-width: 640px) {
  .banner-publicidade-item img { height: 170px; }
}
/* =====================================================================
   Página de detalhe de uma foto da Galeria (templates/foto.php)
   ===================================================================== */

/* --- Foto principal clicável --- */
.foto-detalhe-principal {
  position: relative;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 860px;
  margin: 0 auto;
  display: block;
}
.foto-detalhe-principal img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.foto-detalhe-principal:hover img { transform: scale(1.03); }

.foto-detalhe-ampliar {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(10,38,34,.75);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.foto-detalhe-principal:hover .foto-detalhe-ampliar { opacity: 1; }

/* --- Meta (categoria, título, descrição) --- */
.foto-detalhe-meta {
  max-width: 860px;
  margin: 24px auto 0;
}
.foto-detalhe-categoria {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--teal-600);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.foto-detalhe-titulo {
  font-size: clamp(20px, 3vw, 28px);
  margin: 0 0 10px;
  color: var(--ink);
}
.foto-detalhe-descricao {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0 0 12px;
}
.foto-detalhe-contador {
  font-size: 13.5px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 7px;
}
.foto-detalhe-contador i { color: var(--gold); }

/* --- Título da secção do álbum --- */
.foto-album-titulo {
  max-width: 860px;
  margin: 36px auto 16px;
}

/* --- Grelha de miniaturas do álbum --- */
.foto-album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}
.foto-album-thumb {
  position: relative;
  cursor: zoom-in;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-light);
  aspect-ratio: 4/3;
  display: block;
  transition: transform .25s ease, box-shadow .25s ease;
}
.foto-album-thumb:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-dark);
}
.foto-album-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.foto-album-thumb:hover img { transform: scale(1.08); }

.foto-album-badge-principal {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  pointer-events: none;
}

/* --- Lightbox --- */
.foto-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 20, 18, .94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.foto-lightbox.is-open { display: flex; }

.foto-lightbox-inner {
  position: relative;
  max-width: min(92vw, 1200px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.foto-lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  display: block;
}

.foto-lightbox-legenda {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 70%;
  padding: 0 4px;
}
#foto-lightbox-titulo {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.45;
  flex: 1;
}
.foto-lightbox-num {
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}

/* Botões do lightbox */
.foto-lightbox-close,
.foto-lightbox-prev,
.foto-lightbox-next {
  position: fixed;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s ease;
  z-index: 2001;
}
.foto-lightbox-close:hover,
.foto-lightbox-prev:hover,
.foto-lightbox-next:hover { background: rgba(255,255,255,.22); }

.foto-lightbox-close {
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  font-size: 20px;
}
.foto-lightbox-prev,
.foto-lightbox-next {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 20px;
}
.foto-lightbox-prev { left: 16px; }
.foto-lightbox-next { right: 16px; }

@media (max-width: 640px) {
  .foto-lightbox-prev { left: 6px; }
  .foto-lightbox-next { right: 6px; }
  .foto-album-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 8px;
  }
}
