
:root{
  --green:#0b3f2e;
  --green-2:#145f43;
  --gold:#c7a24d;
  --gold-2:#d69b24;
  --paper:#fffaf1;
  --soft:#f6f8f4;
  --white:#ffffff;
  --dark:#151713;
  --muted:#6d6d62;
  --text:#24342c;
  --line:rgba(20,40,30,.12);
  --shadow:0 24px 70px rgba(12,28,22,.14);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--dark);
  background:var(--paper);
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1280px, calc(100% - 56px));
  margin:0 auto;
}

/* =========================
   HEADER
========================= */

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:rgba(255,250,241,.96);
  border-bottom:1px solid rgba(0,0,0,.08);
  backdrop-filter:blur(14px);
}

.site-header.transparent{
  background:rgba(255,250,241,.86);
}

.header-inner{
  max-width:1440px;
  height:78px;
  margin:0 auto;
  padding:0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#111;
  font-weight:800;
  line-height:1.05;
}

.brand-mark{
  width:44px;
  height:44px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--green),var(--green-2));
  color:#fff;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:900;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:22px;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.03em;
}

.main-nav a{
  color:#222;
}

.nav-cta{
  background:var(--gold);
  color:#fff!important;
  padding:14px 20px;
  border-radius:6px;
  box-shadow:0 10px 22px rgba(199,162,77,.25);
}

.menu-toggle{
  display:none;
  background:none;
  border:0;
  font-size:28px;
  cursor:pointer;
}

/* =========================
   HERO HOMEPAGE
========================= */

.hero{
  min-height:92vh;
  margin-top:78px;
  display:grid;
  place-items:center;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(0,0,0,.48),rgba(0,0,0,.12)),
    url("img/hero_1.jpg") center/cover;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 70% 20%,rgba(255,214,127,.24),transparent 30%),
    linear-gradient(0deg,rgba(0,0,0,.35),transparent 55%);
}

.hero-content{
  position:relative;
  z-index:2;
  width:min(960px,90%);
  text-align:center;
  color:#fff;
  padding:70px 20px;
}

.kicker{
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:#f5dc9c;
}

.hero h1{
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(52px,7vw,108px);
  line-height:.96;
  margin:18px 0;
  text-shadow:0 12px 40px rgba(0,0,0,.4);
}

.hero p{
  max-width:760px;
  margin:0 auto 34px;
  font-size:clamp(18px,2.1vw,28px);
  line-height:1.45;
}

.hero-actions{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

/* =========================
   BOTÕES
========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 28px;
  border-radius:8px;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
  border:0;
  cursor:pointer;
  transition:.2s ease;
}

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

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

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

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(0,0,0,.18);
}

/* =========================
   SECÇÕES GERAIS
========================= */

.section{
  padding:78px 28px;
}

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

.section-title h2{
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(36px,4vw,58px);
  color:var(--green);
  margin:0 0 14px;
  line-height:1.05;
}

.section-title p{
  font-size:18px;
  line-height:1.7;
  color:var(--muted);
}

/* =========================
   FEATURES HOMEPAGE
========================= */

.quick-features{
  background:#fff8ee;
  padding:36px 28px;
}

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

.quick-card{
  text-align:center;
  padding:24px 18px;
}

.quick-card .icon{
  width:52px;
  height:52px;
  border-radius:50%;
  margin:0 auto 12px;
  display:grid;
  place-items:center;
  color:var(--green);
  border:1px solid var(--line);
  font-size:26px;
}

.quick-card h3{
  margin:0 0 8px;
  color:var(--green);
  font-family:Georgia,serif;
}

.quick-card p{
  font-size:15px;
  line-height:1.5;
  color:#555;
  margin:0;
}

/* =========================
   STATS
========================= */

.stats-band{
  background:linear-gradient(90deg,#0b3f2e,#12603f);
  color:#fff;
  padding:30px 28px;
}

.stats-grid{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  text-align:center;
}

.stat strong{
  font-size:42px;
  display:block;
  font-family:Georgia,serif;
}

.stat span{
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.07em;
}

/* =========================
   CARDS HOMEPAGE
========================= */

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

.experience-card{
  height:270px;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
}

.experience-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(0,0,0,.78),rgba(0,0,0,.05) 65%);
}

.experience-card h3{
  position:absolute;
  z-index:2;
  left:20px;
  bottom:18px;
  color:#fff;
  margin:0;
  font-family:Georgia,serif;
  font-size:24px;
}

/* =========================
   HERO PÁGINAS INTERNAS
========================= */

.page-hero{
  margin-top:78px;
  min-height:360px;
  display:flex;
  align-items:flex-end;
  padding:60px 28px;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(0,0,0,.58),rgba(0,0,0,.15)),
    var(--bg) center/cover;
}

.page-hero-inner{
  max-width:1280px;
  margin:0 auto;
  width:100%;
}

.page-hero h1{
  font-family:Georgia,serif;
  font-size:clamp(46px,5vw,74px);
  margin:0 0 10px;
}

.page-hero p{
  max-width:620px;
  font-size:20px;
  line-height:1.5;
}

/* =========================
   INFO / PANELS
========================= */

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

.info-card,
.panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px;
  box-shadow:0 12px 40px rgba(0,0,0,.05);
}

.info-card h3,
.panel h2{
  color:var(--green);
  font-family:Georgia,serif;
  margin-top:0;
}

.info-card p,
.info-card li{
  font-size:15px;
  line-height:1.7;
  color:#555;
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  align-items:center;
}

.map-box{
  min-height:330px;
  border-radius:24px;
  overflow:hidden;
  background:url("img/hero_2.jpg") center/cover;
  position:relative;
}

.map-box span{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  background:#fff;
  color:var(--green);
  padding:12px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
}

/* =========================
   BILHETES ANTIGO / GENÉRICO
========================= */

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

.ticket{
  background:#fff;
  border-radius:18px;
  padding:28px 20px;
  text-align:center;
  border:1px solid var(--line);
}

.ticket h3{
  margin:0;
  color:var(--green);
  font-family:Georgia,serif;
}

.ticket .price{
  font-size:36px;
  font-weight:900;
  margin:18px 0;
}

/* =========================
   FORM
========================= */

.form{
  display:grid;
  gap:14px;
}

.form input,
.form textarea,
.form select{
  width:100%;
  border:1px solid var(--line);
  border-radius:10px;
  padding:14px 16px;
  font-size:15px;
  background:#fff;
}

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

/* =========================
   ATRAÇÕES
========================= */

.attractions-filter{
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.08);
  padding:24px 28px;
}

.attractions-filter .container{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.filter-btn{
  border:1px solid rgba(11,63,46,.18);
  background:#fff;
  color:var(--green);
  padding:11px 22px;
  border-radius:4px;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  cursor:pointer;
}

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

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

.attraction-card{
  background:#fff;
  border:1px solid rgba(11,63,46,.12);
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 16px 40px rgba(20,40,30,.08);
  transition:.25s ease;
  color:inherit;
}

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

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

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

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

.attraction-image span{
  position:absolute;
  left:14px;
  top:14px;
  background:var(--green);
  color:#fff;
  padding:8px 14px;
  border-radius:3px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}

.attraction-body{
  padding:28px;
}

.attraction-body h3{
  margin:0 0 12px;
  color:#111;
  font-family:Georgia,serif;
  font-size:24px;
}

.attraction-body p{
  margin:0;
  color:#587066;
  font-size:15px;
  line-height:1.65;
}

.attraction-meta{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(11,63,46,.12);
  display:flex;
  justify-content:space-between;
  gap:12px;
}

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

.attraction-meta small{
  color:#7b9187;
  font-size:13px;
}

.attraction-card.is-hidden{
  display:none;
}

/* =========================
   SUBPÁGINA ATRAÇÃO
========================= */

.detail-tag{
  display:inline-flex;
  background:var(--green);
  color:#fff;
  padding:9px 14px;
  border-radius:4px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:18px;
}

.attraction-detail-grid{
  display:grid;
  grid-template-columns:1.5fr .8fr;
  gap:42px;
  align-items:start;
}

.attraction-detail-content{
  background:#fff;
  border-radius:24px;
  padding:42px;
  box-shadow:0 18px 50px rgba(20,40,30,.08);
}

.attraction-detail-content h2{
  font-family:Georgia,serif;
  color:var(--green);
  font-size:34px;
  margin:0 0 18px;
}

.attraction-detail-content p{
  color:#587066;
  font-size:17px;
  line-height:1.8;
  margin-bottom:28px;
}

.detail-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.attraction-detail-side{
  display:grid;
  gap:22px;
}

.detail-card{
  background:#fff;
  border-radius:20px;
  padding:28px;
  border:1px solid rgba(11,63,46,.12);
  box-shadow:0 16px 40px rgba(20,40,30,.06);
}

.detail-card h3{
  font-family:Georgia,serif;
  color:var(--green);
  font-size:24px;
  margin:0 0 18px;
}

.detail-card p,
.detail-card li{
  color:#587066;
  font-size:15px;
  line-height:1.7;
}

/* =========================
   BILHETES — PÁGINA PREMIUM
========================= */

.tickets-hero{
  margin-top:78px;
  min-height:330px;
  background:
    linear-gradient(90deg,rgba(0,0,0,.62),rgba(0,0,0,.16)),
    url("img/hero_.jpg") center/cover;
  display:flex;
  align-items:center;
  color:#fff;
  padding:60px 28px;
}

.tickets-hero-inner{
  max-width:1280px;
  width:100%;
  margin:0 auto;
}

.tickets-hero span{
  display:inline-block;
  background:var(--gold-2);
  color:#fff;
  padding:7px 14px;
  border-radius:2px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:18px;
}

.tickets-hero h1{
  font-family:Georgia,serif;
  font-size:clamp(44px,5vw,74px);
  line-height:.96;
  margin:0;
}

.tickets-hero em,
.tickets-main h2 em{
  color:var(--gold-2);
  font-style:italic;
}

.tickets-page{
  background:var(--soft);
  padding:84px 28px 40px;
}

.tickets-wrap{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 360px;
  gap:44px;
  align-items:start;
}

.section-kicker{
  color:var(--green);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:900;
  margin-bottom:12px;
}

.tickets-main h2{
  font-family:Georgia,serif;
  font-size:42px;
  color:var(--green);
  margin:0 0 24px;
}

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

.ticket-card-premium{
  position:relative;
  background:#fff;
  border:1px solid rgba(11,63,46,.14);
  border-radius:6px;
  padding:30px 28px;
  box-shadow:0 12px 34px rgba(20,40,30,.08);
}

.ticket-card-premium.featured{
  border:2px solid var(--green);
}

.ticket-card-premium.gold-border{
  border:2px solid var(--gold-2);
}

.ticket-card-premium small{
  display:block;
  color:#7c8f86;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:12px;
}

.ticket-price{
  font-family:Georgia,serif;
  font-size:42px;
  font-weight:900;
  color:var(--gold-2);
  line-height:1;
}

.ticket-card-premium p{
  color:#6b7d75;
  font-size:14px;
  margin:8px 0 18px;
}

.ticket-card-premium ul{
  list-style:none;
  padding:0;
  margin:0 0 24px;
}

.ticket-card-premium li{
  font-size:13px;
  color:#46675a;
  margin-bottom:9px;
}

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

.ticket-card-premium li.muted::before{
  content:"×";
  color:#999;
}

.ticket-card-premium li.muted{
  color:#8d9994;
}

.ticket-btn{
  display:block;
  background:var(--green);
  color:#fff;
  text-align:center;
  border-radius:3px;
  padding:13px 16px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.ticket-btn.gold{
  background:var(--gold-2);
}

.badge{
  position:absolute;
  right:0;
  top:0;
  background:var(--green);
  color:#fff;
  padding:7px 13px;
  border-radius:0 4px 0 4px;
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
}

.family-ticket{
  margin-top:28px;
  background:var(--green);
  color:#fff;
  border-radius:6px;
  padding:34px 32px;
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:26px;
  align-items:center;
}

.family-ticket h3{
  font-family:Georgia,serif;
  font-size:26px;
  margin:0 0 8px;
}

.family-ticket p{
  margin:0;
  font-size:14px;
  line-height:1.55;
  color:rgba(255,255,255,.78);
}

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

.family-price strong{
  display:block;
  color:var(--gold-2);
  font-family:Georgia,serif;
  font-size:42px;
  line-height:1;
}

.family-price span{
  font-size:11px;
  color:rgba(255,255,255,.65);
}

.family-btn{
  background:var(--gold-2);
  color:#fff;
  padding:14px 20px;
  border-radius:3px;
  text-transform:uppercase;
  font-size:12px;
  font-weight:900;
  text-align:center;
}

.ticket-note{
  margin-top:22px;
  background:#e7f3ea;
  color:var(--green);
  padding:14px 18px;
  border-radius:4px;
  font-size:13px;
}

.tickets-side{
  display:grid;
  gap:20px;
}

.side-box{
  background:#fff;
  border:1px solid rgba(11,63,46,.18);
  border-radius:7px;
  padding:24px;
  box-shadow:0 14px 40px rgba(20,40,30,.08);
}

.side-box h3{
  margin:0 0 20px;
  font-size:15px;
  color:var(--green);
}

.schedule-row{
  border-bottom:1px solid rgba(11,63,46,.12);
  padding:12px 0;
  display:grid;
  gap:5px;
}

.schedule-row:last-child{
  border-bottom:0;
}

.schedule-row strong{
  font-size:12px;
  color:var(--green);
  text-transform:uppercase;
}

.schedule-row span{
  font-size:13px;
  color:#596d65;
}

.schedule-row b{
  font-size:13px;
  color:var(--green);
}

.schedule-row .closed{
  color:#d43b3b;
}

.green-soft{
  background:#e8f4eb;
}

.green-soft ul{
  margin:0;
  padding:0;
  list-style:none;
}

.green-soft li{
  font-size:13px;
  color:#47665b;
  padding:11px 0;
  border-bottom:1px solid rgba(11,63,46,.12);
}

.green-soft li:last-child{
  border-bottom:0;
}

.green-soft li::before{
  content:"ⓘ";
  color:var(--green);
  margin-right:8px;
}

/* =========================
   FOOTER
========================= */

.lux-footer{
  background:#07170f;
  color:rgba(255,255,255,.55);
  padding:34px 28px 28px;
  font-family:Arial,sans-serif;
}

.footer-topline{
  max-width:1200px;
  margin:0 auto 70px;
  display:flex;
  justify-content:space-between;
  gap:24px;
  font-size:12px;
  color:rgba(255,255,255,.28);
  flex-wrap:wrap;
}

.footer-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.1fr;
  gap:90px;
  padding-bottom:58px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-brand h3{
  color:#fff;
  font-family:Georgia,serif;
  font-size:20px;
  margin:0 0 18px;
}

.footer-brand p,
.lux-footer p{
  font-size:14px;
  line-height:1.65;
  margin:0 0 10px;
}

.lux-footer h4{
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:11px;
  color:rgba(255,255,255,.35);
  margin:0 0 24px;
}

.lux-footer a{
  display:block;
  color:rgba(255,255,255,.55);
  font-size:14px;
  margin-bottom:14px;
}

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

.footer-social{
  display:flex;
  gap:8px;
  margin-top:24px;
}

.footer-social a{
  width:34px;
  height:34px;
  border:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
  font-size:12px;
}

.footer-bottom{
  max-width:1200px;
  margin:28px auto 0;
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:12px;
  color:rgba(255,255,255,.25);
  flex-wrap:wrap;
}

/* =========================
   ADMIN
========================= */

.admin-shell{
  margin-top:78px;
  padding:40px 28px;
}

.admin-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
}

.admin-table th,
.admin-table td{
  padding:14px;
  border-bottom:1px solid var(--line);
  text-align:left;
}

.admin-table th{
  background:#f4eadb;
}



/* =========================
   GRUPOS — PÁGINA PREMIUM
========================= */

.groups-hero{
  margin-top:78px;
  min-height:330px;
  background:
    linear-gradient(90deg,rgba(0,0,0,.62),rgba(0,0,0,.2)),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?q=80&w=1800&auto=format&fit=crop") center/cover;
  display:flex;
  align-items:center;
  color:#fff;
  padding:60px 28px;
}

.groups-hero-inner{
  max-width:1280px;
  width:100%;
  margin:0 auto;
}

.groups-hero span{
  display:inline-block;
  background:#d69b24;
  color:#fff;
  padding:7px 14px;
  border-radius:2px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:18px;
}

.groups-hero h1{
  font-family:Georgia,serif;
  font-size:clamp(42px,5vw,72px);
  line-height:.96;
  margin:0;
}

.groups-hero em,
.groups-page h2 em{
  color:#d69b24;
  font-style:italic;
}

.groups-page{
  background:#f6f8f4;
  padding:84px 28px;
}

.groups-wrap{
  max-width:1280px;
  margin:0 auto;
}

.groups-page h2{
  font-family:Georgia,serif;
  font-size:42px;
  color:#0b3f2e;
  margin:0 0 28px;
}

.groups-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-bottom:52px;
}

.group-card{
  background:#fff;
  border:1px solid rgba(11,63,46,.16);
  border-radius:7px;
  padding:34px 28px;
  text-align:center;
  box-shadow:0 14px 40px rgba(20,40,30,.08);
}

.group-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  margin:0 auto 20px;
  background:#e7f3ea;
  display:grid;
  place-items:center;
  font-size:24px;
}

.group-card h3{
  font-family:Georgia,serif;
  color:#0b3f2e;
  margin:0 0 12px;
  font-size:20px;
}

.group-card p{
  margin:0;
  color:#587066;
  font-size:14px;
  line-height:1.65;
}

.groups-benefits{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  border:1px solid rgba(11,63,46,.16);
  border-radius:7px;
  overflow:hidden;
  background:#fff;
  margin-bottom:56px;
}

.groups-benefits div{
  padding:30px;
  border-bottom:1px solid rgba(11,63,46,.12);
  display:grid;
  grid-template-columns:50px 1fr;
  column-gap:18px;
  align-items:start;
}

.groups-benefits div:nth-child(odd){
  border-right:1px solid rgba(11,63,46,.12);
}

.groups-benefits div:nth-last-child(-n+2){
  border-bottom:0;
}

.groups-benefits strong{
  grid-row:1 / span 2;
  font-family:Georgia,serif;
  font-size:30px;
  color:#dbeee2;
}

.groups-benefits h4{
  margin:0 0 8px;
  color:#0b3f2e;
  font-size:16px;
}

.groups-benefits p{
  margin:0;
  color:#587066;
  font-size:14px;
  line-height:1.6;
}

.groups-quote{
  background:#1f633e;
  border-radius:7px;
  padding:54px;
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:54px;
  align-items:center;
  color:#fff;
}

.quote-info h2{
  color:#fff;
  font-size:36px;
  margin:0 0 18px;
}

.quote-info p{
  color:rgba(255,255,255,.82);
  font-size:15px;
  line-height:1.7;
}

.quote-contact{
  margin-top:30px;
}

.quote-contact p{
  margin:10px 0;
  color:#fff;
}

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

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

.quote-form input,
.quote-form select,
.quote-form textarea{
  width:100%;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.28);
  color:#fff;
  padding:14px 16px;
  border-radius:3px;
  font-size:14px;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder{
  color:rgba(255,255,255,.75);
}

.quote-form select{
  color:#fff;
}

.quote-form option{
  color:#111;
}

.quote-form textarea{
  min-height:92px;
}

.quote-form button{
  background:#d69b24;
  color:#fff;
  border:0;
  border-radius:3px;
  padding:15px 18px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  cursor:pointer;
}

@media(max-width:1000px){
  .groups-cards,
  .groups-quote{
    grid-template-columns:1fr;
  }

  .groups-benefits{
    grid-template-columns:1fr;
  }

  .groups-benefits div,
  .groups-benefits div:nth-child(odd){
    border-right:0;
    border-bottom:1px solid rgba(11,63,46,.12);
  }

  .groups-benefits div:last-child{
    border-bottom:0;
  }
}

@media(max-width:700px){
  .groups-hero h1{
    font-size:40px;
  }

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

  .groups-quote{
    padding:32px 24px;
  }
}

/* =========================
   EVENTOS — PÁGINA PREMIUM
========================= */

.events-hero{
  margin-top:78px;
  min-height:330px;
  background:
    linear-gradient(90deg,rgba(0,0,0,.70),rgba(0,0,0,.18)),
    url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=1800&auto=format&fit=crop") center/cover;
  display:flex;
  align-items:center;
  color:#fff;
  padding:60px 28px;
}

.events-hero-inner{
  max-width:1280px;
  width:100%;
  margin:0 auto;
}

.events-hero span{
  display:inline-block;
  background:#d69b24;
  color:#fff;
  padding:7px 14px;
  border-radius:2px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:18px;
}

.events-hero h1{
  font-family:Georgia,serif;
  font-size:clamp(42px,5vw,72px);
  line-height:.96;
  margin:0;
}

.events-hero em,
.events-main h2 em{
  color:#d69b24;
  font-style:italic;
}

.events-page{
  background:#f6f8f4;
  padding:84px 28px;
}

.events-wrap{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 360px;
  gap:44px;
  align-items:start;
}

.events-main h2{
  font-family:Georgia,serif;
  font-size:42px;
  color:#0b3f2e;
  margin:0 0 28px;
}

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

.event-card{
  background:#fff;
  border:1px solid rgba(11,63,46,.14);
  border-radius:7px;
  padding:24px;
  display:grid;
  grid-template-columns:72px 1fr;
  gap:22px;
  box-shadow:0 14px 40px rgba(20,40,30,.08);
}

.event-date{
  width:62px;
  height:62px;
  border-radius:4px;
  color:#fff;
  display:grid;
  place-items:center;
  align-content:center;
}

.event-date strong{
  font-family:Georgia,serif;
  font-size:26px;
  line-height:1;
}

.event-date span{
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
}

.event-date.green{
  background:#0b3f2e;
}

.event-date.gold{
  background:#d69b24;
}

.event-date.purple{
  background:#5f3c97;
}

.event-info small{
  display:block;
  color:#d69b24;
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:6px;
}

.event-info h3{
  font-family:Georgia,serif;
  color:#0b3f2e;
  font-size:21px;
  margin:0 0 8px;
}

.event-info p{
  color:#587066;
  font-size:14px;
  line-height:1.6;
  margin:0 0 14px;
}

.event-meta{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  font-size:12px;
  color:#5c766a;
}

.events-more{
  display:inline-flex;
  margin-top:24px;
  border:1px solid #0b3f2e;
  color:#0b3f2e;
  padding:12px 18px;
  border-radius:3px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

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

.calendar-box,
.newsletter-box{
  background:#fff;
  border:1px solid rgba(11,63,46,.16);
  border-radius:7px;
  padding:26px;
  box-shadow:0 14px 40px rgba(20,40,30,.08);
}

.calendar-box h3{
  color:#0b3f2e;
  margin:0 0 20px;
  font-family:Georgia,serif;
}

.calendar-month{
  color:#31483f;
  font-size:14px;
  font-weight:800;
  margin-bottom:16px;
}

.calendar-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:9px;
  text-align:center;
}

.calendar-grid span{
  color:#7b9187;
  font-size:10px;
  font-weight:900;
}

.calendar-grid b{
  font-size:12px;
  color:#60796f;
  padding:7px 0;
  border-radius:3px;
}

.calendar-grid b.active{
  background:#0b3f2e;
  color:#fff;
}

.calendar-grid b.soft{
  background:#dceee4;
  color:#0b3f2e;
}

.newsletter-box{
  background:#1f633e;
  color:#fff;
}

.newsletter-box h3{
  margin:0 0 8px;
  font-family:Georgia,serif;
  font-size:22px;
}

.newsletter-box p{
  color:rgba(255,255,255,.82);
  font-size:14px;
  line-height:1.6;
  margin:0 0 20px;
}

.newsletter-box form{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px;
}

.newsletter-box input{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  padding:13px 14px;
  border-radius:3px;
}

.newsletter-box input::placeholder{
  color:rgba(255,255,255,.75);
}

.newsletter-box button{
  background:#d69b24;
  color:#fff;
  border:0;
  padding:0 16px;
  border-radius:3px;
  font-size:12px;
  font-weight:900;
  cursor:pointer;
}

/* =========================
   VISITAR — PÁGINA PREMIUM
========================= */

.visit-hero{
  margin-top:78px;
  min-height:330px;
  background:
    linear-gradient(90deg,rgba(0,0,0,.70),rgba(0,0,0,.18)),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?q=80&w=1800&auto=format&fit=crop") center/cover;
  display:flex;
  align-items:center;
  color:#fff;
  padding:60px 28px;
}

.visit-hero-inner{
  max-width:1280px;
  width:100%;
  margin:0 auto;
}

.visit-hero span{
  display:inline-block;
  background:#d69b24;
  color:#fff;
  padding:7px 14px;
  border-radius:2px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:18px;
}

.visit-hero h1{
  font-family:Georgia,serif;
  font-size:clamp(42px,5vw,72px);
  line-height:.96;
  margin:0;
}

.visit-hero em,
.visit-page h2 em{
  color:#d69b24;
  font-style:italic;
}

.visit-page{
  background:#f6f8f4;
  padding:84px 28px;
}

.visit-wrap{
  max-width:1280px;
  margin:0 auto;
}

.visit-page h2{
  font-family:Georgia,serif;
  font-size:42px;
  color:#0b3f2e;
  margin:0 0 28px;
}

.visit-card{
  background:#fff;
  border:1px solid rgba(11,63,46,.14);
  border-radius:7px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1.05fr;
  box-shadow:0 16px 46px rgba(20,40,30,.08);
}

.visit-info{
  padding:54px;
}

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

.visit-mini-card{
  border:1px solid rgba(11,63,46,.16);
  border-radius:4px;
  padding:22px;
  background:#f9fcfa;
}

.visit-mini-card span{
  display:block;
  color:#0b3f2e;
  font-size:22px;
  margin-bottom:14px;
}

.visit-mini-card small{
  display:block;
  color:#7b9187;
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:5px;
}

.visit-mini-card strong{
  display:block;
  color:#0b3f2e;
  font-size:14px;
}

.visit-mini-card p{
  margin:4px 0 0;
  color:#7a8f86;
  font-size:12px;
}

.how-to-box{
  background:#e8f4eb;
  border:1px solid rgba(11,63,46,.14);
  border-radius:5px;
  padding:24px;
  margin-bottom:26px;
}

.how-to-box h3{
  margin:0 0 16px;
  color:#0b3f2e;
  font-size:15px;
}

.route-item{
  display:grid;
  grid-template-columns:115px 1fr;
  gap:14px;
  padding:12px 0;
  border-bottom:1px solid rgba(11,63,46,.12);
}

.route-item:last-child{
  border-bottom:0;
}

.route-item b{
  color:#0b3f2e;
  font-size:13px;
}

.route-item p{
  margin:0;
  color:#587066;
  font-size:13px;
  line-height:1.55;
}

.visit-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn-outline-green{
  border:1px solid #0b3f2e;
  color:#0b3f2e;
  background:#fff;
}

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

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

.visit-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(0,0,0,.35),transparent 55%);
}

.map-float-card{
  position:absolute;
  left:34px;
  bottom:34px;
  z-index:2;
  background:#fff;
  border-radius:5px;
  padding:18px 20px;
  max-width:290px;
  box-shadow:0 16px 40px rgba(0,0,0,.22);
}

.map-float-card strong{
  display:block;
  color:#0b3f2e;
  font-size:14px;
  margin-bottom:8px;
}

.map-float-card p{
  margin:0 0 10px;
  color:#587066;
  font-size:12px;
  line-height:1.5;
}

.map-float-card a{
  color:#0b3f2e;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}


/* =========================
   CONTACTOS — PÁGINA PREMIUM
========================= */

.contact-hero{
  margin-top:78px;
  min-height:300px;
  background:
    linear-gradient(90deg,rgba(0,0,0,.68),rgba(0,0,0,.16)),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?q=80&w=1800&auto=format&fit=crop") center/cover;
  display:flex;
  align-items:center;
  color:#fff;
  padding:60px 28px;
}

.contact-hero-inner{
  max-width:1280px;
  width:100%;
  margin:0 auto;
}

.contact-hero span{
  display:inline-block;
  background:#d69b24;
  color:#fff;
  padding:7px 14px;
  border-radius:2px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:18px;
}

.contact-hero h1{
  font-family:Georgia,serif;
  font-size:clamp(44px,5vw,72px);
  line-height:.96;
  margin:0;
}

.contact-page{
  background:#f6f8f4;
  padding:84px 28px;
}

.contact-wrap{
  max-width:1280px;
  margin:0 auto;
}

.contact-card{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  background:#fff;
  border-radius:7px 7px 0 0;
  border:1px solid rgba(11,63,46,.14);
  box-shadow:0 16px 46px rgba(20,40,30,.08);
  overflow:hidden;
}

.contact-form-area{
  padding:56px;
}

.contact-form-area h2{
  font-family:Georgia,serif;
  font-size:42px;
  line-height:1.05;
  color:#0b3f2e;
  margin:0 0 28px;
}

.contact-form-area h2 em,
.contact-info-area h2 em{
  color:#d69b24;
  font-style:italic;
}

.contact-form{
  display:grid;
  gap:14px;
}

.contact-form label{
  display:block;
  color:#0b3f2e;
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:7px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border:1px solid rgba(11,63,46,.18);
  background:#f9fcfa;
  color:#22382f;
  padding:14px 16px;
  border-radius:3px;
  font-size:14px;
}

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

.contact-form button{
  margin-top:12px;
  background:#0b3f2e;
  color:#fff;
  border:0;
  border-radius:3px;
  padding:16px 20px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  cursor:pointer;
}

.contact-info-area{
  background:#185738;
  color:#fff;
  padding:56px;
}

.contact-info-area h2{
  font-family:Georgia,serif;
  font-size:28px;
  line-height:1.15;
  margin:0 0 34px;
}

.contact-info-block{
  padding:0 0 28px;
  margin-bottom:28px;
  border-bottom:1px solid rgba(255,255,255,.14);
}

.contact-info-block small,
.contact-social small{
  display:block;
  color:rgba(255,255,255,.55);
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-bottom:10px;
}

.contact-info-block strong{
  display:block;
  color:#fff;
  font-size:14px;
  line-height:1.55;
}

.contact-info-block p{
  margin:4px 0 0;
  color:rgba(255,255,255,.72);
  font-size:13px;
}

.contact-social div{
  display:flex;
  gap:8px;
  margin-top:14px;
}

.contact-social a{
  width:34px;
  height:34px;
  border:1px solid rgba(255,255,255,.22);
  display:grid;
  place-items:center;
  color:#fff;
  font-size:12px;
}

.contact-map{
  min-height:320px;
  position:relative;
  background:
    linear-gradient(0deg,rgba(0,0,0,.45),rgba(0,0,0,.12)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1800&auto=format&fit=crop") center/cover;
  border-radius:0 0 7px 7px;
  overflow:hidden;
}

.map-card{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  background:#fff;
  border-radius:6px;
  padding:20px 26px;
  min-width:270px;
  text-align:center;
  box-shadow:0 16px 40px rgba(0,0,0,.22);
}

.map-card strong{
  display:block;
  color:#0b3f2e;
  font-size:14px;
  margin-bottom:8px;
}

.map-card p{
  color:#587066;
  font-size:12px;
  margin:0 0 10px;
}

.map-card a{
  color:#0b3f2e;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

@media(max-width:1000px){
  .contact-card{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .contact-hero h1{
    font-size:40px;
  }

  .contact-form-area,
  .contact-info-area{
    padding:32px 24px;
  }

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


@media(max-width:1000px){
  .visit-card{
    grid-template-columns:1fr;
  }

  .visit-image{
    min-height:380px;
  }
}

@media(max-width:700px){
  .visit-hero h1{
    font-size:40px;
  }

  .visit-info{
    padding:28px;
  }

  .visit-info-grid{
    grid-template-columns:1fr;
  }

  .route-item{
    grid-template-columns:1fr;
  }
}

@media(max-width:1000px){
  .events-wrap{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .events-hero h1{
    font-size:40px;
  }

  .event-card{
    grid-template-columns:1fr;
  }

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

  .newsletter-box button{
    padding:13px 16px;
  }
}


/* =========================
   RESPONSIVO
========================= */

@media(max-width:1100px){
  .main-nav{
    gap:14px;
    font-size:12px;
  }

  .cards-grid,
  .quick-grid,
  .stats-grid,
  .info-grid,
  .ticket-grid,
  .attractions-grid,
  .tickets-grid-premium,
  .groups-cards{
    grid-template-columns:repeat(2,1fr);
  }

  .tickets-wrap,
  .events-wrap,
  .visit-card,
  .contact-card{
    grid-template-columns:1fr;
  }

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

  .family-ticket,
  .groups-quote{
    grid-template-columns:1fr;
    text-align:left;
  }

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

  .visit-image{
    min-height:380px;
  }
}

@media(max-width:1000px){
  .groups-benefits{
    grid-template-columns:1fr;
  }

  .groups-benefits div,
  .groups-benefits div:nth-child(odd){
    border-right:0;
    border-bottom:1px solid rgba(11,63,46,.12);
  }

  .groups-benefits div:last-child{
    border-bottom:0;
  }
}

@media(max-width:980px){
  .menu-toggle{
    display:block;
  }

  .main-nav{
    display:none;
    position:absolute;
    top:78px;
    left:0;
    right:0;
    background:#fffaf1;
    padding:22px;
    flex-direction:column;
    align-items:flex-start;
    box-shadow:var(--shadow);
  }

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

  .two-col,
  .attraction-detail-grid{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:78vh;
  }

  .hero h1{
    font-size:46px;
  }
}

@media(max-width:700px){
  .container{
    width:min(100% - 36px, 1280px);
  }

  .header-inner{
    padding:0 18px;
  }

  .brand strong{
    font-size:14px;
  }

  .brand-mark{
    width:38px;
    height:38px;
    font-size:11px;
  }

  .section{
    padding:58px 18px;
  }

  .page-hero,
  .visit-hero,
  .events-hero,
  .groups-hero,
  .contact-hero,
  .tickets-hero{
    padding:50px 18px;
  }

  .cards-grid,
  .quick-grid,
  .stats-grid,
  .info-grid,
  .ticket-grid,
  .attractions-grid,
  .tickets-grid-premium,
  .groups-cards,
  .visit-info-grid{
    grid-template-columns:1fr;
  }

  .hero h1,
  .visit-hero h1,
  .events-hero h1,
  .groups-hero h1,
  .contact-hero h1,
  .tickets-hero h1{
    font-size:40px;
  }

  .attraction-image{
    height:220px;
  }

  .event-card,
  .newsletter-box form,
  .form-row,
  .route-item{
    grid-template-columns:1fr;
  }

  .visit-info,
  .contact-form-area,
  .contact-info-area{
    padding:28px 24px;
  }

  .groups-quote{
    padding:32px 24px;
  }

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

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