/* =========================================================
   PARQUE TEMÁTICO DA MADEIRA — CSS COMPLETO
   Website premium / turístico / institucional
   ========================================================= */

/* -----------------------------
   01. VARIÁVEIS E RESET
----------------------------- */

:root{
  --green:#123f2a;
  --green-dark:#092319;
  --green-2:#0d4b34;
  --green-soft:#eaf2ed;
  --gold:#c8a24a;
  --gold-dark:#a9822e;
  --cream:#fbfaf5;
  --sand:#f6f2e9;
  --white:#ffffff;
  --black:#101510;
  --text:#162018;
  --muted:#66736b;
  --muted-2:#87918a;
  --danger:#9b2d2d;

  --radius-sm:14px;
  --radius-md:22px;
  --radius-lg:32px;
  --radius-xl:42px;

  --shadow-sm:0 12px 34px rgba(0,0,0,.06);
  --shadow-md:0 20px 60px rgba(0,0,0,.09);
  --shadow-lg:0 28px 90px rgba(0,0,0,.13);

  --header-height:86px;
  --container:1180px;
  --container-wide:1280px;

  --ease:.25s ease;
}

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

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  padding-top:var(--header-height);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:var(--cream);
  color:var(--text);
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

body.menu-open{
  overflow:hidden;
}

a{
  color:inherit;
}

img,
svg,
video,
iframe{
  max-width:100%;
}

img{
  display:block;
}

button,
input,
select,
textarea{
  font:inherit;
}

::selection{
  background:var(--gold);
  color:var(--green-dark);
}

/* -----------------------------
   02. UTILITÁRIOS GLOBAIS
----------------------------- */

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
}

.container-wide{
  width:100%;
  max-width:var(--container-wide);
  margin:0 auto;
}

.section{
  padding:90px 7vw;
}

.kicker,
.section-kicker{
  display:inline-block;
  font-size:.76rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--gold);
  margin-bottom:14px;
}

.section-title{
  max-width:760px;
  margin:0 auto 48px;
  text-align:center;
}

.section-title h2,
.split-content h2,
.final-cta h2{
  margin:0 0 18px;
  font-size:clamp(2.2rem,4vw,4.4rem);
  line-height:1;
  letter-spacing:-.05em;
  color:var(--green);
}

.section-title p,
.split-content p,
.final-cta p{
  margin:0;
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.8;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 26px;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
  transition:var(--ease);
  border:0;
  cursor:pointer;
  white-space:nowrap;
}

.btn-green{
  background:var(--green);
  color:#fff;
}

.btn-gold{
  background:var(--gold);
  color:#142016;
}

.btn-outline-green{
  border:1px solid rgba(18,63,42,.35);
  color:var(--green);
  background:transparent;
}

.btn-white{
  background:#fff;
  color:var(--green);
}

.btn:hover{
  transform:translateY(-3px);
  filter:brightness(1.05);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}

.panel{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:34px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-md);
}

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

.split-section{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:54px;
  align-items:center;
}

.split-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:36px;
  box-shadow:var(--shadow-lg);
}

.hidden{
  display:none!important;
}

/* -----------------------------
   03. HEADER PREMIUM
----------------------------- */

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:rgba(251,250,245,.96);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(18,63,42,.08);
  transition:var(--ease);
}

.site-header.is-scrolled{
  box-shadow:0 12px 40px rgba(0,0,0,.08);
}

.header-inner{
  width:100%;
  max-width:1380px;
  height:var(--header-height);
  margin:0 auto;
  padding:0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:#111;
  min-width:0;
  flex:0 0 auto;
}

.brand-mark{
  width:46px;
  height:46px;
  border-radius:13px;
  background:var(--green-2);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.78rem;
  font-weight:900;
  flex:0 0 auto;
}

.site-logo{
  height:58px;
  width:auto;
  max-width:190px;
  object-fit:contain;
  display:block;
  flex:0 0 auto;
}

.brand-text strong{
  display:block;
  color:var(--green);
  font-size:.98rem;
  line-height:1.15;
  white-space:nowrap;
}

.brand-text small{
  display:block;
  color:#7d877f;
  margin-top:4px;
  font-size:.72rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.main-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  flex:1;
}

.main-nav a{
  position:relative;
  color:#1d1d1d;
  text-decoration:none;
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  white-space:nowrap;
  transition:var(--ease);
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:2px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:center;
  transition:var(--ease);
}

.main-nav a:hover{
  color:var(--green);
}

.main-nav a:hover::after{
  transform:scaleX(1);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex:0 0 auto;
}

.nav-cta{
  min-height:44px;
  padding:0 20px;
  border-radius:9px;
  background:var(--gold);
  color:#fff;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  transition:var(--ease);
}

.nav-cta.ghost{
  background:rgba(18,63,42,.08);
  color:var(--green);
}

.nav-cta:hover{
  filter:brightness(1.05);
  transform:translateY(-2px);
}

.menu-toggle,
.mobile-menu{
  display:none;
}

/* -----------------------------
   04. MOBILE MENU
----------------------------- */

@media(max-width:1080px){
  body{
    padding-top:82px;
  }

  :root{
    --header-height:82px;
  }

  .header-inner{
    height:82px;
    padding:0 20px;
  }

  .brand{
    min-width:auto;
  }

  .site-logo{
    height:52px;
    max-width:150px;
  }

  .brand-text strong{
    font-size:1rem;
  }

  .brand-text small{
    display:none;
  }

  .main-nav,
  .header-actions{
    display:none;
  }

  .menu-toggle{
    display:flex;
    width:48px;
    height:48px;
    margin-left:auto;
    border:0;
    border-radius:14px;
    background:var(--green);
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
  }

  .menu-toggle span{
    width:22px;
    height:2px;
    background:#fff;
    display:block;
    transition:var(--ease);
  }

  body.menu-open .menu-toggle span:first-child{
    transform:translateY(4px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child{
    transform:translateY(-4px) rotate(-45deg);
  }

  .mobile-menu{
    display:none;
    position:fixed;
    inset:0;
    z-index:2000;
    background:rgba(9,35,25,.55);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
  }

  body.menu-open .mobile-menu{
    display:block;
  }

  .mobile-menu-panel{
    position:absolute;
    inset:16px;
    background:var(--cream);
    border-radius:28px;
    padding:26px;
    display:flex;
    flex-direction:column;
    box-shadow:var(--shadow-lg);
  }

  .mobile-menu-top{
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:flex-start;
  }

  .mobile-menu-top strong{
    color:var(--green);
    display:block;
    font-size:1.1rem;
  }

  .mobile-menu-top span{
    color:#777;
    font-size:.9rem;
  }

  .mobile-close{
    width:44px;
    height:44px;
    border:0;
    border-radius:50%;
    background:var(--green);
    color:#fff;
    font-size:1.8rem;
    cursor:pointer;
  }

  .mobile-nav{
    display:grid;
    gap:8px;
    margin:34px 0;
  }

  .mobile-nav a{
    color:var(--green);
    text-decoration:none;
    font-size:1.4rem;
    font-weight:900;
    padding:12px 0;
    border-bottom:1px solid rgba(18,63,42,.1);
  }

  .mobile-menu-cta{
    margin-top:auto;
    display:grid;
    gap:12px;
  }
}

/* -----------------------------
   05. HERO GLOBAL DE PÁGINAS
----------------------------- */

.hero-home,
.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg,rgba(9,35,25,.84),rgba(9,35,25,.36)),
    url("/assets/imgs/hero_1.jpg") center/cover no-repeat;
  overflow:hidden;
  margin-top:calc(var(--header-height) * -1);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:780px;
  padding:170px 7vw 100px;
  color:#fff;
}

.hero h1,
.hero-home h1{
  font-size:clamp(3rem,7vw,6.8rem);
  line-height:.92;
  letter-spacing:-.06em;
  margin:14px 0 24px;
}

.hero p,
.hero-home p{
  max-width:620px;
  font-size:clamp(1.05rem,1.5vw,1.35rem);
  line-height:1.7;
  color:rgba(255,255,255,.9);
}

.visit-hero,
.attractions-hero,
.tickets-hero,
.events-hero,
.about-hero,
.contact-hero,
.gallery-hero,
.faq-hero,
.attraction-detail-hero,
.groups-hero,
.hours-hero,
.legal-hero,
.map-hero,
.seo-hero,
.error-hero{
  min-height:68vh;
  display:flex;
  align-items:center;
  color:#fff;
  padding:170px 7vw 90px;
  background-size:cover;
  background-position:center;
  margin-top:calc(var(--header-height) * -1);
}

.visit-hero{background:linear-gradient(90deg,rgba(9,35,25,.86),rgba(9,35,25,.35)),url("/assets/imgs/hero_2.jpg") center/cover no-repeat}
.attractions-hero{background:linear-gradient(90deg,rgba(9,35,25,.88),rgba(9,35,25,.38)),url("/assets/imgs/hero_7.jpg") center/cover no-repeat}
.tickets-hero{background:linear-gradient(90deg,rgba(9,35,25,.88),rgba(9,35,25,.38)),url("/assets/imgs/hero_4.jpg") center/cover no-repeat}
.events-hero{background:linear-gradient(90deg,rgba(9,35,25,.88),rgba(9,35,25,.38)),url("/assets/imgs/hero_6.jpg") center/cover no-repeat}
.about-hero{background:linear-gradient(90deg,rgba(9,35,25,.88),rgba(9,35,25,.38)),url("/assets/imgs/hero_3.jpg") center/cover no-repeat}
.contact-hero{background:linear-gradient(90deg,rgba(9,35,25,.88),rgba(9,35,25,.38)),url("/assets/imgs/hero_5.jpg") center/cover no-repeat}
.gallery-hero{background:linear-gradient(90deg,rgba(9,35,25,.88),rgba(9,35,25,.38)),url("/assets/imgs/hero_3.jpg") center/cover no-repeat}
.faq-hero{background:linear-gradient(90deg,rgba(9,35,25,.88),rgba(9,35,25,.38)),url("/assets/imgs/hero_1.jpg") center/cover no-repeat}
.groups-hero{background:linear-gradient(90deg,rgba(9,35,25,.88),rgba(9,35,25,.38)),url("/assets/imgs/hero_5.jpg") center/cover no-repeat}
.hours-hero{background:linear-gradient(90deg,rgba(9,35,25,.88),rgba(9,35,25,.38)),url("/assets/imgs/hero_7.jpg") center/cover no-repeat}
.legal-hero{min-height:52vh;background:linear-gradient(90deg,rgba(9,35,25,.9),rgba(9,35,25,.42)),url("/assets/imgs/hero_4.jpg") center/cover no-repeat}
.map-hero{background:linear-gradient(90deg,rgba(9,35,25,.88),rgba(9,35,25,.38)),url("/assets/imgs/hero_1.jpg") center/cover no-repeat}
.seo-hero{background:linear-gradient(90deg,rgba(9,35,25,.88),rgba(9,35,25,.38)),url("/assets/imgs/hero_7.jpg") center/cover no-repeat}
.error-hero{background:linear-gradient(90deg,rgba(9,35,25,.9),rgba(9,35,25,.55)),url("/assets/imgs/hero_6.jpg") center/cover no-repeat}

.visit-hero-inner,
.attractions-hero-inner,
.tickets-hero-inner,
.events-hero-inner,
.about-hero-inner,
.contact-hero-inner,
.gallery-hero-inner,
.faq-hero-inner,
.attraction-detail-hero-inner,
.groups-hero-inner,
.hours-hero-inner,
.legal-hero-inner,
.map-hero-inner,
.seo-hero-inner,
.error-hero-inner{
  max-width:900px;
}

.legal-hero-inner{
  max-width:860px;
}

.visit-hero-inner span,
.attractions-hero-inner span,
.tickets-hero-inner span,
.events-hero-inner span,
.about-hero-inner span,
.contact-hero-inner span,
.gallery-hero-inner span,
.faq-hero-inner span,
.attraction-detail-hero-inner span,
.groups-hero-inner span,
.hours-hero-inner span,
.legal-hero-inner span,
.map-hero-inner span,
.seo-hero-inner span,
.error-hero-inner span{
  display:inline-block;
  color:var(--gold);
  text-transform:uppercase;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.18em;
  margin-bottom:18px;
}

.visit-hero h1,
.attractions-hero h1,
.tickets-hero h1,
.events-hero h1,
.about-hero h1,
.contact-hero h1,
.gallery-hero h1,
.faq-hero h1,
.attraction-detail-hero h1,
.groups-hero h1,
.hours-hero h1,
.legal-hero h1,
.map-hero h1,
.seo-hero h1,
.error-hero h1{
  font-size:clamp(2.8rem,6vw,6.2rem);
  line-height:.94;
  letter-spacing:-.06em;
  margin:0 0 24px;
}

.legal-hero h1{
  font-size:clamp(2.8rem,6vw,5.8rem);
}

.visit-hero h1 em,
.attractions-hero h1 em,
.tickets-hero h1 em,
.events-hero h1 em,
.about-hero h1 em,
.contact-hero h1 em,
.gallery-hero h1 em,
.faq-hero h1 em,
.groups-hero h1 em,
.hours-hero h1 em,
.legal-hero h1 em,
.map-hero h1 em,
.seo-hero h1 em,
.error-hero h1 em{
  color:var(--gold);
  font-style:normal;
}

.visit-hero p,
.attractions-hero p,
.tickets-hero p,
.events-hero p,
.about-hero p,
.contact-hero p,
.gallery-hero p,
.faq-hero p,
.attraction-detail-hero p,
.groups-hero p,
.hours-hero p,
.legal-hero p,
.map-hero p,
.seo-hero p,
.error-hero p{
  max-width:700px;
  font-size:1.15rem;
  line-height:1.75;
  color:rgba(255,255,255,.88);
}

/* -----------------------------
   06. HOME
----------------------------- */

.quick-features{
  position:relative;
  z-index:4;
  margin-top:-70px;
  padding:0 7vw 70px;
}

.quick-grid{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.quick-card{
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-radius:26px;
  padding:30px 26px;
  box-shadow:0 24px 70px rgba(0,0,0,.16);
  border:1px solid rgba(255,255,255,.7);
}

.quick-card .icon{
  font-size:2rem;
  margin-bottom:18px;
}

.quick-card h3{
  margin:0 0 10px;
  font-size:1.15rem;
  color:var(--green);
}

.quick-card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.stats-band{
  background:var(--green);
  color:#fff;
  padding:38px 7vw;
}

.stats-grid{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.stat{
  text-align:center;
  padding:20px;
}

.stat strong{
  display:block;
  font-size:clamp(1.7rem,3vw,2.6rem);
  color:var(--gold);
  margin-bottom:6px;
}

.stat span{
  color:rgba(255,255,255,.82);
}

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

.experience-card{
  position:relative;
  min-height:420px;
  border-radius:32px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  text-decoration:none;
  display:flex;
  align-items:flex-end;
  box-shadow:var(--shadow-lg);
  transition:var(--ease);
}

.experience-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.76));
}

.experience-card-content,
.experience-card>h3{
  position:relative;
  z-index:2;
  color:#fff;
}

.experience-card-content{
  padding:28px;
}

.experience-card-content span{
  display:block;
  color:var(--gold);
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:900;
  margin-bottom:10px;
}

.experience-card-content h3,
.experience-card>h3{
  font-size:1.8rem;
  line-height:1;
  margin:0 0 12px;
}

.experience-card>h3{
  padding:28px;
}

.experience-card-content p{
  margin:0;
  color:rgba(255,255,255,.86);
  line-height:1.55;
}

.experience-card:hover{
  transform:translateY(-6px);
}

.visit-strip{
  padding:36px 7vw;
  background:var(--sand);
}

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

.visit-item{
  background:#fff;
  border-radius:22px;
  padding:24px;
  border:1px solid rgba(18,63,42,.08);
}

.visit-item strong{
  display:block;
  color:var(--green);
  margin-bottom:6px;
}

.visit-item span{
  color:var(--muted);
}

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

.planning-card{
  background:#fff;
  border-radius:28px;
  padding:32px;
  text-decoration:none;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
  transition:var(--ease);
}

.planning-card h3{
  margin:0 0 12px;
  color:var(--green);
  font-size:1.35rem;
}

.planning-card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.planning-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-md);
}

.final-cta{
  padding:90px 7vw;
  background:
    linear-gradient(90deg,rgba(9,35,25,.88),rgba(9,35,25,.52)),
    url("/assets/imgs/hero_6.jpg") center/cover no-repeat;
}

.final-cta-box{
  max-width:780px;
  color:#fff;
}

.final-cta h2{
  color:#fff;
}

.final-cta p{
  color:rgba(255,255,255,.86);
}

/* -----------------------------
   07. VISITAR / PLANEAMENTO
----------------------------- */

.visit-page,
.attractions-list-section,
.tickets-page,
.events-page,
.gallery-page,
.faq-page,
.attraction-detail-page{
  padding:90px 7vw;
  background:var(--cream);
}

.visit-wrap,
.tickets-wrap,
.events-wrap{
  max-width:var(--container-wide);
  margin:0 auto;
}

.visit-wrap>h2,
.visit-info h2,
.tickets-main h2,
.events-main h2{
  color:var(--green);
  font-size:clamp(2.2rem,4vw,4.5rem);
  line-height:1;
  letter-spacing:-.05em;
  margin:0 0 42px;
}

.visit-wrap h2 em,
.visit-info h2 em,
.tickets-main h2 em,
.events-main h2 em{
  color:var(--gold);
  font-style:normal;
}

.visit-info-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.premium-info{
  margin-bottom:34px;
}

.visit-mini-card{
  background:#fff;
  border-radius:26px;
  padding:28px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
}

.visit-mini-card span{
  display:block;
  font-size:2rem;
  margin-bottom:18px;
}

.visit-mini-card small{
  display:block;
  color:var(--gold);
  text-transform:uppercase;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.14em;
  margin-bottom:8px;
}

.visit-mini-card strong{
  display:block;
  color:var(--green);
  font-size:1.15rem;
  margin-bottom:8px;
}

.visit-mini-card p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}

.visit-card{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:42px;
  align-items:stretch;
  background:#fff;
  border-radius:38px;
  padding:42px;
  box-shadow:var(--shadow-md);
  border:1px solid rgba(18,63,42,.08);
}

.how-to-box{
  display:grid;
  gap:18px;
}

.route-item{
  background:var(--sand);
  border-radius:22px;
  padding:22px;
  border:1px solid rgba(18,63,42,.07);
}

.route-item b{
  display:block;
  color:var(--green);
  margin-bottom:8px;
  font-size:1.05rem;
}

.route-item p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.visit-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.visit-image{
  position:relative;
  min-height:560px;
  border-radius:30px;
  overflow:hidden;
}

.visit-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.map-float-card{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-radius:24px;
  padding:22px;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.map-float-card strong{
  display:block;
  color:var(--green);
  margin-bottom:8px;
}

.map-float-card p{
  color:var(--muted);
  line-height:1.5;
  margin:0 0 10px;
}

.map-float-card a{
  color:var(--green);
  font-weight:900;
  text-decoration:none;
}

/* -----------------------------
   08. ATRAÇÕES / GALERIA / FILTROS
----------------------------- */

.attractions-intro,
.gallery-instagram-section,
.contact-info-section,
.about-intro-section,
.about-santana-section{
  padding:80px 7vw;
  background:var(--cream);
}

.intro-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:end;
}

.intro-grid h2{
  color:var(--green);
  font-size:clamp(2.3rem,4vw,4.5rem);
  line-height:1;
  letter-spacing:-.05em;
  margin:0;
}

.intro-grid p{
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.8;
  margin:0;
}

.attractions-filter,
.gallery-filter,
.faq-filter{
  position:sticky;
  top:var(--header-height);
  z-index:20;
  background:rgba(251,250,245,.92);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  padding:18px 7vw;
  border-top:1px solid rgba(18,63,42,.08);
  border-bottom:1px solid rgba(18,63,42,.08);
}

.attractions-filter .container,
.gallery-filter .container,
.faq-filter .container{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.filter-btn{
  border:1px solid rgba(18,63,42,.18);
  background:#fff;
  color:var(--green);
  border-radius:999px;
  padding:12px 20px;
  font-weight:900;
  cursor:pointer;
  transition:var(--ease);
}

.filter-btn:hover,
.filter-btn.active{
  background:var(--green);
  color:#fff;
}

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

.attraction-card{
  display:block;
  background:#fff;
  border-radius:32px;
  overflow:hidden;
  text-decoration:none;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
  transition:var(--ease);
}

.attraction-card:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow-md);
}

.attraction-image{
  position:relative;
  height:280px;
  overflow:hidden;
}

.attraction-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s ease;
}

.attraction-card:hover .attraction-image img{
  transform:scale(1.06);
}

.attraction-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.45));
}

.attraction-image span{
  position:absolute;
  left:20px;
  bottom:20px;
  z-index:2;
  background:rgba(255,255,255,.92);
  color:var(--green);
  border-radius:999px;
  padding:9px 14px;
  font-size:.76rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.attraction-body{
  padding:28px;
}

.attraction-body small{
  color:var(--gold);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.14em;
  font-size:.7rem;
}

.attraction-body h3{
  color:var(--green);
  font-size:1.6rem;
  line-height:1.1;
  margin:10px 0 12px;
}

.attraction-body p{
  color:var(--muted);
  line-height:1.65;
  margin:0 0 22px;
}

.attraction-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  border-top:1px solid rgba(18,63,42,.1);
  padding-top:18px;
}

.attraction-meta strong{
  color:var(--green);
  font-size:.92rem;
}

.attraction-meta em{
  color:var(--muted);
  font-style:normal;
  font-weight:700;
}

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

.gallery-card{
  position:relative;
  min-height:320px;
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow-md);
}

.gallery-card:nth-child(1),
.gallery-card:nth-child(6){
  grid-column:span 2;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s ease;
}

.gallery-card:hover img{
  transform:scale(1.06);
}

.gallery-card-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.72));
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:26px;
  color:#fff;
}

.gallery-card-overlay span{
  color:var(--gold);
  text-transform:uppercase;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.14em;
}

.gallery-card-overlay h3{
  margin:8px 0 0;
  font-size:1.5rem;
}

/* -----------------------------
   09. PERCURSOS / CARDS DE PASSOS
----------------------------- */

.recommended-route,
.about-values-section,
.about-audience-section,
.related-attractions-section,
.ticket-included-section,
.event-types-section,
.visit-faq,
.contact-main-section,
.attraction-gallery-section,
.groups-types-section,
.groups-benefits-section,
.best-time-section,
.hours-info-section,
.map-section,
.seo-content-section{
  background:var(--sand);
}

.groups-intro-section,
.groups-plan-section,
.hours-main-section{
  background:var(--cream);
}

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

.route-step{
  background:#fff;
  border-radius:30px;
  padding:32px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
}

.route-step span{
  display:inline-flex;
  width:48px;
  height:48px;
  align-items:center;
  justify-content:center;
  background:var(--green);
  color:var(--gold);
  border-radius:50%;
  font-weight:900;
  margin-bottom:22px;
}

.route-step h3{
  color:var(--green);
  margin:0 0 12px;
  font-size:1.3rem;
}

.route-step p{
  color:var(--muted);
  line-height:1.65;
  margin:0;
}

/* -----------------------------
   10. BILHETES
----------------------------- */

.tickets-wrap,
.events-wrap{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:36px;
  align-items:start;
}

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

.ticket-card-premium{
  position:relative;
  background:#fff;
  border-radius:32px;
  padding:34px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
}

.ticket-card-premium.featured{
  background:var(--green);
  color:#fff;
  transform:translateY(-8px);
}

.ticket-card-premium small{
  display:block;
  color:var(--gold);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.14em;
  font-size:.72rem;
  margin-bottom:16px;
}

.ticket-price{
  color:var(--green);
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:900;
  letter-spacing:-.05em;
  margin-bottom:14px;
}

.ticket-card-premium.featured .ticket-price{
  color:var(--gold);
}

.ticket-card-premium p{
  color:var(--muted);
  line-height:1.65;
  margin:0 0 22px;
}

.ticket-card-premium.featured p{
  color:rgba(255,255,255,.82);
}

.ticket-card-premium ul{
  list-style:none;
  padding:0;
  margin:0 0 28px;
  display:grid;
  gap:12px;
}

.ticket-card-premium li{
  color:#35463b;
  line-height:1.5;
}

.ticket-card-premium li::before{
  content:"✓";
  color:var(--gold);
  font-weight:900;
  margin-right:8px;
}

.ticket-card-premium.featured li{
  color:rgba(255,255,255,.88);
}

.badge{
  position:absolute;
  top:22px;
  right:22px;
  background:var(--gold);
  color:var(--green);
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:900;
  padding:8px 12px;
  border-radius:999px;
}

.ticket-btn,
.family-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  transition:var(--ease);
}

.ticket-btn{
  width:100%;
  background:var(--green);
  color:#fff;
}

.ticket-btn.gold,
.family-btn{
  background:var(--gold);
  color:var(--green);
}

.ticket-btn:hover,
.family-btn:hover{
  transform:translateY(-3px);
}

.family-ticket{
  margin-top:28px;
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:24px;
  align-items:center;
  background:
    linear-gradient(135deg,rgba(18,63,42,.96),rgba(18,63,42,.82)),
    url("/assets/imgs/hero_3.jpg") center/cover no-repeat;
  color:#fff;
  border-radius:34px;
  padding:32px;
  box-shadow:var(--shadow-lg);
}

.family-ticket h3{
  margin:0 0 8px;
  font-size:1.45rem;
}

.family-ticket p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.6;
}

.family-price strong{
  display:block;
  color:var(--gold);
  font-size:2rem;
  line-height:1;
}

.family-price span{
  color:rgba(255,255,255,.78);
  font-size:.9rem;
}

.family-btn{
  padding:0 22px;
  white-space:nowrap;
}

.ticket-note{
  margin-top:22px;
  background:var(--sand);
  border:1px solid rgba(18,63,42,.08);
  color:var(--muted);
  line-height:1.6;
  padding:18px 22px;
  border-radius:20px;
}

.tickets-side,
.events-side{
  display:grid;
  gap:22px;
  position:sticky;
  top:calc(var(--header-height) + 30px);
}

.side-box,
.calendar-box,
.newsletter-box{
  background:#fff;
  border-radius:30px;
  padding:28px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
}

.side-box h3,
.calendar-box h3,
.newsletter-box h3{
  color:var(--green);
  margin:0 0 20px;
  font-size:1.35rem;
}

.schedule-row{
  padding:18px 0;
  border-top:1px solid rgba(18,63,42,.1);
}

.schedule-row:first-of-type{
  border-top:0;
  padding-top:0;
}

.schedule-row strong,
.schedule-row span,
.schedule-row b{
  display:block;
}

.schedule-row strong{
  color:var(--green);
  margin-bottom:5px;
}

.schedule-row span{
  color:var(--muted);
  margin-bottom:5px;
}

.schedule-row b{
  color:var(--gold);
}

.closed,
.schedule-row .closed{
  color:var(--danger)!important;
}

.green-soft,
.newsletter-box{
  background:var(--green);
  color:#fff;
}

.green-soft h3,
.newsletter-box h3{
  color:var(--gold);
}

.green-soft li,
.newsletter-box p{
  color:rgba(255,255,255,.86);
  line-height:1.65;
}

/* -----------------------------
   11. FORMULÁRIOS
----------------------------- */

.reservation-panel{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:48px;
  align-items:start;
  background:#fff;
  border-radius:38px;
  padding:44px;
  box-shadow:var(--shadow-md);
  border:1px solid rgba(18,63,42,.08);
}

.reservation-panel h2{
  color:var(--green);
  font-size:clamp(2.2rem,4vw,4rem);
  line-height:1;
  letter-spacing:-.05em;
  margin:0 0 18px;
}

.reservation-panel p{
  color:var(--muted);
  line-height:1.75;
  margin:0;
}

.ticket-form,
.form{
  display:grid;
  gap:16px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.ticket-form input,
.ticket-form select,
.ticket-form textarea,
.form input,
.form select,
.form textarea{
  width:100%;
  border:1px solid rgba(18,63,42,.16);
  background:var(--cream);
  border-radius:18px;
  padding:15px 16px;
  font:inherit;
  color:var(--green);
  outline:none;
  transition:var(--ease);
}

.ticket-form textarea,
.form textarea{
  min-height:130px;
  resize:vertical;
}

.ticket-form input:focus,
.ticket-form select:focus,
.ticket-form textarea:focus,
.form input:focus,
.form select:focus,
.form textarea:focus{
  border-color:var(--gold);
  background:#fff;
  box-shadow:0 0 0 4px rgba(200,162,74,.12);
}

.form-message{
  border-radius:18px;
  padding:16px 18px;
  font-weight:800;
  line-height:1.5;
}

.form-message.success{
  background:#e8f4ec;
  color:#14633a;
}

.form-message.error{
  background:#f8e7e7;
  color:#9b2d2d;
}

/* -----------------------------
   12. EVENTOS
----------------------------- */

.events-list{
  display:grid;
  gap:22px;
}

.event-card{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:26px;
  background:#fff;
  border-radius:32px;
  padding:28px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
}

.event-date{
  min-height:120px;
  border-radius:24px;
  background:var(--green);
  color:var(--gold);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.event-date.gold{
  background:var(--gold);
  color:var(--green);
}

.event-date.green{
  background:var(--green);
  color:var(--gold);
}

.event-date.purple{
  background:#4e315f;
  color:#fff;
}

.event-date strong{
  font-size:2.2rem;
  line-height:1;
  font-weight:900;
}

.event-date span{
  margin-top:8px;
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  text-align:center;
}

.event-info small{
  display:block;
  color:var(--gold);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.14em;
  font-size:.72rem;
  margin-bottom:10px;
}

.event-info h3{
  color:var(--green);
  font-size:1.65rem;
  line-height:1.1;
  margin:0 0 12px;
}

.event-info p{
  color:var(--muted);
  line-height:1.7;
  margin:0 0 18px;
}

.event-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.event-meta span{
  background:var(--sand);
  color:var(--green);
  border-radius:999px;
  padding:9px 13px;
  font-size:.86rem;
  font-weight:700;
}

.events-more{
  display:inline-flex;
  margin-top:28px;
  color:var(--green);
  font-weight:900;
  text-decoration:none;
}

.calendar-list{
  display:grid;
  gap:14px;
}

.calendar-list div{
  background:var(--sand);
  border-radius:20px;
  padding:18px;
}

.calendar-list strong{
  display:block;
  color:var(--green);
  margin-bottom:6px;
}

.calendar-list span{
  color:var(--muted);
  line-height:1.5;
}

.newsletter-box form{
  display:grid;
  gap:12px;
}

.newsletter-box input{
  border:0;
  border-radius:999px;
  min-height:48px;
  padding:0 18px;
}

.newsletter-box button{
  border:0;
  border-radius:999px;
  min-height:48px;
  background:var(--gold);
  color:var(--green);
  font-weight:900;
  cursor:pointer;
}

/* -----------------------------
   13. SOBRE
----------------------------- */

.about-story{
  padding:90px 7vw;
  background:
    linear-gradient(90deg,rgba(18,63,42,.96),rgba(18,63,42,.78)),
    url("/assets/imgs/hero_4.jpg") center/cover no-repeat;
}

.about-story-box{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:48px;
  align-items:center;
  color:#fff;
}

.about-story-box h2{
  color:#fff;
  font-size:clamp(2.2rem,4vw,4.4rem);
  line-height:1;
  letter-spacing:-.05em;
  margin:0;
}

.about-story-box p{
  color:rgba(255,255,255,.86);
  font-size:1.08rem;
  line-height:1.8;
  margin:0;
}

/* -----------------------------
   14. CONTACTOS
----------------------------- */

.contact-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:stretch;
}

.contact-map{
  position:relative;
  min-height:620px;
  border-radius:38px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(18,63,42,.08);
}

.contact-map iframe{
  width:100%;
  height:100%;
  min-height:620px;
  border:0;
  display:block;
  filter:saturate(.9) contrast(.98);
}

.contact-panel{
  grid-template-columns:1fr;
  gap:28px;
  margin:0;
}

.contact-info-section .planning-card a{
  color:var(--green);
  font-weight:900;
  text-decoration:none;
}

/* -----------------------------
   15. FAQ
----------------------------- */

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

.faq-card{
  background:#fff;
  border-radius:28px;
  padding:30px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
}

.faq-card h3{
  color:var(--green);
  margin:0 0 12px;
  font-size:1.25rem;
}

.faq-card p{
  color:var(--muted);
  margin:0;
  line-height:1.65;
}

.faq-list-premium{
  max-width:900px;
  margin:0 auto;
  display:grid;
  gap:16px;
}

.faq-item-premium{
  background:#fff;
  border-radius:24px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
}

.faq-question{
  width:100%;
  background:none;
  border:0;
  text-align:left;
  padding:24px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  cursor:pointer;
}

.faq-question small{
  color:var(--gold);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.14em;
}

.faq-question h3{
  margin:8px 0 0;
  color:var(--green);
  font-size:1.25rem;
}

.faq-question>span{
  width:36px;
  height:36px;
  border-radius:50%;
  background:var(--green);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  flex:0 0 auto;
}

.faq-answer{
  display:none;
  padding:0 24px 24px;
}

.faq-answer p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.faq-item-premium.active .faq-answer{
  display:block;
}

/* -----------------------------
   16. DETALHE ATRAÇÃO
----------------------------- */

.attraction-detail-layout{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:42px;
  align-items:start;
}

.attraction-detail-content h2{
  color:var(--green);
  font-size:clamp(2.2rem,4vw,4.4rem);
  line-height:1;
  letter-spacing:-.05em;
  margin:0 0 24px;
}

.attraction-detail-content p{
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.85;
  margin:0;
}

.detail-highlights{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:34px;
}

.detail-highlights div{
  display:flex;
  gap:12px;
  align-items:center;
  background:#fff;
  border-radius:20px;
  padding:18px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
}

.detail-highlights span{
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--green);
  color:var(--gold);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  flex:0 0 auto;
}

.detail-highlights strong{
  color:var(--green);
}

.attraction-detail-side{
  position:sticky;
  top:calc(var(--header-height) + 30px);
}

.detail-card{
  background:var(--green);
  color:#fff;
  border-radius:30px;
  padding:30px;
  box-shadow:var(--shadow-lg);
}

.detail-card h3{
  color:var(--gold);
  font-size:1.35rem;
  margin:0 0 22px;
}

.detail-card ul{
  margin:0;
  padding-left:18px;
}

.detail-card li{
  margin-bottom:10px;
  color:rgba(255,255,255,.86);
  line-height:1.5;
}

.detail-row{
  padding:16px 0;
  border-top:1px solid rgba(255,255,255,.14);
}

.detail-row:first-of-type{
  border-top:0;
  padding-top:0;
}

.detail-row small{
  display:block;
  color:rgba(255,255,255,.62);
  text-transform:uppercase;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.12em;
  margin-bottom:6px;
}

.detail-row strong{
  color:#fff;
  line-height:1.4;
}

.detail-gallery{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:22px;
}

.detail-gallery img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:var(--shadow-md);
}

.detail-gallery img:first-child{
  height:520px;
  grid-row:span 2;
}

.tips-list{
  display:grid;
  gap:16px;
}

.tip-card{
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:#fff;
  border-radius:24px;
  padding:22px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
}

.tip-card span{
  color:var(--gold);
  font-weight:900;
  font-size:1.2rem;
}

.tip-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

/* -----------------------------
   17. HORÁRIOS
----------------------------- */

.hours-layout{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:36px;
  align-items:start;
}

.hours-main-card{
  background:#fff;
  border-radius:38px;
  padding:44px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-md);
}

.hours-main-card h2{
  color:var(--green);
  font-size:clamp(2.4rem,4vw,4.6rem);
  line-height:1;
  letter-spacing:-.05em;
  margin:0 0 34px;
}

.hours-big-row{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
  padding:28px 0;
  border-top:1px solid rgba(18,63,42,.1);
}

.hours-big-row:first-of-type{
  border-top:0;
  padding-top:0;
}

.hours-big-row strong{
  display:block;
  color:var(--green);
  font-size:1.35rem;
  margin-bottom:6px;
}

.hours-big-row span{
  color:var(--muted);
}

.hours-big-row b{
  color:var(--gold);
  font-size:1.9rem;
  white-space:nowrap;
}

.closed-row b{
  color:var(--danger);
}

.hours-note{
  margin:24px 0 0;
  background:var(--sand);
  color:var(--muted);
  line-height:1.7;
  padding:20px 22px;
  border-radius:20px;
}

.hours-side-card{
  position:sticky;
  top:calc(var(--header-height) + 30px);
  background:var(--green);
  color:#fff;
  border-radius:30px;
  padding:30px;
  box-shadow:var(--shadow-lg);
}

.hours-side-card h3{
  color:var(--gold);
  font-size:1.35rem;
  margin:0 0 22px;
}

.hours-info-section .visit-card{
  background:#fff;
}

/* -----------------------------
   18. PÁGINAS LEGAIS
----------------------------- */

.legal-section{
  background:var(--cream);
}

.legal-layout{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:42px;
  align-items:start;
}

.legal-side{
  position:sticky;
  top:calc(var(--header-height) + 30px);
}

.legal-side-card{
  background:#fff;
  border-radius:28px;
  padding:28px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
}

.legal-side-card h3{
  margin:0 0 20px;
  color:var(--green);
  font-size:1.25rem;
}

.legal-side-card a{
  display:block;
  text-decoration:none;
  color:var(--muted);
  margin-bottom:14px;
  line-height:1.4;
}

.legal-side-card a:hover{
  color:var(--green);
}

.legal-content{
  display:grid;
  gap:28px;
}

.legal-block{
  background:#fff;
  border-radius:32px;
  padding:40px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
}

.legal-block h2{
  margin:0 0 20px;
  color:var(--green);
  font-size:2rem;
  line-height:1;
}

.legal-block p{
  color:var(--muted);
  line-height:1.85;
  margin:0 0 18px;
}

.legal-block ul{
  margin:0 0 20px 18px;
  padding:0;
}

.legal-block li{
  color:var(--muted);
  margin-bottom:10px;
  line-height:1.7;
}

.legal-contact-box{
  background:var(--sand);
  border-radius:22px;
  padding:22px;
  border:1px solid rgba(18,63,42,.08);
}

.legal-contact-box strong{
  display:block;
  color:var(--green);
  margin-bottom:12px;
}

.legal-contact-box p{
  margin:0;
}

/* -----------------------------
   19. MAPA DO PARQUE / PÁGINAS FUTURAS
----------------------------- */

.map-layout{
  display:grid;
  grid-template-columns:1fr 380px;
  gap:34px;
  align-items:start;
}

.park-map-card{
  background:#fff;
  border-radius:38px;
  overflow:hidden;
  box-shadow:var(--shadow-md);
  border:1px solid rgba(18,63,42,.08);
}

.park-map-card img,
.park-map-card iframe{
  width:100%;
  min-height:620px;
  height:620px;
  object-fit:cover;
  border:0;
}

.map-side{
  display:grid;
  gap:18px;
  position:sticky;
  top:calc(var(--header-height) + 30px);
}

.map-point{
  background:#fff;
  border-radius:24px;
  padding:22px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
}

.map-point small{
  color:var(--gold);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
}

.map-point h3{
  margin:8px 0 8px;
  color:var(--green);
}

.map-point p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.seo-content{
  max-width:920px;
  margin:0 auto;
  display:grid;
  gap:26px;
}

.seo-block{
  background:#fff;
  border-radius:32px;
  padding:38px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
}

.seo-block h2{
  margin:0 0 18px;
  color:var(--green);
  font-size:clamp(2rem,3.5vw,3.2rem);
  line-height:1;
  letter-spacing:-.04em;
}

.seo-block p,
.seo-block li{
  color:var(--muted);
  line-height:1.8;
}

.seo-block p{
  margin:0 0 16px;
}

.seo-block ul{
  margin:0;
  padding-left:18px;
}

/* -----------------------------
   20. BANNER DE COOKIES
----------------------------- */

.cookie-banner{
  position:fixed;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:3000;
  max-width:1180px;
  margin:0 auto;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(18,63,42,.12);
  border-radius:26px;
  box-shadow:0 24px 90px rgba(0,0,0,.18);
  padding:22px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:22px;
  align-items:center;
}

.cookie-banner.is-hidden{
  display:none;
}

.cookie-banner h3{
  margin:0 0 8px;
  color:var(--green);
  font-size:1.15rem;
}

.cookie-banner p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.cookie-banner a{
  color:var(--green);
  font-weight:900;
}

.cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.cookie-btn{
  min-height:44px;
  padding:0 18px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  font-weight:900;
}

.cookie-accept{
  background:var(--green);
  color:#fff;
}

.cookie-reject{
  background:var(--sand);
  color:var(--green);
}

/* -----------------------------
   21. FOOTER
----------------------------- */

.lux-footer{
  background:var(--green-dark);
  color:#fff;
  padding:80px 7vw 26px;
}

.footer-inner{
  max-width:var(--container-wide);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.3fr .8fr .8fr .9fr;
  gap:54px;
}

.footer-brand h3{
  margin:0 0 18px;
  font-size:1.5rem;
  line-height:1.2;
  display:flex;
  align-items:center;
  gap:12px;
}

.footer-logo{
  width:42px;
  height:42px;
  border-radius:12px;
  background:var(--gold);
  display:inline-block;
  flex:0 0 auto;
}

.footer-brand p,
.lux-footer p{
  color:rgba(255,255,255,.72);
  line-height:1.7;
  margin:0 0 18px;
}

.footer-social{
  display:flex;
  gap:10px;
  margin-top:22px;
}

.footer-social a{
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  border:1px solid rgba(255,255,255,.1);
}

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

.lux-footer h4{
  margin:0 0 18px;
  color:var(--gold);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.16em;
}

.lux-footer a{
  display:block;
  color:rgba(255,255,255,.78);
  text-decoration:none;
  margin-bottom:12px;
  line-height:1.4;
}

.lux-footer a:hover{
  color:var(--gold);
}

.footer-bottom{
  max-width:var(--container-wide);
  margin:58px auto 0;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:24px;
  color:rgba(255,255,255,.55);
  font-size:.9rem;
}

/* -----------------------------
   22. 404 / ESTADOS
----------------------------- */

.not-found-page{
  padding-top:140px;
  background:var(--cream);
}

.error-card{
  max-width:780px;
  margin:0 auto;
  text-align:center;
  background:#fff;
  border-radius:38px;
  padding:50px;
  box-shadow:var(--shadow-md);
}

.error-card h1{
  margin:0 0 18px;
  color:var(--green);
  font-size:clamp(2.5rem,5vw,5rem);
  line-height:1;
}

.error-card p{
  color:var(--muted);
  line-height:1.8;
}

/* -----------------------------
   23. RESPONSIVE GERAL
----------------------------- */

@media(max-width:1180px){
  .tickets-wrap,
  .events-wrap,
  .hours-layout,
  .legal-layout,
  .map-layout{
    grid-template-columns:1fr;
  }

  .tickets-side,
  .events-side,
  .hours-side-card,
  .legal-side,
  .map-side,
  .attraction-detail-side{
    position:static;
  }

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

  .family-ticket{
    grid-template-columns:1fr;
  }

  .family-price{
    text-align:left;
  }

  .quick-grid,
  .cards-grid,
  .stats-grid,
  .visit-grid,
  .planning-grid,
  .visit-info-grid,
  .faq-grid,
  .route-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .split-section,
  .intro-grid,
  .about-story-box,
  .contact-layout,
  .attraction-detail-layout{
    grid-template-columns:1fr;
  }

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

@media(max-width:780px){
  .section,
  .visit-page,
  .tickets-page,
  .events-page,
  .gallery-page,
  .faq-page,
  .attraction-detail-page{
    padding:64px 22px;
  }

  .hero,
  .hero-home,
  .visit-hero,
  .attractions-hero,
  .tickets-hero,
  .events-hero,
  .about-hero,
  .contact-hero,
  .gallery-hero,
  .faq-hero,
  .attraction-detail-hero,
  .groups-hero,
  .hours-hero,
  .legal-hero,
  .map-hero,
  .seo-hero,
  .error-hero{
    min-height:72vh;
    padding:110px 22px 70px;
    margin-top:calc(var(--header-height) * -1);
  }

  .legal-hero{
    min-height:60vh;
  }

  .hero-content{
    padding:110px 22px 90px;
  }

  .quick-features{
    margin-top:-40px;
    padding:0 20px 50px;
  }

  .quick-grid,
  .cards-grid,
  .stats-grid,
  .visit-grid,
  .planning-grid,
  .visit-info-grid,
  .faq-grid,
  .route-grid,
  .tickets-grid-premium,
  .tickets-side,
  .events-side,
  .form-grid,
  .gallery-grid,
  .attractions-grid,
  .detail-highlights,
  .two-col{
    grid-template-columns:1fr;
  }

  .ticket-card-premium.featured{
    transform:none;
  }

  .visit-card,
  .reservation-panel,
  .event-card{
    grid-template-columns:1fr;
    padding:24px;
    border-radius:26px;
  }

  .visit-image{
    min-height:360px;
    border-radius:24px;
  }

  .split-image img,
  .contact-map,
  .contact-map iframe{
    height:340px;
    min-height:340px;
    border-radius:26px;
  }

  .hero-actions,
  .visit-actions{
    flex-direction:column;
  }

  .btn,
  .visit-actions .btn{
    width:100%;
  }

  .attractions-filter,
  .gallery-filter,
  .faq-filter{
    position:relative;
    top:auto;
    padding:16px 22px;
  }

  .filter-btn{
    flex:1 1 auto;
    padding:11px 14px;
    font-size:.86rem;
  }

  .attraction-image{
    height:240px;
  }

  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(6){
    grid-column:auto;
    min-height:280px;
  }

  .detail-gallery{
    grid-template-columns:1fr;
  }

  .detail-gallery img,
  .detail-gallery img:first-child{
    height:260px;
    grid-row:auto;
    border-radius:24px;
  }

  .event-card{
    gap:18px;
  }

  .event-date{
    min-height:90px;
    flex-direction:row;
    gap:12px;
  }

  .final-cta,
  .about-story{
    padding:70px 22px;
  }

  .hours-big-row{
    align-items:flex-start;
    flex-direction:column;
  }

  .hours-big-row b{
    font-size:1.6rem;
  }

  .hours-main-card,
  .hours-side-card,
  .legal-block,
  .legal-side-card,
  .seo-block,
  .error-card{
    border-radius:26px;
    padding:26px;
  }

  .map-float-card{
    left:14px;
    right:14px;
    bottom:14px;
    border-radius:20px;
  }

  .park-map-card img,
  .park-map-card iframe{
    height:380px;
    min-height:380px;
  }

  .cookie-banner{
    left:14px;
    right:14px;
    bottom:14px;
    grid-template-columns:1fr;
    border-radius:22px;
  }

  .cookie-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .lux-footer{
    padding:64px 22px 24px;
  }

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

  .footer-bottom{
    margin-top:42px;
    flex-direction:column;
  }
}

@media(max-width:460px){
  .brand-text{
    display:none;
  }

  .site-logo{
    max-width:130px;
  }

  .hero h1,
  .hero-home h1,
  .visit-hero h1,
  .attractions-hero h1,
  .tickets-hero h1,
  .events-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .gallery-hero h1,
  .faq-hero h1,
  .groups-hero h1,
  .hours-hero h1,
  .legal-hero h1{
    font-size:clamp(2.45rem,13vw,4rem);
  }

  .mobile-nav a{
    font-size:1.2rem;
  }

  .quick-card,
  .planning-card,
  .route-step,
  .faq-card,
  .ticket-card-premium,
  .side-box,
  .calendar-box,
  .newsletter-box{
    padding:24px;
    border-radius:24px;
  }
}

/* -----------------------------
   24. PRINT
----------------------------- */

@media print{
  .site-header,
  .mobile-menu,
  .lux-footer,
  .hero-actions,
  .final-cta,
  .cookie-banner{
    display:none!important;
  }

  body{
    padding:0;
    background:#fff;
    color:#000;
  }

  .section{
    padding:30px 0;
  }

  a{
    text-decoration:none;
  }
}

/* =========================================================
   FOOTER — VERSÃO FINAL COM LOGOTIPO
   ========================================================= */

.lux-footer{
  background:var(--green-dark);
  color:#fff;
  padding:80px 7vw 26px;
}

.footer-inner{
  max-width:var(--container-wide);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.25fr .85fr .85fr .9fr;
  gap:54px;
  align-items:start;
}

.footer-brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.footer-brand-logo{
  width:210px;
  max-width:100%;
  height:auto;
  display:block;
  margin:0 0 76px;
}

.footer-brand h3{
  margin:0 0 18px;
  font-size:1.45rem;
  line-height:1.2;
  color:#fff;
  font-weight:900;
}

.footer-brand p,
.lux-footer p{
  color:rgba(255,255,255,.72);
  line-height:1.7;
  margin:0 0 18px;
}

.footer-social{
  display:flex;
  gap:10px;
  margin-top:22px;
}

.footer-social a{
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  border:1px solid rgba(255,255,255,.1);
}

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

.footer-col h4,
.lux-footer h4{
  margin:0 0 24px;
  color:var(--gold);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:900;
}

.footer-col a,
.lux-footer a{
  display:block;
  color:rgba(255,255,255,.78);
  text-decoration:none;
  margin-bottom:14px;
  line-height:1.45;
}

.footer-col a:hover,
.lux-footer a:hover{
  color:var(--gold);
}

.footer-col p{
  color:rgba(255,255,255,.82);
  margin:0 0 16px;
  line-height:1.55;
}

.footer-col p a{
  display:inline;
  margin:0;
  color:#fff;
}

.footer-bottom{
  max-width:var(--container-wide);
  margin:58px auto 0;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:24px;
  color:rgba(255,255,255,.55);
  font-size:.9rem;
}

.footer-bottom a{
  display:inline;
  margin:0;
  color:rgba(255,255,255,.68);
  text-decoration:none;
}

.footer-bottom a:hover{
  color:var(--gold);
}

.footer-logo{
  display:none!important;
}

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

  .footer-brand-logo{
    margin-bottom:36px;
  }

  .footer-bottom{
    flex-direction:column;
  }
}

@media(max-width:640px){
  .lux-footer{
    padding:64px 22px 24px;
  }

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

  .footer-brand-logo{
    width:180px;
    margin-bottom:28px;
  }

  .footer-bottom{
    margin-top:42px;
  }
}

/* =========================================================
   TIPOGRAFIA PREMIUM — FINAL
   Títulos editoriais + texto limpo
   ========================================================= */

body{
  font-family:"Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
.hero h1,
.hero-home h1,
.visit-hero h1,
.attractions-hero h1,
.tickets-hero h1,
.events-hero h1,
.about-hero h1,
.contact-hero h1,
.gallery-hero h1,
.faq-hero h1,
.attraction-detail-hero h1,
.groups-hero h1,
.hours-hero h1,
.legal-hero h1,
.map-hero h1,
.seo-hero h1,
.error-hero h1,
.section-title h2,
.split-content h2,
.final-cta h2,
.visit-wrap > h2,
.visit-info h2,
.tickets-main h2,
.events-main h2,
.hours-main-card h2,
.reservation-panel h2,
.legal-block h2,
.seo-block h2,
.about-story-box h2,
.error-card h1{
  font-family:"Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight:700;
}

.hero h1,
.hero-home h1,
.visit-hero h1,
.attractions-hero h1,
.tickets-hero h1,
.events-hero h1,
.about-hero h1,
.contact-hero h1,
.gallery-hero h1,
.faq-hero h1,
.attraction-detail-hero h1,
.groups-hero h1,
.hours-hero h1,
.legal-hero h1,
.map-hero h1,
.seo-hero h1,
.error-hero h1{
  letter-spacing:-.035em;
}

.section-title h2,
.split-content h2,
.final-cta h2,
.visit-wrap > h2,
.visit-info h2,
.tickets-main h2,
.events-main h2,
.hours-main-card h2,
.reservation-panel h2,
.legal-block h2,
.seo-block h2,
.about-story-box h2{
  letter-spacing:-.03em;
}

p,
a,
span,
small,
strong,
li,
input,
select,
textarea,
button{
  font-family:"Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.kicker,
.section-kicker,
.main-nav a,
.nav-cta,
.btn,
.filter-btn,
.ticket-btn,
.family-btn,
.mobile-nav a,
.footer-col h4,
.lux-footer h4{
  font-family:"Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Header com logo real */

.site-logo{
  height:58px;
  width:auto;
  max-width:210px;
  object-fit:contain;
  display:block;
}

.brand-text strong{
  font-family:"Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight:900;
}

/* Footer com novo logotipo */

.footer-brand-logo{
  width:260px;
  max-width:100%;
  height:auto;
  display:block;
  margin:0 0 64px;
}

.footer-brand h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.75rem;
  font-weight:700;
  line-height:1.05;
  letter-spacing:-.02em;
}

.footer-col p a{
  display:inline;
  margin:0;
}

/* Pequeno refinamento visual */

.section-title p{
  max-width:680px;
  margin-left:auto;
  margin-right:auto;
}

.planning-card h3,
.route-step h3,
.faq-card h3,
.attraction-body h3,
.event-info h3,
.side-box h3,
.calendar-box h3,
.newsletter-box h3,
.detail-card h3,
.hours-side-card h3,
.legal-side-card h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-weight:700;
  letter-spacing:-.015em;
}

@media(max-width:1080px){
  .site-logo{
    height:52px;
    max-width:170px;
  }
}

@media(max-width:640px){
  .footer-brand-logo{
    width:220px;
    margin-bottom:28px;
  }
}

@media(max-width:460px){
  .site-logo{
    max-width:145px;
  }
}

/* =========================================================
   HEADER — SUBMENU "MAIS"
   ========================================================= */

.nav-dropdown{
  position:relative;
  display:flex;
  align-items:center;
}

.nav-dropdown-toggle{
  border:0;
  background:transparent;
  color:#1d1d1d;
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  cursor:pointer;
  padding:0;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:"Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nav-dropdown-toggle::after{
  content:"";
  display:inline-block;
  width:6px;
  height:6px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg);
  margin-top:-4px;
  transition:.22s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle{
  color:var(--green);
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after{
  transform:rotate(225deg);
  margin-top:3px;
}

.nav-dropdown-menu{
  position:absolute;
  top:calc(100% + 20px);
  left:50%;
  transform:translateX(-50%) translateY(8px);
  width:250px;
  background:#fff;
  border:1px solid rgba(18,63,42,.08);
  border-radius:22px;
  padding:12px;
  box-shadow:0 24px 70px rgba(0,0,0,.14);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.22s ease;
}

.nav-dropdown-menu::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-22px;
  height:22px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

.nav-dropdown-menu a{
  display:block;
  color:var(--green);
  padding:13px 14px;
  border-radius:14px;
  text-decoration:none;
  font-size:.86rem;
  font-weight:800;
  letter-spacing:0;
  text-transform:none;
  line-height:1.2;
}

.nav-dropdown-menu a:hover{
  background:var(--sand);
  color:var(--green);
}

.nav-dropdown-menu a::after{
  display:none!important;
}

/* Ajuste do menu principal quando tem dropdown */

.main-nav{
  gap:22px;
}

@media(max-width:1080px){
  .nav-dropdown{
    display:none;
  }
}

/* =========================================================
   BOOKING / RESERVA DE BILHETES
   /book/reservar-bilhetes.php
   /book/checkout.php
   /book/confirmar-reserva.php
   /book/reserva-sucesso.php
   ========================================================= */

.booking-hero{
  min-height:68vh;
  display:flex;
  align-items:center;
  color:#fff;
  padding:170px 7vw 90px;
  margin-top:calc(var(--header-height, 86px) * -1);
  background:
    linear-gradient(90deg,rgba(9,35,25,.90),rgba(9,35,25,.42)),
    url("/assets/imgs/hero_3.jpg") center/cover no-repeat;
}

.checkout-hero{
  background:
    linear-gradient(90deg,rgba(9,35,25,.90),rgba(9,35,25,.42)),
    url("/assets/imgs/hero_4.jpg") center/cover no-repeat;
}

.booking-success-hero{
  background:
    linear-gradient(90deg,rgba(9,35,25,.90),rgba(9,35,25,.42)),
    url("/assets/imgs/hero_7.jpg") center/cover no-repeat;
}

.booking-hero-inner{
  max-width:900px;
}

.booking-hero-inner span{
  display:inline-block;
  color:var(--gold);
  text-transform:uppercase;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.18em;
  margin-bottom:18px;
}

.booking-hero h1{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.8rem,6vw,6.2rem);
  line-height:.94;
  letter-spacing:-.035em;
  font-weight:700;
  margin:0 0 24px;
}

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

.booking-hero p{
  max-width:700px;
  font-size:1.15rem;
  line-height:1.75;
  color:rgba(255,255,255,.88);
  margin:0;
}

.booking-section{
  background:var(--cream);
}

.booking-layout{
  display:grid;
  grid-template-columns:1fr 380px;
  gap:36px;
  align-items:start;
}

.booking-main h2{
  font-family:"Cormorant Garamond", Georgia, serif;
  color:var(--green);
  font-size:clamp(2.2rem,4vw,4.4rem);
  line-height:1;
  letter-spacing:-.03em;
  margin:0 0 34px;
}

.booking-form{
  display:grid;
  gap:24px;
}

.booking-date-card{
  background:#fff;
  border-radius:28px;
  padding:28px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
}

.booking-date-card label,
.form-field label{
  display:block;
  color:var(--green);
  font-weight:900;
  margin-bottom:10px;
}

.booking-date-card input,
.form-field input,
.form-field select,
.form-field textarea{
  width:100%;
  border:1px solid rgba(18,63,42,.16);
  background:var(--cream);
  border-radius:18px;
  padding:15px 16px;
  font:inherit;
  color:var(--green);
  outline:none;
  transition:var(--ease);
}

.booking-date-card input:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  border-color:var(--gold);
  background:#fff;
  box-shadow:0 0 0 4px rgba(200,162,74,.12);
}

.booking-ticket-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.booking-ticket-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:26px;
  background:#fff;
  border-radius:30px;
  padding:30px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
  transition:var(--ease);
}

.booking-ticket-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-md);
}

.booking-ticket-card small{
  display:block;
  color:var(--gold);
  text-transform:uppercase;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.14em;
  margin-bottom:12px;
}

.booking-ticket-card h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  color:var(--green);
  font-size:1.7rem;
  line-height:1.05;
  margin:0 0 10px;
}

.booking-ticket-card p{
  color:var(--muted);
  line-height:1.65;
  margin:0;
}

.booking-ticket-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding-top:20px;
  border-top:1px solid rgba(18,63,42,.1);
}

.booking-price{
  color:var(--green);
  font-weight:900;
  font-size:1.05rem;
}

.qty-control{
  display:flex;
  align-items:center;
  gap:8px;
  background:var(--sand);
  padding:6px;
  border-radius:999px;
}

.qty-btn{
  width:36px;
  height:36px;
  border:0;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  font-size:1.2rem;
  font-weight:900;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:var(--ease);
}

.qty-btn:hover{
  background:var(--gold);
  color:var(--green);
}

.qty-input{
  width:46px;
  height:36px;
  border:0;
  background:transparent;
  color:var(--green);
  font-weight:900;
  text-align:center;
  outline:none;
  appearance:textfield;
  -moz-appearance:textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button{
  -webkit-appearance:none;
  margin:0;
}

.booking-summary{
  position:sticky;
  top:calc(var(--header-height, 86px) + 30px);
}

.booking-summary-card{
  background:var(--green);
  color:#fff;
  border-radius:34px;
  padding:32px;
  box-shadow:var(--shadow-lg);
}

.booking-summary-card h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  color:#fff;
  font-size:2rem;
  line-height:1;
  letter-spacing:-.02em;
  margin:0 0 24px;
}

.summary-row,
.summary-total,
.summary-item{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  padding:16px 0;
  border-top:1px solid rgba(255,255,255,.14);
}

.summary-row:first-of-type{
  border-top:0;
  padding-top:0;
}

.summary-row span,
.summary-total span,
.summary-item span{
  color:rgba(255,255,255,.72);
  line-height:1.4;
}

.summary-row strong,
.summary-total strong,
.summary-item strong{
  color:#fff;
  text-align:right;
  line-height:1.4;
}

.summary-items{
  border-top:1px solid rgba(255,255,255,.14);
  padding:12px 0;
}

.summary-items p{
  margin:0;
  color:rgba(255,255,255,.72);
  line-height:1.6;
}

.summary-item{
  border-top:0;
  padding:8px 0;
}

.summary-total.amount strong{
  color:var(--gold);
  font-size:1.25rem;
}

.summary-submit{
  width:100%;
  margin-top:24px;
}

.booking-note{
  margin:20px 0 0;
  color:rgba(255,255,255,.72);
  line-height:1.65;
  font-size:.92rem;
}

.booking-mobile-submit{
  display:none;
}

.booking-info-section{
  background:var(--sand);
}

/* CHECKOUT */

.checkout-form{
  background:#fff;
  border-radius:34px;
  padding:34px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-sm);
}

.form-field{
  display:grid;
  gap:0;
}

.form-field textarea{
  min-height:150px;
  resize:vertical;
}

.booking-consent{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background:var(--sand);
  border-radius:20px;
  padding:18px;
  color:var(--muted);
  line-height:1.6;
  cursor:pointer;
}

.booking-consent input{
  margin-top:4px;
  accent-color:var(--green);
}

.booking-consent a{
  color:var(--green);
  font-weight:900;
}

.checkout-actions{
  display:flex;
  justify-content:space-between;
  gap:14px;
  margin-top:8px;
}

/* CONFIRMAR / ERROS */

.booking-error-list,
.reservation-panel ul{
  margin:16px 0 0;
  padding-left:18px;
}

.booking-error-list li,
.reservation-panel li{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:8px;
}

.booking-status-card{
  background:#fff;
  border-radius:38px;
  padding:44px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-md);
}

.booking-status-card h2{
  font-family:"Cormorant Garamond", Georgia, serif;
  color:var(--green);
  font-size:clamp(2.2rem,4vw,4rem);
  line-height:1;
  letter-spacing:-.03em;
  margin:0 0 18px;
}

.booking-status-card p{
  color:var(--muted);
  line-height:1.8;
  margin:0 0 18px;
}

.reservation-code{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--green);
  color:var(--gold);
  border-radius:999px;
  padding:12px 18px;
  font-weight:900;
  letter-spacing:.08em;
  margin:10px 0 24px;
}

/* SUCESSO */

.success-layout{
  display:grid;
  grid-template-columns:1fr 380px;
  gap:36px;
  align-items:start;
}

.success-card{
  background:#fff;
  border-radius:38px;
  padding:44px;
  border:1px solid rgba(18,63,42,.08);
  box-shadow:var(--shadow-md);
}

.success-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:var(--green);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  font-weight:900;
  margin-bottom:24px;
}

.success-card h2{
  font-family:"Cormorant Garamond", Georgia, serif;
  color:var(--green);
  font-size:clamp(2.2rem,4vw,4.4rem);
  line-height:1;
  letter-spacing:-.03em;
  margin:0 0 18px;
}

.success-card p{
  color:var(--muted);
  line-height:1.8;
  margin:0 0 18px;
}

.success-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

/* CTA DE RESERVA — para usar noutras páginas */

.booking-cta-strip{
  background:var(--green);
  color:#fff;
  border-radius:34px;
  padding:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  box-shadow:var(--shadow-lg);
}

.booking-cta-strip h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:2rem;
  line-height:1;
  margin:0 0 8px;
}

.booking-cta-strip p{
  margin:0;
  color:rgba(255,255,255,.78);
  line-height:1.6;
}

/* RESPONSIVE BOOKING */

@media(max-width:1180px){
  .booking-layout,
  .success-layout{
    grid-template-columns:1fr;
  }

  .booking-summary{
    position:static;
  }

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

@media(max-width:780px){
  .booking-hero{
    min-height:72vh;
    padding:110px 22px 70px;
    margin-top:calc(var(--header-height, 82px) * -1);
  }

  .booking-ticket-grid{
    grid-template-columns:1fr;
  }

  .booking-date-card,
  .booking-ticket-card,
  .checkout-form,
  .booking-summary-card,
  .success-card,
  .booking-status-card{
    border-radius:26px;
    padding:24px;
  }

  .booking-ticket-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .qty-control{
    width:100%;
    justify-content:space-between;
  }

  .qty-input{
    flex:1;
  }

  .booking-summary{
    order:-1;
  }

  .summary-submit{
    display:none;
  }

  .booking-mobile-submit{
    display:block;
  }

  .booking-mobile-submit .btn{
    width:100%;
  }

  .checkout-actions{
    flex-direction:column;
  }

  .booking-consent{
    border-radius:18px;
  }

  .success-actions{
    flex-direction:column;
  }

  .booking-cta-strip{
    flex-direction:column;
    align-items:flex-start;
    border-radius:26px;
    padding:26px;
  }

  .booking-cta-strip .btn{
    width:100%;
  }
}

@media(max-width:460px){
  .booking-summary-card h3,
  .booking-ticket-card h3,
  .booking-cta-strip h3{
    font-size:1.65rem;
  }
}
/* Seletor de idioma: integrado no cabeçalho existente */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
}
.language-switcher a {
  display: grid;
  place-items: center;
  min-width: 29px;
  height: 27px;
  padding: 0 6px;
  border-radius: 999px;
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.language-switcher a:hover,
.language-switcher a.is-active {
  background: #c9a35a;
  color: #123f2a;
}
.language-switcher-mobile {
  justify-content: center;
  width: max-content;
  margin: 18px auto 4px;
  border-color: rgba(18,63,42,.25);
}
@media (max-width: 1180px) {
  .header-actions .language-switcher { display: none; }
}
