/* =====================================================================
   Pena money-page — global styles
   Pixel-perfect visual match to parquesdesintra.pt.
   Palette derived from the live site: white background, deep-navy text,
   warm-yellow CTA, subtle grays for lines and secondary text.
   ===================================================================== */

:root {
  --white: #ffffff;
  --ink: #101820;
  --ink-2: #2a3441;
  --dim: #6d7a89;
  --line: #e5e7ea;
  --line-2: #edeff2;
  --sun: #ffcd2b;           /* BUY TICKET yellow */
  --sun-dark: #eebe15;
  --shell: #f7f7f5;
  --brand: #101820;         /* logo/text color */
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ---------- Header (matches parquesdesintra.pt sticky header) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  height: 72px;
  display: flex; align-items: center;
}
.site-header .inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
}
.hdr-left, .hdr-right { display: flex; align-items: center; gap: 20px; }
.hdr-right { justify-content: flex-end; }

.hdr-burger {
  width: 22px; height: 22px; position: relative;
}
.hdr-burger span {
  position: absolute; left: 0; right: 0; height: 2px; background: var(--ink);
  border-radius: 1px;
}
.hdr-burger span:nth-child(1) { top: 4px; }
.hdr-burger span:nth-child(2) { top: 10px; }
.hdr-burger span:nth-child(3) { top: 16px; }

.hdr-parent {
  font-size: 11px; letter-spacing: 0.18em; font-weight: 600;
  text-transform: uppercase; color: var(--ink);
}
.hdr-logo { height: 40px; display: inline-block; }
.hdr-logo img, .hdr-logo svg { height: 100%; width: auto; }

.hdr-icon {
  width: 20px; height: 20px; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.hdr-lang {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 14px; color: var(--ink);
  cursor: pointer;
}
.hdr-lang::after {
  content: ""; width: 8px; height: 8px;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: rotate(45deg) translate(-2px, -2px);
}
.hdr-buy {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sun); color: var(--ink);
  padding: 12px 20px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 120ms ease;
}
.hdr-buy:hover { background: var(--sun-dark); }
.hdr-buy svg { width: 20px; height: 20px; }

/* ---------- Hero: 6 vertical photo strips with center overlay -------- */
.hero {
  position: relative;
  height: calc(100vh - 72px); min-height: 640px; max-height: 820px;
  overflow: hidden;
  background: #12160f;
}
.hero-strips {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}
.hero-strip {
  position: relative; overflow: hidden;
  background-position: center; background-size: cover;
}
.hero-strip::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-strip--center::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.75) 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 3; padding: 24px; text-align: center;
  color: var(--white);
}
.hero-overlay .kicker {
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.hero-overlay h1 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  max-width: 780px;
}
.hero-overlay .discover {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--white);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--white);
}
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); z-index: 4;
}
.hero-arrow--left { left: 24px; }
.hero-arrow--right { right: 24px; }
.hero-arrow svg { width: 18px; height: 18px; }

/* ---------- Same-day availability USP band -------------------------- */
.usp {
  background: var(--ink);
  color: var(--white);
  padding: 42px 0;
  text-align: center;
}
.usp .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border: 1px solid rgba(255,205,43,0.7);
  background: rgba(255,205,43,0.12);
  color: var(--sun);
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.usp .badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--sun); box-shadow: 0 0 0 4px rgba(255,205,43,0.2);
}
.usp h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  margin: 0 0 12px;
}
.usp p {
  max-width: 640px; margin: 0 auto;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
}

/* ---------- Intro / About -------------------------------------------- */
.about {
  padding: 96px 0 64px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-copy .eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dim); font-weight: 600; margin-bottom: 16px;
}
.about-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 500; line-height: 1.1;
  margin: 0 0 24px;
}
.about-copy p {
  color: var(--ink-2); font-size: 16px; line-height: 1.7;
  margin: 0 0 16px;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4 / 5; border-radius: 4px;
}

/* ---------- Ticket cards -------------------------------------------- */
.tickets {
  background: var(--shell);
  padding: 96px 0 112px;
}
.tickets .head {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
}
.tickets .head .eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dim); font-weight: 600; margin-bottom: 16px;
}
.tickets .head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 500; line-height: 1.15;
  margin: 0 0 12px;
}
.tickets .head p { color: var(--dim); }

.ticket-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.ticket-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.ticket-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16,24,32,0.06);
}
.ticket-card--feat {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}
.ticket-card--feat .t-name, .ticket-card--feat .t-desc, .ticket-card--feat li { color: var(--white); }
.ticket-card--feat .t-desc { color: rgba(255,255,255,0.72); }
.ticket-card--feat li { color: rgba(255,255,255,0.85); }
.ticket-card--feat .t-price .amount { color: var(--sun); }

.ticket-card .t-name {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--dim);
  margin-bottom: 8px;
}
.ticket-card .t-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px; font-weight: 500; line-height: 1.15;
  margin: 0 0 12px;
}
.ticket-card .t-desc {
  color: var(--dim); font-size: 14px; line-height: 1.55;
  margin: 0 0 24px;
}
.ticket-card .t-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 24px;
}
.ticket-card .t-price .amount {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px; font-weight: 600; line-height: 1;
}
.ticket-card .t-price .unit {
  font-size: 13px; color: var(--dim);
}
.ticket-card ul {
  list-style: none; padding: 0; margin: 0 0 32px;
  font-size: 14px; color: var(--ink-2);
}
.ticket-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ticket-card--feat ul li { border-bottom: 1px solid rgba(255,255,255,0.14); }
.ticket-card ul li:last-child { border-bottom: 0; }
.ticket-card ul li::before {
  content: ""; flex: 0 0 auto;
  width: 6px; height: 6px; border-radius: 50%; background: var(--sun);
  margin-top: 8px;
}
.ticket-card .buy {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px; background: var(--sun); color: var(--ink);
  border-radius: 4px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 120ms ease;
}
.ticket-card .buy:hover { background: var(--sun-dark); }

/* ---------- Practical info ------------------------------------------ */
.practical { padding: 96px 0; }
.practical .head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.practical .head .eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dim); font-weight: 600; margin-bottom: 16px;
}
.practical .head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500; line-height: 1.15; margin: 0;
}
.info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.info-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.info-card .ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,205,43,0.15); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.info-card .ico svg { width: 22px; height: 22px; }
.info-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px; font-weight: 500; margin: 0 0 8px;
}
.info-card p { color: var(--ink-2); font-size: 14px; margin: 0; line-height: 1.65; }
.info-card p strong { color: var(--ink); font-weight: 600; }

/* ---------- Footer -------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 56px 0 32px;
  font-size: 13px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand svg, .footer-brand img { height: 28px; filter: invert(1); }
.footer-brand p { margin: 16px 0 0; max-width: 320px; line-height: 1.6; }
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { padding: 4px 0; }
.footer-col ul li a:hover { color: var(--sun); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.5); font-size: 12px;
}

/* ---------- Responsive ---------------------------------------------- */
@media (max-width: 1024px) {
  .ticket-grid { grid-template-columns: 1fr; gap: 16px; }
  .info-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-strips { grid-template-columns: repeat(3, 1fr); }
  .hero-strip:nth-child(n+4) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .site-header { height: 60px; }
  .hdr-parent, .hdr-lang, .hdr-icon { display: none; }
  .hdr-buy { padding: 10px 14px; font-size: 12px; }
  .hero { height: calc(100vh - 60px); min-height: 520px; }
  .hero-overlay h1 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
}
