/* ============================================================
   style.css – Mantiqueira Turismo
   ============================================================ */

:root {
  --verde: #184b21;
  --verde-medio: #1F3A22;
  --verde-claro: #4D6851;
  --verde-suave: #D1DDD3;
  --verde-palido: #ECEFEF;
  --terra: #7D6B5C;
  --dourado: #D1A14E;
  --creme: #FAF9F6;
  --escuro: #121411;
  --cinza: #6E726B;
  --branco: #FFFFFF;
  /*--font-serif: 'Playfair Display', Georgia, serif;*/
  --font-sans: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--creme);
  color: var(--escuro);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 1.5rem;
  left: 4rem;
  right: 4rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 2.5rem;
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #184b21;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(209, 161, 78, 0.15);
}

nav.scrolled {
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  background: var(--verde);
  border-bottom: 1px solid rgba(209, 161, 78, 0.25);
  padding: 1rem 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 60px;
  transition: transform .3s;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--creme);
  line-height: 1.1;
  transition: color .4s;
}

.nav-logo-sub {
  display: block;
  font-size: .62rem;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dourado);
  opacity: 0.95;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color .3s;
}

.nav-links a:hover {
  color: var(--dourado);
}

.nav-cta {
  background: var(--dourado) !important;
  color: white !important;
  padding: .6rem 1.4rem !important;
  /*border-radius: 4px !important;*/
  font-weight: 500 !important;
  font-size: .78rem !important;
  transition: background .3s, transform .2s !important;
  letter-spacing: .04em !important;
}

.nav-cta:hover {
  background: var(--verde) !important;
  color: white !important;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero_transfer.jpg');
  background-size: cover;
  background-position: bottom;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(28, 31, 26, 0.8) 0%,
      rgba(28, 31, 26, 0.45) 50%,
      rgba(28, 31, 26, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  color: white;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  /*border-radius: 4px;*/
  margin-bottom: 1.4rem;
  width: fit-content;
}

.hero-badge i {
  color: var(--verde-suave);
  font-size: .7rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.hero-title em {
  font-style: italic;
  color: var(--verde-suave);
  font-weight: 300;
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .8);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.form-mobile {
  display: none;
}

@media screen and (max-width:750px) {
  .rm-mobile {
    display: none !important;
  }

  .form-mobile {
    display: block;
  }

  .form-mobile a {
    background: #25D366;
    border: none !important;
    color: white;
    padding: .80rem;
    /*border-radius: 4px;*/
    font-family: var(--font-sans);
    font-size: .88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: .5rem;
    width: 100%;
    text-decoration: none;
  }
}

/* Booking Widget styling */
.hero-widget-container {
  display: flex;
  justify-content: flex-end;
}

.widget-card {
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(28, 31, 26, 0.08);
  border-top: 4px solid var(--dourado);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  /*border-radius: 6px;*/
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
}

.widget-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--escuro);
  margin-bottom: .4rem;
}

.widget-card p {
  font-size: .8rem;
  color: var(--cinza);
  margin-bottom: 1.75rem;
  line-height: 1.4;
}

.widget-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.widget-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.widget-field label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--escuro);
  display: flex;
  align-items: center;
  gap: .35rem;
}

.widget-field label i {
  color: var(--verde-claro);
}

.widget-field input,
.widget-field select {
  background: var(--branco);
  border: 1px solid rgba(28, 31, 26, 0.12);
  /*border-radius: 4px;*/
  padding: .75rem 1rem;
  font-family: var(--font-sans);
  font-size: .85rem;
  color: var(--escuro);
  outline: none;
  transition: border-color .3s;
}

.widget-field input:focus,
.widget-field select:focus {
  border-color: var(--verde);
}

.widget-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.btn-widget-submit {
  background: var(--dourado);
  color: white;
  border: 1px solid var(--dourado);
  padding: .95rem;
  /*border-radius: 4px;*/
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .5rem;
  width: 100%;
}

.btn-widget-submit:hover {
  background: var(--verde);
  border-color: var(--verde);
  color: white;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--dourado);
  border: 1px solid var(--dourado);
  color: white;
  padding: .9rem 2.2rem;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .3s ease;
}

.btn-primary:hover {
  background: var(--verde);
  border-color: var(--verde);
  color: white;
}

.btn-ghost {
  color: white;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  padding-bottom: .2rem;
  transition: border-color .3s;
}

.btn-ghost:hover {
  border-color: white;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
}

.stat-item {
  text-align: right;
  color: white;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--verde-suave);
}

.stat-label {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .7;
  margin-top: .2rem;
}

/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .5);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
  z-index: 3;
}

.scroll-hint i {
  font-size: 1rem;
}

@keyframes bounce {

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

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ─── SECTION LAYOUT ─── */
section {
  padding: 8rem 4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--verde-claro);
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--verde-claro);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: .02em;
  line-height: 1.2;
  color: var(--escuro);
}

.section-title em {
  font-style: italic;
  color: var(--verde-claro);
  font-weight: 300;
}

/* ─── SOBRE ─── */
.sobre {
  background: var(--branco);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 6rem 4rem;
}

.sobre-imgs {
  position: relative;
  height: 520px;
}

.sobre-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
}

.sobre-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border: 4px solid var(--branco);
}

.sobre-badge-anos {
  position: absolute;
  top: 55%;
  left: 60%;
  transform: translate(-50%, -50%);
  background: var(--verde);
  color: white;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-serif);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sobre-badge-anos span:first-child {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.sobre-badge-anos span:last-child {
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
}

.sobre-texto {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sobre-texto p {
  font-size: .97rem;
  line-height: 1.75;
  color: var(--cinza);
}

.sobre-diferenciais {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: .5rem;
}

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.diferencial-icon {
  width: 36px;
  height: 36px;
  background: var(--verde-palido);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--verde);
  font-size: .85rem;
}

.diferencial-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--escuro);
  margin-bottom: .15rem;
}

.diferencial-text span {
  font-size: .78rem;
  color: var(--cinza);
  line-height: 1.4;
}

/* ─── ROTEIROS ─── */
.roteiros {
  background: var(--creme);
  padding: 2rem 4rem;
}

.roteiros-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.roteiros-grid {
  display: grid;
  grid-template-columns: repeat(2, 3fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.card-roteiro {
  background: white;
  border: 1px solid rgba(28, 31, 26, 0.08);
  overflow: hidden;
  transition: border-color .3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-roteiro:hover {
  border-color: var(--dourado);
}

.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-roteiro:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(45, 80, 22, .85);
  backdrop-filter: blur(4px);
  color: white;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--escuro);
  margin-bottom: .5rem;
}

.card-desc {
  font-size: .83rem;
  color: var(--cinza);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, .06);
  padding-top: 1rem;
}

.card-info {
  display: flex;
  gap: 1rem;
}

.card-info span {
  font-size: .75rem;
  color: var(--cinza);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.card-info i {
  color: var(--verde-claro);
  font-size: .75rem;
}

.card-arrow {
  width: 32px;
  height: 32px;
  background: var(--verde-palido);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde);
  font-size: .8rem;
  transition: all .3s ease;
}

.card-roteiro:hover .card-arrow {
  background: var(--verde);
  color: white;
}

/* featured card */
.card-roteiro.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  height: 380px;
  overflow: hidden;
}

.card-roteiro.featured .card-img-wrap {
  height: 100%;
}

.card-roteiro.featured .card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-roteiro.featured .card-title {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

/* ─── SERVIÇOS ─── */
.servicos {
  background: var(--verde);
  color: white;
  padding: 4.5rem 4rem;
}

.servicos .section-label {
  color: var(--verde-suave);
}

.servicos .section-label::before {
  background: var(--verde-suave);
}

.servicos .section-title {
  color: white;
}

.servicos .section-title em {
  color: var(--verde-suave);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.card-servico {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 1.5rem 1.25rem;
  transition: border-color .3s;
}

.card-servico:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.servico-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .1);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--verde-suave);
  margin-bottom: 0.85rem;
}

.servico-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: white;
  margin-bottom: .35rem;
}

.servico-desc {
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.55;
}

/* ─── DEPOIMENTOS ─── */
.depoimentos {
  background: var(--branco);
  padding: 2rem 4rem;
}

.depoimentos-header {
  text-align: center;
  margin-bottom: 2rem;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-depo {
  background: var(--branco);
  border: 1px solid rgba(28, 31, 26, 0.06);
  padding: 1.75rem 1.5rem;
}

.depo-stars {
  color: var(--dourado);
  font-size: .75rem;
  margin-bottom: 0.5rem;
  letter-spacing: .1em;
}

.depo-text {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--escuro);
  margin-bottom: 0.85rem;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.depo-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--verde-palido);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: .8rem;
  font-weight: 600;
  color: var(--verde);
  flex-shrink: 0;
}

.depo-nome {
  font-size: .8rem;
  font-weight: 500;
  color: var(--escuro);
}

.depo-local {
  font-size: .7rem;
  color: var(--cinza);
  display: flex;
  align-items: center;
  gap: .25rem;
}

/* ─── GALERIA ─── */
.galeria {
  background: var(--creme);
  padding: 6rem 4rem;
}

.galeria-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gal-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gal-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 180px;
  transition: transform .5s;
}

.gal-item:first-child img {
  min-height: 360px;
}

.gal-item:hover img {
  transform: scale(1.06);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 10, .0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: background .3s;
}

.gal-item:hover .gal-overlay {
  background: rgba(20, 30, 10, .35);
}

/* ─── CONTATO ─── */
.contato {
  background: var(--escuro);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 540px;
}

.contato-info {
  padding: 2rem 4rem;
  background: var(--verde);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contato-info .section-label {
  color: var(--verde-suave);
}

.contato-info .section-label::before {
  background: var(--verde-suave);
}

.contato-info .section-title {
  color: white;
  margin-bottom: 2rem;
}

.contato-detalhe {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contato-detalhe-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-suave);
  font-size: 1rem;
  flex-shrink: 0;
}

.contato-detalhe strong {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.contato-detalhe a,
.contato-detalhe span {
  color: white;
  text-decoration: none;
  font-size: .95rem;
  line-height: 1.5;
}

.contato-detalhe a:hover {
  color: var(--verde-suave);
}

.contato-social {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: background .3s;
}

.social-btn:hover {
  background: rgba(255, 255, 255, .2);
}

.contato-form {
  padding: 2rem 4rem;
  background: var(--creme);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contato-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: black;
  font-weight: 600;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: black;
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--verde-medio);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: .75rem 1rem;
  font-family: var(--font-sans);
  font-size: .88rem;
  color: white;
  outline: none;
  transition: border-color .3s;
  -webkit-appearance: none;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
  color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--verde-claro);
}

.form-group select option {
  background: #222;
}

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

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

.btn-submit {
  width: 100%;
  background: var(--verde);
  color: white;
  border: 1px solid var(--verde);
  padding: .9rem 2rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .5rem;
}

.btn-submit:hover {
  background: transparent;
  color: var(--verde);
}

/* ─── FOOTER ─── */
footer {
  background: #03290a;
  padding: 3rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.footer-logo-wrap img {
  height: 50px;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  line-height: 1.1;
}

.footer-tagline {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .85rem;
  transition: background .3s, color .3s;
}

.footer-social a:hover {
  background: var(--dourado);
  color: white;
}

.footer-nav h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: .5rem;
}

.footer-nav h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: 1px;
  background: var(--dourado);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-nav ul li a {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .3s;
}

.footer-nav ul li a:hover {
  color: var(--dourado);
}

.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: .5rem;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: 1px;
  background: var(--verde-claro);
}

.footer-copy {
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
  text-align: center;
  text-decoration: none;
  transition: color .3s;
  letter-spacing: .03em;
}

.footer-nav ul li a:hover {
  color: var(--verde-suave);
}

.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 0.85rem;
}

.footer-contact p {
  font-size: .78rem;
  color: white;
  margin-bottom: .5rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.4;
}

@media(max-width: 800px) {
  .footer-contact p {
    justify-content: center !important;
    align-items: center !important;
  }
}

.footer-contact a {
  color: white;
  text-decoration: none;
  transition: color .3s;
}

.footer-contact a:hover {
  color: var(--verde-suave);
}

.footer-contact i {
  color: var(--verde-claro);
  margin-top: .1rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .2);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: .72rem;
  color: rgba(255, 255, 255, .2);
  text-decoration: none;
  transition: color .3s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, .5);
}

/* ─── DROPDOWN NAV ─── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  background: var(--verde);
  border: 1px solid rgba(209, 161, 78, 0.15);
  min-width: 220px;
  padding: .5rem 0;
  margin-top: .25rem;
  /* Margem pequena que não quebra o hover */
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .2s, transform .2s;
  z-index: 200;
}

/* Área de transição invisível para o mouse não perder o hover */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem 1.25rem;
  font-size: .8rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: background .2s, color .2s !important;
}

.dropdown-menu li a i {
  color: var(--verde-claro);
  font-size: .85rem;
  width: 16px;
  text-align: center;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--dourado) !important;
}

/* nav active state */
.nav-links a.active {
  color: var(--dourado);
  font-weight: 600;
}

/* ─── MOBILE HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--creme);
  transition: background .4s, transform .3s, opacity .3s;
}

nav.scrolled .nav-hamburger span {
  background: var(--creme);
}

.nav-hamburger.open span {
  background: var(--creme) !important;
}

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

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

/* ─── PAGE INNER HERO (páginas internas) ─── */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid var(--dourado);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(20, 30, 10, .2) 0%,
      rgba(20, 30, 10, .75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 4rem;
  max-width: 700px;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

.page-hero-breadcrumb a:hover {
  color: var(--verde-suave);
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  color: white;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: .75rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--verde-suave);
}

.page-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
}

/* ─── PAGE CONTENT ─── */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 4rem;
}

.page-content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}

.page-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--escuro);
  margin-bottom: 1.5rem;
}

.page-text h2 em {
  font-style: italic;
  color: var(--verde);
}

.page-text h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--escuro);
  margin: 2rem 0 1rem;
}

.page-text p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--cinza);
  margin-bottom: 1.25rem;
}

.page-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.page-text ul li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--cinza);
  line-height: 1.6;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.page-text ul li i {
  color: var(--verde-claro);
  margin-top: .2rem;
  flex-shrink: 0;
}

/* ─── SIDEBAR RESERVA ─── */
.sidebar-reserva {
  position: sticky;
  top: 6rem;
}

.sidebar-card {
  background: white;
  padding: 2rem;
  border: 1px solid rgba(28, 31, 26, 0.08);
  margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--escuro);
  margin-bottom: .5rem;
}

.sidebar-card .sidebar-sub {
  font-size: .8rem;
  color: var(--cinza);
  margin-bottom: 1.5rem;
}

.sidebar-infos {
  margin-bottom: 1.5rem;
}

.sidebar-info-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.sidebar-info-item:last-child {
  border-bottom: none;
}

.sidebar-info-item i {
  color: var(--verde-claro);
  font-size: .9rem;
  margin-top: .15rem;
  width: 16px;
  text-align: center;
}

.sidebar-info-item div strong {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  color: var(--escuro);
}

.sidebar-info-item div span {
  font-size: .75rem;
  color: var(--cinza);
}

.btn-reservar {
  width: 100%;
  background: #25D366;
  color: white;
  border: none;
  padding: .9rem;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  text-decoration: none;
  transition: opacity .3s;
  margin-bottom: .75rem;
}

.btn-reservar:hover {
  opacity: 0.9;
}

.btn-orcamento {
  width: 100%;
  background: var(--verde);
  color: white;
  border: 1px solid var(--verde);
  padding: .9rem;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-orcamento:hover {
  background: transparent;
  color: var(--verde);
}

/* ─── INFO BOX ─── */
.info-box {
  background: var(--verde-palido);
  border: 1px solid var(--verde-suave);
  padding: 1.5rem;
}

.info-box h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--verde);
  margin-bottom: .75rem;
}

.info-box ul {
  margin: 0;
}

.info-box ul li {
  border-bottom: 1px solid rgba(45, 80, 22, .1);
  font-size: .82rem;
  color: var(--escuro);
}

/* ─── PÁGINA LISTAGEM DE PASSEIOS ─── */
.passeios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── QUEM SOMOS page ─── */
.frota-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.frota-card {
  background: white;
  overflow: hidden;
  border: 1px solid rgba(28, 31, 26, 0.08);
  transition: border-color .3s;
}

.frota-card:hover {
  border-color: var(--dourado);
}

.frota-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.frota-card-body {
  padding: 1.25rem;
}

.frota-card-body h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--escuro);
  margin-bottom: .25rem;
}

.frota-card-body span {
  font-size: .78rem;
  color: var(--cinza);
}

/* ─── TRANSFER page ─── */
.transfer-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.transfer-card {
  background: white;
  padding: 2.5rem;
  border: 1px solid rgba(28, 31, 26, 0.08);
  transition: border-color .3s;
}

.transfer-card:hover {
  border-color: var(--dourado);
}

.transfer-icon {
  width: 56px;
  height: 56px;
  background: var(--verde-palido);
  border-radius: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--verde);
  margin-bottom: 1.25rem;
}

.transfer-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--escuro);
  margin-bottom: .5rem;
}

.transfer-card p {
  font-size: .85rem;
  color: var(--cinza);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* ─── CONGRESSO page ─── */
.congresso-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.feature-item i {
  font-size: 2rem;
  color: var(--verde-claro);
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--escuro);
  margin-bottom: .5rem;
}

.feature-item p {
  font-size: .82rem;
  color: var(--cinza);
  line-height: 1.6;
}

/* ─── SIDEBAR DEPOIMENTO ─── */
.sidebar-depo {
  background: var(--creme);
  padding: 1.5rem;
}

.sidebar-depo .depo-stars {
  font-size: .7rem;
}

.sidebar-depo .depo-text {
  font-size: .9rem;
  margin-bottom: .85rem;
}

/* ─── CONTACT PAGE ─── */
.contato-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.contato-page-map {
  background: var(--creme);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.contato-page-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  margin-top: 2rem;
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: transform .3s, box-shadow .3s;
  animation: pulse-wa 3s ease infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .55);
  animation: none;
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, .65);
  }
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

/* ─── DIFERENCIAIS (home) ─── */
.diferenciais {
  background: var(--branco);
  padding: 6rem 4rem;
}

.diferenciais-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.diferenciais-header .section-label {
  justify-content: center;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.diferencial-card {
  background: var(--branco);
  border: 1px solid rgba(28, 31, 26, 0.08);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color .3s;
}

.diferencial-card:hover {
  border-color: var(--verde);
}

.diferencial-card-icon {
  width: 64px;
  height: 64px;
  background: var(--verde-palido);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--verde);
  margin: 0 auto 1.5rem;
}

.diferencial-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--escuro);
  margin-bottom: .75rem;
}

.diferencial-card p {
  font-size: .85rem;
  color: var(--cinza);
  line-height: 1.65;
}

/* ─── FROTA SECTION (home) ─── */
.frota-section {
  background: var(--creme);
  padding: 2rem 4rem;
}

.frota-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.frota-section-desc {
  font-size: .95rem;
  color: var(--cinza);
  line-height: 1.7;
  max-width: 100%;
  text-align: left;
}

.frota-section .frota-grid {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── COMO FUNCIONA (home) ─── */
.como-funciona {
  background: var(--branco);
  padding: 8rem 4rem;
}

.section-header-centered {
  margin-bottom: 5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step-item {
  position: relative;
  padding-top: 1.5rem;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--verde-suave);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.step-item h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--escuro);
  margin-bottom: .75rem;
}

.step-item p {
  font-size: .88rem;
  color: var(--cinza);
  line-height: 1.7;
}

/* ─── FROTA DETAILS ─── */
.frota-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.frota-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.frota-card:hover .frota-img-wrap img {
  transform: scale(1.04);
}

.frota-card-intro {
  font-size: .82rem;
  color: var(--cinza);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.frota-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(28, 31, 26, 0.06);
  border-bottom: 1px solid rgba(28, 31, 26, 0.06);
  margin-bottom: 1.5rem;
}

.frota-specs span {
  font-size: .78rem;
  color: var(--escuro);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.frota-specs span i {
  color: var(--verde-claro);
  font-size: .8rem;
  width: 16px;
  text-align: center;
}

.btn-frota-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--dourado);
  color: white;
  border: 1px solid var(--dourado);
  padding: .75rem 1rem;
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-frota-quote:hover {
  background: var(--verde);
  border-color: var(--verde);
  color: white;
}

/* ─── RESPONSIVE ─── */
@media(max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

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

  .page-content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-reserva {
    position: static;
  }
}

@media(max-width: 900px) {
  nav {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    padding: 1rem 1.5rem !important;
    background: var(--verde) !important;
    border-bottom: 1px solid rgba(209, 161, 78, 0.25) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  nav.scrolled {
    padding: .75rem 1.5rem !important;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh !important;
    width: 100vw !important;
    background: var(--verde);
    border-bottom: 1px solid rgba(209, 161, 78, 0.25);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 7.5rem 2rem 4rem;
    gap: 1.50rem;
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links>li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    display: inline-block;
    padding: 0.5rem 0;
    width: 100%;
    transition: color 0.3s;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--dourado) !important;
  }

  .nav-links .nav-cta {
    display: inline-block !important;
    width: 100%;
    max-width: 280px;
    margin-top: 0.5rem;
    padding: 0.8rem 1.5rem !important;
    text-align: center;
    font-weight: 500;
    color: white !important;
  }

  .nav-hamburger {
    display: flex;
    z-index: 101;
  }

  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    box-shadow: none;
    background: rgba(28, 31, 26, 0.04);
    padding: 0;
    min-width: 0;
    width: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
  }

  .nav-dropdown.open .dropdown-menu {
    opacity: 1;
    max-height: 500px;
    pointer-events: all;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
  }

  .dropdown-menu li a {
    color: var(--cinza) !important;
    font-size: 0.95rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1.25rem;
    font-weight: 400;
  }

  .dropdown-menu li a:hover,
  .dropdown-menu li a.active {
    color: var(--verde) !important;
    background: rgba(28, 31, 26, 0.04);
  }

  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: auto;
  }

  .nav-dropdown>a i {
    transition: transform 0.3s ease;
  }

  .nav-dropdown.open>a i {
    transform: rotate(180deg);
  }

  .hero {
    height: auto;
    min-height: 0;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    gap: 3rem;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-align: center;
    justify-content: center;
    display: none;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero-btns {
    justify-content: center;
    width: 100%;
    display: none;
  }

  .hero-widget-container {
    justify-content: center;
    width: 100%;
  }

  .widget-card {
    padding: 1.5rem;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .widget-row {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .widget-field input,
  .widget-field select {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .scroll-hint {
    display: none !important;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .sobre {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .sobre-imgs {
    height: 300px;
    margin-bottom: 2rem;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .como-funciona {
    padding: 4rem 1.5rem;
  }

  .card-roteiro.featured {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }

  .card-roteiro.featured .card-img-wrap {
    min-height: 220px;
    height: 220px;
  }

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

  .depoimentos {
    padding: 4rem 1.5rem;
  }

  .depoimentos-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0.5rem 0 1.5rem;
    scrollbar-width: none;
  }

  .depoimentos-grid::-webkit-scrollbar {
    display: none;
  }

  .card-depo {
    flex: 0 0 85%;
    max-width: 400px;
    scroll-snap-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
  }

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

  .gal-item:first-child {
    grid-column: 1 / 3;
  }

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

  .contato-info,
  .contato-form {
    padding: 3rem 1.5rem;
  }

  .contato-form,
  .servicos {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .footer-nav,
  .footer-contact {
    display: none;
  }

  .footer-brand .footer-logo-wrap {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .25rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .galeria {
    padding: 4rem 1.5rem;
  }

  .page-hero-content {
    padding: 0 1.5rem 3rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-content {
    padding: 3rem 1.5rem;
  }

  .passeios-grid {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }

  .transfer-cards {
    grid-template-columns: 1fr;
  }

  .congresso-features {
    grid-template-columns: 1fr;
  }

  .contato-page {
    grid-template-columns: 1fr;
  }

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

  .diferenciais {
    padding: 4rem 1.5rem;
  }

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

  .frota-section {
    padding: 4rem 1.5rem;
  }

  .frota-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .frota-section-desc {
    text-align: left;
    max-width: 100%;
  }

  .diferenciais-grid-servicos {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .congresso-grid-card {
    padding: 1.5rem !important;
    gap: 1.5rem !important;
    grid-template-columns: 1fr !important;
  }
}

@media(max-width: 768px) {
  .servicos-grid {
    grid-template-columns: 1fr !important;
  }
}

@media(max-width: 480px) {
  .nav-logo-text {
    font-size: 0.95rem;
  }

  .nav-logo-sub {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .nav-logo img {
    height: 60px;
  }

  nav {
    padding: 0.85rem 1rem !important;
  }
}

/* Grids para Serviços e Congressos */
.diferenciais-grid-servicos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.congresso-grid-card {
  background: white;
  padding: 3rem;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

/* ─── CUSTOM STYLES INTEGRATION ─── */

/* Roteiro Galerias */
.galeria-item-thumb {
  cursor: pointer;
}

.galeria-item-thumb:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(45, 80, 22, .15) !important;
}

/* Footer Logos Reguladores */
.footer-logos-orgaos {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 0.2rem 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.footer-logos-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.footer-logos-inner a,
.footer-logos-inner .footer-selo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logos-inner img {
  height: 20px !important;
  max-height: 38px !important;
  width: auto !important;
  opacity: 0.45;
  filter: grayscale(100%) brightness(200%);
  transition: all 0.3s ease;
}

.footer-logos-inner a:hover img {
  opacity: 1;
  filter: grayscale(0%) brightness(100%);
  transform: scale(1.06);
}

.footer-logos-inner .footer-selo-wrap img {
  height: 52px !important;
  max-height: 52px !important;
  width: auto !important;
  opacity: 0.8;
  filter: none;
  transition: all 0.3s ease;
}

.footer-logos-inner .footer-selo-wrap:hover img {
  opacity: 1;
  transform: scale(1.06);
}

@media(max-width: 900px) {
  .footer-logos-orgaos {
    padding: 2rem 1.5rem;
  }

  .footer-logos-inner {
    gap: 2rem;
  }

  .footer-logos-inner img {
    height: 10px !important;
    max-height: 10px !important;
    width: auto !important;
  }

  .footer-logos-inner .footer-selo-wrap img {
    height: 44px !important;
    max-height: 44px !important;
    width: auto !important;
  }

  .frota-detalhe-item {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}