:root {
  --bg: #eef8fb;
  --bg-soft: #e1f2f8;
  --ink: #08243d;
  --ink-soft: #4a687d;
  --aqua: #00a9b7;
  --aqua-deep: #0d6d86;
  --reef: #0e3554;
  --sun: #ff8352;
  --sand: #f7ddab;
  --foam: #fbfeff;
  --line: #c9e2eb;
  --card: #ffffff;
  --radius: 26px;
  --shadow: 0 24px 60px rgba(8, 36, 61, 0.12);
  --shadow-strong: 0 30px 70px rgba(8, 36, 61, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(0.5px);
}

body::before {
  width: 34rem;
  height: 34rem;
  top: -11rem;
  right: -12rem;
  background: rgba(0, 169, 183, 0.12);
  border: 26px solid rgba(255, 255, 255, 0.48);
  border-radius: 58% 42% 66% 34% / 66% 62% 38% 34%;
  transform: rotate(24deg);
}

body::after {
  width: 18rem;
  height: 18rem;
  left: -7rem;
  bottom: 3rem;
  background: rgba(255, 131, 82, 0.12);
  border: 18px solid rgba(255, 255, 255, 0.45);
  border-radius: 44% 56% 52% 48% / 70% 68% 32% 30%;
  transform: rotate(-18deg);
}

a {
  color: var(--aqua-deep);
}

.container {
  width: min(1140px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
  margin-top: 1.1rem;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(224, 233, 240, 0.98);
  box-shadow: 0 18px 40px rgba(8, 36, 61, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand img {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 10px 22px rgba(8, 36, 61, 0.12);
  padding: 0.2rem;
}

.site-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  background: rgba(0, 169, 183, 0.1);
  border-color: rgba(0, 169, 183, 0.18);
  transform: translateY(-1px);
}

.btn-whats {
  background: linear-gradient(135deg, #ff8b28, #ff6f1a);
  color: #fff !important;
  padding: 0.55rem 0.9rem !important;
  border-color: transparent !important;
}

.site-nav a.btn-whats:hover,
.site-nav a.btn-whats.is-active {
  color: #fff !important;
  background: linear-gradient(135deg, #ff8b28, #ff6f1a);
  border-color: transparent !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

body:not(.page-inicio) main {
  padding-top: 6.4rem;
}

body.page-ingressos main,
body.page-atracoes main,
body.page-churrasqueiras main,
body.page-contato main,
body.page-login main {
  padding-top: 0;
}

body.page-auth main {
  padding-top: 0;
}

.hero {
  position: relative;
  min-height: 78vh;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  overflow: clip;
  display: grid;
  align-items: end;
  padding: 2rem 0 1.8rem;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
  gap: 1.25rem;
  align-items: end;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 24rem;
  height: 24rem;
  top: -4rem;
  right: -6rem;
  background: rgba(255, 255, 255, 0.14);
  border: 22px solid rgba(255, 255, 255, 0.12);
}

.hero::after {
  width: 18rem;
  height: 18rem;
  left: -5rem;
  bottom: -7rem;
  background: rgba(0, 169, 183, 0.18);
  border: 18px solid rgba(255, 255, 255, 0.1);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 36, 61, 0.54);
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 2rem 2rem 2.2rem;
  margin: 0 0 1.5rem;
  border-radius: 34px;
  background: rgba(8, 36, 61, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-strong);
}

.hero-aside {
  display: grid;
  gap: 0.95rem;
  margin: 0 0 1.5rem;
}

.hero-panel,
.hero-note {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.hero-panel {
  padding: 1.5rem;
  background: rgba(251, 254, 255, 0.9);
  color: var(--ink);
}

.hero-note {
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-note strong,
.hero-panel h2 {
  display: block;
}

.hero-note p,
.hero-panel p {
  margin: 0.4rem 0 0;
}

.hero-panel p {
  color: var(--ink-soft);
}

.hero-note p {
  color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--reef);
  font-size: 0.86rem;
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.panel-kicker,
.section-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aqua-deep);
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  line-height: 1.18;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4.2vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 3vw, 2.1rem);
}

.hero p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.hero-stat {
  min-height: 100%;
  padding: 0.95rem 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.32rem;
}

.hero-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-panel-list {
  list-style: none;
  margin: 1rem 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.hero-panel-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 0.95rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(238, 248, 251, 0.98), rgba(225, 242, 248, 0.9));
  border: 1px solid rgba(13, 109, 134, 0.12);
}

.hero-panel-list span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-panel-list strong {
  color: var(--reef);
  line-height: 1.4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.82rem 1.24rem;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--sun), #ff9e6d);
}

.btn-light {
  color: var(--reef);
  background: rgba(255, 255, 255, 0.94);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  color: var(--ink);
  border-color: rgba(8, 36, 61, 0.12);
  background: rgba(255, 255, 255, 0.86);
}

.btn-outline-dark:hover {
  background: #fff;
}

.btn-icon-only {
  width: 2.35rem;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1;
}

.section {
  padding: 4rem 0;
}

.section-tight {
  padding-top: 1.4rem;
  padding-bottom: 0.6rem;
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 48rem;
}

body.page-inicio .btn-whats,
body.page-inicio .btn-primary {
  background: linear-gradient(135deg, #ff8b28, #ff6f1a);
}

body.page-inicio .btn-light {
  background: rgba(255, 255, 255, 0.96);
}

.home-hero {
  position: relative;
  min-height: 46rem;
  padding: 0;
  overflow: clip;
  display: grid;
  align-items: center;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 27, 45, 0.16) 0%, rgba(7, 27, 45, 0.3) 26%, rgba(7, 27, 45, 0.62) 68%, rgba(7, 27, 45, 0.84) 100%),
    linear-gradient(90deg, rgba(7, 27, 45, 0.44), rgba(7, 27, 45, 0.06) 56%);
  pointer-events: none;
}

.home-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 78px;
  background: #fff;
  clip-path: ellipse(68% 100% at 50% 100%);
}

.home-hero-media {
  position: absolute;
  inset: 0;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.home-hero-shell {
  position: relative;
  z-index: 1;
  min-height: 46rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 1.4rem;
  align-items: center;
}

.home-hero-copy {
  color: #fff;
  max-width: 34rem;
  padding: 7.6rem 0 3.8rem;
}

.home-hero-panel {
  display: flex;
  justify-content: flex-end;
  padding-top: 4.2rem;
}

.home-hero-video-card {
  width: min(100%, 35rem);
  padding: 1rem;
  border-radius: 28px;
  background: rgba(8, 36, 61, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 52px rgba(8, 36, 61, 0.22);
}

.home-hero-video-frame {
  overflow: hidden;
  border-radius: 22px;
  background: #071b2d;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 34px rgba(6, 21, 36, 0.24);
}

.home-hero-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.home-kicker,
.home-card-kicker,
.home-path-eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
}

.home-card-kicker {
  color: var(--aqua-deep);
}

.home-path-eyebrow {
  color: inherit;
  opacity: 0.78;
}

.home-hero-copy h1 {
  margin-bottom: 1rem;
  max-width: 10ch;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
}

.home-hero-lead {
  margin: 0;
  max-width: 29rem;
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  color: rgba(255, 255, 255, 0.86);
}

.home-hero-actions,
.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.home-hero-actions {
  margin-top: 1.6rem;
}

.home-offers {
  position: relative;
  margin-top: -2.9rem;
  padding-top: 0;
  background: #fff;
}

.home-offers .section-head,
.home-attractions .section-head,
.home-ticket-section .section-head,
.home-faq-section .section-head {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.home-offer-card {
  overflow: hidden;
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(0, 1fr);
  min-height: 310px;
  border: 1px solid rgba(201, 226, 235, 0.92);
  box-shadow: 0 22px 48px rgba(8, 36, 61, 0.12);
  background: #fff;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.home-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(8, 36, 61, 0.16);
}

.home-offer-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-offer-copy {
  padding: 1.55rem;
  color: #fff;
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.home-offer-copy h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
}

.home-offer-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.home-offer-copy .btn {
  width: fit-content;
  margin-top: 0.35rem;
  box-shadow: 0 14px 28px rgba(8, 36, 61, 0.12);
}

.home-offer-card-blue .home-offer-copy {
  background: linear-gradient(180deg, #24356e, #314a95);
}

.home-offer-card-orange .home-offer-copy {
  background: linear-gradient(180deg, #f4760f, #ff963d);
}

.home-mini-note {
  margin-top: 1.1rem;
  padding: 0.95rem 1.15rem;
  border-radius: 16px;
  background: #fff8d8;
  border: 1px solid #f3e291;
  color: #7b5a00;
  font-weight: 700;
  text-align: center;
}

.home-mini-note strong {
  color: #6b4e00;
}

.home-attractions {
  position: relative;
  padding-top: 6.4rem;
  padding-bottom: 6rem;
  background: linear-gradient(180deg, #2f8be3, #1866c7);
}

.home-attractions .section-head h2,
.home-attractions .section-head p {
  color: #fff;
}

.home-attractions .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.home-attractions::before,
.home-attractions::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background: #fff;
  z-index: 0;
}

.home-attractions::before {
  top: -1px;
  clip-path: ellipse(68% 100% at 50% 0%);
}

.home-attractions::after {
  bottom: -1px;
  clip-path: ellipse(68% 100% at 50% 100%);
}

.home-attractions .container {
  position: relative;
  z-index: 1;
}

.home-attraction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.home-attraction-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 18px 36px rgba(8, 36, 61, 0.16);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.home-attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(8, 36, 61, 0.2);
}

.home-attraction-thumb {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.home-attraction-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.home-attraction-card h3 {
  margin-bottom: 0.55rem;
}

.home-attraction-card p {
  margin: 0;
  color: var(--ink-soft);
}

.home-attraction-note {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  font-weight: 600;
}

.home-attractions-actions {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
}

.home-planning-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 1.4rem;
  align-items: start;
}

.home-planning {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(244, 249, 252, 1));
}

.home-planning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

.home-planning-card,
.home-rule-card,
.home-ticket-card,
.home-faq-item,
.home-cta-box {
  background: #fff;
  border: 1px solid rgba(201, 226, 235, 0.95);
  box-shadow: 0 24px 52px rgba(8, 36, 61, 0.1);
}

.home-planning-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 1.2rem 1.2rem 1.25rem;
  background: linear-gradient(180deg, #ffffff, #f9fcff);
}

.home-planning-card::before {
  content: '';
  display: block;
  width: 3.5rem;
  height: 0.35rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8b28, #ffb15f);
}

.home-planning-card h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.08;
}

.home-planning-card p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 30rem;
}

.home-rules-stack {
  display: grid;
  gap: 1rem;
}

.home-rule-card {
  border-radius: 28px;
  padding: 1.3rem;
}

.home-rule-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.6rem;
  color: var(--ink-soft);
}

.home-ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.home-ticket-section {
  background: linear-gradient(180deg, #e8f8d8, #f7fce9);
}

.home-ticket-card {
  border-radius: 22px;
  overflow: hidden;
  border-top: 6px solid #a6ce39;
}

.home-ticket-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

.home-ticket-copy {
  padding: 1.2rem 1.2rem 0.8rem;
}

.home-ticket-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.home-ticket-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem 1.2rem 1.25rem;
  border-top: 1px solid var(--line);
  background: rgba(238, 248, 251, 0.68);
}

.home-ticket-meta strong {
  color: #6a9b10;
  font-family: 'Sora', sans-serif;
}

.home-faq-section {
  background: #fff;
}

.home-faq-grid {
  display: grid;
  gap: 0.9rem;
}

.home-faq-item {
  border-radius: 22px;
  padding: 0.95rem 1rem;
  box-shadow: none;
  background: #f7f8fb;
  border-color: #dfe5ee;
}

.home-faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--reef);
}

.home-faq-item p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
}

.home-cta-section {
  padding-top: 1rem;
  padding-bottom: 4.5rem;
}

.home-cta-box {
  border-radius: 24px;
  padding: 1.55rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 1rem;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(255, 221, 171, 0.18), transparent 36%),
    linear-gradient(180deg, #0f4d91, #103e74);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 52px rgba(8, 36, 61, 0.18);
}

.home-cta-box h2 {
  margin-bottom: 0.65rem;
  color: #fff;
}

.home-cta-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 42rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust-item,
.experience-card,
.journey-step {
  background: var(--card);
  border: 1px solid rgba(201, 226, 235, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 1rem 1.1rem;
}

.trust-item span {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.trust-item strong {
  display: block;
  color: var(--reef);
  line-height: 1.4;
}

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

.card,
.panel,
.product-card,
.attraction {
  background: var(--card);
  border: 1px solid rgba(201, 226, 235, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover,
.panel:hover,
.product-card:hover,
.attraction:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(0, 169, 183, 0.18);
}

.card {
  padding: 1.45rem 1.35rem 1.6rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.card::before,
.panel::before {
  content: '';
  display: block;
  width: 4.25rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--aqua);
  margin-bottom: 1rem;
}

.card strong {
  display: block;
  font-size: 2rem;
  color: var(--reef);
  margin-bottom: 0.35rem;
}

body.page-admin .card strong a {
  color: inherit;
  text-decoration: none;
}

body.page-admin .card strong a:hover {
  text-decoration: none;
}

.card span {
  display: block;
  color: var(--ink-soft);
  line-height: 1.45;
}

.strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel {
  padding: 1.45rem 1.4rem;
  position: relative;
}

.panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.experience-grid,
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.experience-card {
  padding: 1.45rem 1.35rem 1.55rem;
  position: relative;
  overflow: hidden;
}

.experience-card::after {
  content: '';
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: rgba(0, 169, 183, 0.08);
}

.experience-index {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(0, 169, 183, 0.1);
  color: var(--aqua-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.experience-card p {
  margin: 0;
  color: var(--ink-soft);
}

.experience-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 1.1rem;
  text-decoration: none;
  font-weight: 800;
}

.journey-step {
  padding: 1.35rem 1.2rem;
}

.journey-step-number {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--aqua-deep));
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
}

.journey-step p {
  margin: 0;
  color: var(--ink-soft);
}

.attraction-grid,
.product-grid,
.event-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.attraction {
  overflow: hidden;
}

.attraction img,
.product-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.attraction:hover img,
.product-card:hover img {
  transform: scale(1.04);
}

.attraction h3,
.product-card h3 {
  margin: 0;
  padding: 1.1rem 1.25rem 0.4rem;
  line-height: 1.2;
}

.product-card p {
  margin: 0;
  padding: 0.15rem 1.25rem 1.15rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 1rem 1.25rem 1.2rem;
  gap: 0.7rem;
  background: rgba(238, 248, 251, 0.72);
}

.product-meta strong {
  color: var(--reef);
}

.product-meta a {
  text-decoration: none;
  font-weight: 800;
}

.mini-hero {
  position: relative;
  overflow: hidden;
  padding: 8.4rem 0 3.2rem;
  color: #fff;
  border-bottom: 0;
}

.mini-hero::before,
.mini-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.mini-hero-ingressos {
  background: linear-gradient(135deg, #1d69bf, #2f8be3 55%, #5ab2ff);
}

.mini-hero-churras {
  background: linear-gradient(135deg, #12365d, #1f6bbd 56%, #ff8e48 120%);
}

.mini-hero-contato {
  background: linear-gradient(135deg, #12365d, #164777 52%, #2f78b2);
}

.mini-hero-atracoes {
  background: linear-gradient(135deg, #11406f, #1d6db8 56%, #53b6ff);
}

.mini-hero-privacy {
  background: linear-gradient(135deg, #113457, #1b5b92 56%, #4b97db);
}

.mini-hero-terms {
  background: linear-gradient(135deg, #14324c, #235e8f 54%, #6aa6dd);
}

.mini-hero-cookies {
  background: linear-gradient(135deg, #173652, #2a6ea0 56%, #74b7e3);
}

.mini-hero::before {
  width: 24rem;
  height: 24rem;
  right: -8rem;
  top: -9rem;
  background: rgba(255, 255, 255, 0.12);
  border: 22px solid rgba(255, 255, 255, 0.12);
  border-radius: 56% 44% 68% 32% / 70% 68% 32% 30%;
  transform: rotate(22deg);
}

.mini-hero::after {
  width: 18rem;
  height: 18rem;
  left: -5rem;
  bottom: -7rem;
  background: rgba(255, 255, 255, 0.08);
  border: 18px solid rgba(255, 255, 255, 0.1);
  border-radius: 48% 52% 38% 62% / 64% 70% 30% 36%;
  transform: rotate(-28deg);
}

.mini-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.82fr);
  gap: 1.25rem;
  align-items: end;
}

.mini-hero-copy {
  padding: 1.1rem 0;
}

.mini-hero-copy h1 {
  margin-bottom: 0.95rem;
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
}

.mini-hero-lead {
  margin: 0;
  max-width: 32rem;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  color: rgba(255, 255, 255, 0.86);
}

.ingressos-hero-tagline {
  margin: 0.65rem 0 0;
  max-width: 38rem;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.45;
}

.mini-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.mini-hero-panel {
  display: grid;
  gap: 0.9rem;
}

.mini-hero-stat {
  padding: 1rem 1.05rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.mini-hero-stat span {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.mini-hero-stat strong {
  display: block;
  color: #fff;
  line-height: 1.45;
}

.page-support-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(244, 249, 252, 1));
}

.attractions-page-section {
  background: linear-gradient(180deg, #f7fbff 0%, #edf6fb 100%);
}

.attraction-copy {
  padding: 0 1.25rem 1.25rem;
}

.attraction-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.attraction-page-grid .attraction img {
  aspect-ratio: 16 / 10;
}

.legal-page-section {
  background: linear-gradient(180deg, #f8fcff 0%, #eef6fb 100%);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.7fr);
  gap: 1.2rem;
  align-items: start;
}

.legal-main-card {
  background: #fff;
  border: 1px solid rgba(201, 226, 235, 0.95);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.legal-content {
  display: grid;
  gap: 1.3rem;
}

.legal-block + .legal-block {
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.legal-block h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
}

.legal-block p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.legal-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.72;
  display: grid;
  gap: 0.45rem;
}

.legal-side {
  display: grid;
  gap: 1rem;
}

.legal-contact-card h3 {
  margin: 0 0 0.6rem;
}

.legal-contact-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.legal-contact-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
}

.legal-contact-list span {
  display: block;
  margin-bottom: 0.24rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-contact-list strong {
  display: block;
  line-height: 1.55;
  color: var(--reef);
}

.page-support-card {
  background: #fff;
  border: 1px solid rgba(201, 226, 235, 0.95);
  border-radius: 28px;
  box-shadow: 0 24px 52px rgba(8, 36, 61, 0.1);
  padding: 1.4rem;
}

.page-support-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.7rem;
  color: var(--ink-soft);
}

.ticket-page-section {
  background: linear-gradient(180deg, #e8f8d8, #f7fce9);
}

.ticket-product-grid {
  gap: 1.15rem;
}

.ticket-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.ticket-type-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  border: 1px solid rgba(201, 226, 235, 0.95);
  border-radius: 32px;
  box-shadow: 0 24px 52px rgba(8, 36, 61, 0.1);
}

.ticket-type-media img,
.ticket-hero-media img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.ticket-type-media img {
  aspect-ratio: 16 / 10;
}

.ticket-type-media.ticket-type-media--contain {
  background: linear-gradient(180deg, #e9eef3 0%, #dfe8ef 100%);
}

.ticket-type-media.ticket-type-media--contain img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.ticket-type-body {
  display: grid;
  gap: 0.95rem;
  padding: 1.2rem 1.25rem 1.3rem;
}

.ticket-type-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.ticket-type-top h3 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 0.98;
}

.ticket-type-copy {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
}

.ticket-hero-media {
  position: relative;
  min-height: 21rem;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 30px 70px rgba(8, 36, 61, 0.22);
}

.ticket-hero-media img {
  height: 100%;
}

.ticket-hero-media.ticket-hero-media--contain {
  min-height: 18rem;
  background: linear-gradient(180deg, #e9eef3 0%, #dfe8ef 100%);
}

.ticket-hero-media.ticket-hero-media--contain img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: contain;
  object-position: center center;
}

.ticket-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 36, 61, 0.08), rgba(8, 36, 61, 0.38));
}

.ticket-hero-media.ticket-hero-media--contain::after {
  background: linear-gradient(180deg, rgba(8, 36, 61, 0.02), rgba(8, 36, 61, 0.16));
}

.ticket-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.25rem;
  align-items: start;
}

.ticket-detail-facts {
  display: grid;
  gap: 0.85rem;
}

.ticket-detail-fact {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(201, 226, 235, 0.92);
}

.ticket-detail-fact span {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f78b2;
}

.ticket-detail-fact strong {
  display: block;
  color: var(--ink);
  line-height: 1.4;
}

.ticket-detail-section {
  background: linear-gradient(180deg, #eef8fb, #ffffff);
}

.ticket-detail-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.ticket-product-card {
  overflow: hidden;
  border-top: 6px solid #a6ce39;
}

.ticket-product-copy {
  padding: 0 0 0.4rem;
}

.ticket-product-info {
  display: grid;
  gap: 0.2rem;
}

.ticket-product-card .product-meta {
  background: rgba(255, 255, 255, 0.72);
}

.contact-page-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(244, 249, 252, 1));
}

.churras-overview-section,
.churras-detail-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(244, 249, 252, 1));
}

.churras-catalog-section {
  background: linear-gradient(180deg, #eef8fb, #ffffff);
}

.churras-overview-shell,
.churras-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.25rem;
  align-items: start;
}

.churras-overview-card,
.churras-rules-card,
.churras-detail-card,
.churras-booking-card {
  border-radius: 28px;
  box-shadow: 0 24px 52px rgba(8, 36, 61, 0.1);
}

.churras-overview-card,
.churras-rules-card,
.churras-detail-card {
  background: #fff;
  border: 1px solid rgba(201, 226, 235, 0.95);
  padding: 1.4rem;
}

.churras-overview-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.churras-note {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(201, 226, 235, 0.92);
}

.churras-note-label,
.churras-detail-label,
.churras-card-kicker {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f78b2;
}

.churras-note strong,
.churras-detail-card strong {
  display: block;
  color: var(--ink);
  line-height: 1.4;
}

.churras-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.churras-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  border: 1px solid rgba(201, 226, 235, 0.95);
  border-radius: 26px;
  box-shadow: 0 18px 38px rgba(8, 36, 61, 0.09);
}

.churras-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.churras-card-body {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 1rem 1.1rem;
}

.churras-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.churras-card-top h3 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.35rem, 1.9vw, 1.8rem);
  line-height: 1;
}

.churras-card-price {
  flex-shrink: 0;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 131, 82, 0.12);
  color: #a94d18;
  font-size: 0.82rem;
  font-weight: 800;
}

.churras-card-lead {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.45;
  font-size: 0.98rem;
}

.churras-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.churras-card-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  background: rgba(15, 64, 104, 0.06);
  color: var(--reef);
  font-size: 0.76rem;
  font-weight: 800;
}

.churras-card-points {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.churras-card-schedule {
  margin: 0;
  padding: 0.72rem 0.82rem;
  border-radius: 16px;
  background: rgba(15, 64, 104, 0.05);
  color: var(--reef);
  font-size: 0.9rem;
}

.churras-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: auto;
}

.churras-card-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.mini-hero-detail-shell {
  align-items: center;
}

.churras-hero-media {
  position: relative;
  min-height: 21rem;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 30px 70px rgba(8, 36, 61, 0.22);
}

.churras-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.churras-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 36, 61, 0.1), rgba(8, 36, 61, 0.4));
}

.churras-hero-price {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--reef);
  font-weight: 800;
}

.churras-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.churras-detail-copy {
  margin-top: 0;
}

.churras-gallery {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.churras-gallery-card,
.churras-video-card,
.churras-agenda-month {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(201, 226, 235, 0.95);
  border-radius: 28px;
  box-shadow: 0 24px 52px rgba(8, 36, 61, 0.1);
}

.churras-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.churras-video-card {
  margin-top: 1rem;
  padding: 1.15rem;
}

.churras-booking-card {
  position: sticky;
  top: 7.4rem;
  background: linear-gradient(135deg, #12365d, #214c84);
  color: #fff;
  padding: 1.4rem;
}

.churras-booking-card h2 {
  margin: 0.2rem 0 0.75rem;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 0.96;
}

.churras-booking-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.churras-booking-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.churras-calendar-section {
  background: linear-gradient(180deg, #eef8fb, #ffffff);
}

.churras-agenda {
  display: grid;
  gap: 1.75rem;
}

.churras-agenda-month {
  padding: 1.15rem 1.2rem 1.35rem;
}

.churras-agenda-month-title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.3vw, 1.45rem);
  color: var(--reef);
  letter-spacing: -0.02em;
}

.churras-agenda-calendar-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.15rem;
  padding: 0 0.15rem 0.35rem;
}

.churras-agenda-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(3.4rem, 1fr));
  gap: 0.35rem;
  min-width: min(100%, 38rem);
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  text-align: center;
}

.churras-agenda-weeks {
  display: grid;
  gap: 0.35rem;
  min-width: min(100%, 38rem);
}

.churras-agenda-week {
  display: grid;
  grid-template-columns: repeat(7, minmax(3.4rem, 1fr));
  gap: 0.35rem;
  align-items: stretch;
}

.churras-agenda-cell {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 5.4rem;
  padding: 0.45rem 0.4rem 0.55rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 226, 235, 0.75);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.churras-agenda-cell--pad {
  min-height: 1.5rem;
  border: none;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.churras-agenda-cell--muted {
  background: #f4f7fb;
  border-style: dashed;
  border-color: rgba(180, 200, 215, 0.55);
  opacity: 0.78;
}

.churras-agenda-cell--active {
  border-color: rgba(47, 120, 178, 0.28);
  box-shadow: 0 8px 24px rgba(8, 36, 61, 0.07);
}

.churras-agenda-cell-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.25rem;
}

.churras-agenda-daynum {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--reef);
  line-height: 1.1;
}

.churras-agenda-cell--muted .churras-agenda-daynum {
  color: var(--ink-soft);
}

.churras-agenda-pill {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.12rem 0.35rem;
  border-radius: 999px;
  background: rgba(47, 120, 178, 0.12);
  color: var(--aqua-deep);
  white-space: nowrap;
}

.churras-agenda-cell-slots {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.1rem;
  max-height: 18rem;
  overflow: auto;
  padding-right: 0.1rem;
}

.churras-slot--agenda {
  flex-direction: column;
  align-items: stretch;
  padding: 0.65rem 0.55rem;
  gap: 0.45rem;
  border-radius: 14px;
}

.churras-slot--agenda .churras-slot-copy {
  gap: 0.12rem;
}

.churras-slot--agenda .churras-slot-copy small {
  font-size: 0.72rem;
}

.churras-slot--agenda .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.82rem;
  padding: 0.45rem 0.55rem;
}

.churras-slot--agenda .status-badge {
  align-self: flex-start;
}

.churras-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(201, 226, 235, 0.95);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.churras-slot.is-open {
  border-color: rgba(47, 120, 178, 0.16);
}

.churras-slot.is-closed {
  background: #f7f8fb;
}

.churras-slot-copy {
  display: grid;
  gap: 0.14rem;
}

.churras-slot-copy strong {
  color: var(--reef);
}

.churras-slot-copy span,
.churras-slot-copy small {
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.25rem;
}

.contact-info-card,
.contact-map-card {
  background: #fff;
  border: 1px solid rgba(201, 226, 235, 0.95);
  border-radius: 28px;
  box-shadow: 0 24px 52px rgba(8, 36, 61, 0.1);
  padding: 1.4rem;
}

.contact-info-list {
  display: grid;
  gap: 0.95rem;
}

.contact-info-item {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f9fcff);
  border: 1px solid rgba(201, 226, 235, 0.92);
}

.contact-info-item span {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aqua-deep);
}

.contact-info-item strong {
  display: block;
  color: var(--reef);
  line-height: 1.5;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-map-frame {
  margin-top: 0.9rem;
}

.contact-faq-list {
  gap: 0.9rem;
}

.contact-events-section {
  background: #fff;
}

.contact-event-list .panel {
  background: #fff;
  border: 1px solid rgba(201, 226, 235, 0.95);
  border-radius: 24px;
  box-shadow: 0 24px 52px rgba(8, 36, 61, 0.1);
}

.contact-event-list .panel h3 {
  margin-bottom: 0.7rem;
}

.contact-event-list .panel p {
  color: var(--ink-soft);
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.toolbar input {
  width: min(440px, 100%);
  border: 1px solid rgba(201, 226, 235, 0.95);
  border-radius: 999px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.flash {
  margin-top: 0.8rem;
  border-radius: 12px;
  padding: 0.7rem 0.95rem;
  border: 1px solid transparent;
  font-weight: 700;
}

.flash-success {
  background: rgba(0, 167, 160, 0.12);
  border-color: rgba(0, 167, 160, 0.25);
  color: #0a5a57;
}

.flash-error {
  background: rgba(220, 53, 69, 0.11);
  border-color: rgba(220, 53, 69, 0.25);
  color: #8f2631;
}

.flash-info {
  background: rgba(20, 33, 61, 0.08);
  border-color: rgba(20, 33, 61, 0.2);
  color: #20304e;
}

.inline-error {
  margin: 0 0 1rem;
  background: rgba(220, 53, 69, 0.1);
  color: #8f2631;
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
}

.auth-wrap {
  display: grid;
  place-items: center;
}

.auth-card {
  width: min(34rem, 100%);
  padding: 2rem 1.9rem;
  border-radius: 30px;
  border: 1px solid rgba(186, 220, 236, 0.95);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 70px rgba(10, 42, 66, 0.16);
}

.auth-card::before {
  display: none;
}

.auth-screen {
  position: relative;
  overflow: clip;
  min-height: 100dvh;
  padding: 2rem 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(38, 141, 255, 0.18), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(0, 199, 214, 0.16), transparent 26%),
    linear-gradient(180deg, #eef8ff 0%, #dff3ff 52%, #f6fbff 100%);
}

.auth-screen::before,
.auth-screen::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.auth-screen::before {
  width: 24rem;
  height: 24rem;
  top: -8rem;
  right: -7rem;
  border-radius: 56% 44% 68% 32% / 68% 68% 32% 32%;
  transform: rotate(18deg);
}

.auth-screen::after {
  width: 18rem;
  height: 18rem;
  bottom: -5rem;
  left: -4rem;
  border-radius: 46% 54% 36% 64% / 62% 70% 30% 38%;
  transform: rotate(-24deg);
}

.auth-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.82fr);
  gap: 1.35rem;
  align-items: stretch;
}

.auth-showcase {
  position: relative;
  padding: 2.5rem 2.35rem;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(21, 70, 122, 0.96), rgba(12, 45, 82, 0.94)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 34px 74px rgba(10, 44, 78, 0.24);
}

.auth-showcase::before,
.auth-showcase::after {
  content: '';
  position: absolute;
  background: rgba(130, 233, 245, 0.1);
}

.auth-showcase::before {
  width: 17rem;
  height: 17rem;
  top: -5rem;
  right: -5rem;
  border-radius: 58% 42% 68% 32% / 72% 66% 34% 28%;
  transform: rotate(20deg);
}

.auth-showcase::after {
  width: 12rem;
  height: 12rem;
  bottom: -4rem;
  left: -3rem;
  border-radius: 42% 58% 34% 66% / 60% 72% 28% 40%;
  transform: rotate(-26deg);
}

.auth-showcase > * {
  position: relative;
  z-index: 1;
}

.auth-showcase-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #b7f7fb;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.auth-showcase-brand img {
  width: 4rem;
  height: auto;
}

.auth-showcase-kicker,
.auth-card-kicker {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.auth-showcase-kicker {
  color: rgba(183, 247, 251, 0.84);
}

.auth-showcase h1 {
  margin: 0;
  max-width: 13ch;
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.auth-showcase-lead {
  margin: 1.3rem 0 0;
  max-width: 40rem;
  color: rgba(232, 247, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.72;
}

.auth-showcase-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 2rem;
}

.auth-showcase-points article {
  display: grid;
  gap: 0.45rem;
  min-height: 100%;
  padding: 1rem 0.95rem 1.05rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.auth-showcase-points strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.auth-showcase-points span {
  color: rgba(232, 247, 255, 0.84);
  font-size: 0.93rem;
  line-height: 1.55;
}

.auth-card-head {
  margin-bottom: 1.35rem;
}

.auth-card-kicker {
  color: #1b75b8;
}

.auth-card-head h2 {
  margin: 0;
  color: #12304a;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.auth-card-head p {
  margin: 0.85rem 0 0;
  color: #547089;
  line-height: 1.65;
}

.auth-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(186, 220, 236, 0.8);
}

.auth-card-foot p {
  margin: 0;
  color: #4f6981;
}

.auth-card-foot a {
  font-weight: 800;
  text-decoration: none;
}

.auth-choice-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-choice-actions {
  display: grid;
  gap: 0.9rem;
}

.auth-meta-links {
  display: flex;
  justify-content: flex-end;
  margin-top: -0.1rem;
}

.auth-meta-links a {
  color: #0d5d8e;
  font-weight: 800;
  text-decoration: none;
}

.auth-inline-message {
  margin: 0 0 1rem;
}

.auth-inline-message-muted {
  border: 1px solid rgba(186, 220, 236, 0.8);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  color: #547089;
  background: #f6fbff;
}

.auth-selection-summary {
  display: grid;
  gap: 0.35rem;
}

.auth-selection-summary span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #4d7a94;
}

.auth-selection-summary strong {
  color: var(--reef);
  font-size: 1.06rem;
  line-height: 1.35;
}

.auth-selection-summary em {
  font-style: normal;
  font-weight: 700;
  color: #0d5d8e;
}

.auth-selection-summary p {
  margin: 0.1rem 0 0;
  line-height: 1.55;
}

.auth-back-link {
  color: #0d5d8e;
}

.form-stack {
  display: grid;
  gap: 0.95rem;
}

.form-row-2,
.form-row-3 {
  display: grid;
  gap: 0.8rem;
}

.form-row-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-row-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-stack label {
  display: grid;
  gap: 0.42rem;
  font-weight: 700;
  color: #173149;
}

.form-stack input,
.form-stack select,
.form-stack textarea,
.inline-form input,
.filter-grid input,
.filter-grid select {
  border: 1px solid rgba(181, 213, 228, 0.92);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font: inherit;
  width: 100%;
  background: #f9fdff;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.form-stack input:focus,
.form-stack select:focus,
.form-stack textarea:focus,
.inline-form input:focus,
.filter-grid input:focus,
.filter-grid select:focus {
  outline: none;
  border-color: rgba(27, 117, 184, 0.9);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27, 117, 184, 0.12);
}

.churras-number-picker {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem;
  margin: 0;
}

.churras-number-picker legend {
  padding: 0 0.35rem;
  font-weight: 800;
  color: #173149;
}

.churras-number-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.5rem;
}

.churras-number-option {
  display: block;
}

.churras-number-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.churras-number-option span {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.4rem;
  border: 1px solid rgba(181, 213, 228, 0.92);
  border-radius: 10px;
  background: #f9fdff;
  font-weight: 700;
  color: #173149;
}

.churras-number-option input:checked + span {
  border-color: rgba(27, 117, 184, 0.9);
  background: rgba(27, 117, 184, 0.12);
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ticket-card .qr-box {
  margin: 0.8rem 0;
  padding: 0.8rem;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 12px;
  display: inline-block;
}

.ticket-token {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  word-break: break-all;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

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

.admin-table th {
  background: rgba(14, 53, 84, 0.06);
  color: var(--reef);
}

.admin-table tbody tr:nth-child(even) {
  background: rgba(238, 248, 251, 0.46);
}

.inline-form {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}

.check-row {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
}

.check-row input {
  width: auto;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.status-badge-success {
  background: rgba(0, 167, 160, 0.12);
  color: #0a5a57;
}

.status-badge-muted {
  background: rgba(20, 33, 61, 0.08);
  color: #20304e;
}

.status-badge-warn {
  background: rgba(255, 141, 58, 0.18);
  color: #9a4f15;
}

.admin-layout {
  align-items: start;
}

.admin-back-nav {
  margin-top: 0.7rem;
  margin-bottom: -0.25rem;
}

.admin-back-btn {
  width: auto;
}

.admin-products-head,
.admin-events-head,
.admin-churras-head,
.admin-agenda-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.admin-products-head h2,
.admin-events-head h2,
.admin-churras-head h2,
.admin-agenda-head h2 {
  margin: 0 0 0.45rem;
}

.admin-products-head p {
  margin: 0;
  color: var(--ink-soft);
}

body.page-admin.modal-open {
  overflow: hidden;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(8, 36, 61, 0.6);
}

.admin-modal.is-open {
  display: flex;
}

.admin-modal-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
  padding: 1.25rem;
}

.admin-modal-dialog h2 {
  margin-right: 2.1rem;
}

.admin-modal-dialog p {
  color: var(--ink-soft);
}

.admin-modal-dialog .form-help {
  font-size: 0.84rem;
  margin: -0.2rem 0 0.9rem;
  line-height: 1.48;
}

.admin-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.admin-image-preview {
  margin-top: 0.5rem;
}

.admin-image-preview a {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.admin-image-preview img {
  display: block;
  width: 180px;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.admin-gallery-preview {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 0.55rem;
}

.admin-gallery-item {
  display: block;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.admin-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.form-stack label small {
  display: block;
  margin-top: 0.35rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.stack-list {
  display: grid;
  gap: 0.85rem;
}

.stack-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(244, 248, 251, 0.75);
}

.stack-item p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
}

.stack-actions,
.table-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.table-actions form,
.stack-actions form {
  margin: 0;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: end;
}

.filter-grid-wide {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.filter-grid label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.filter-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.order-item-row {
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem 0;
}

.order-item-row + .order-item-row {
  border-top: 1px solid var(--line);
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 20px;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
}

.cta-block {
  text-align: center;
}

.site-footer {
  margin-top: 2rem;
  background: var(--reef);
  color: #eef6ff;
  padding: 2rem 0 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.site-footer::before {
  width: 24rem;
  height: 24rem;
  left: -8rem;
  bottom: -12rem;
  background: rgba(0, 169, 183, 0.11);
  border: 22px solid rgba(255, 255, 255, 0.06);
  border-radius: 58% 42% 62% 38% / 70% 66% 34% 30%;
  transform: rotate(-18deg);
}

.site-footer::after {
  width: 16rem;
  height: 16rem;
  right: -4rem;
  top: -5rem;
  background: rgba(255, 131, 82, 0.1);
  border: 16px solid rgba(255, 255, 255, 0.06);
  border-radius: 46% 54% 34% 66% / 62% 68% 32% 38%;
  transform: rotate(24deg);
}

.site-footer a {
  color: #95f0ec;
  text-decoration: none;
}

.site-footer a:hover {
  color: #c8fffb;
}

.site-footer.site-footer-panel {
  padding: 1.1rem 0 0.8rem;
  margin-top: 1.2rem;
}

.site-footer.site-footer-panel::before,
.site-footer.site-footer-panel::after {
  display: none;
}

.footer-panel-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.05);
}

.footer-panel-title {
  margin: 0;
  font-weight: 800;
  color: #eef6ff;
}

.footer-panel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.footer-panel-bottom {
  margin-top: 0.85rem;
}

.footer-cta {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.6rem;
  align-items: center;
  color: #eef6ff;
  padding: 1.35rem 1.5rem 1.65rem;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.footer-kicker {
  margin: 0 0 0.4rem;
  color: #95f0ec;
  text-transform: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-cta p {
  margin: 0;
  color: #d8e9ff;
  line-height: 1.65;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr;
  gap: 2rem;
  padding: 0.8rem 0 1.4rem;
}

.footer-brand {
  padding-right: 1.1rem;
}

.footer-col {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.footer-tagline,
.footer-contact {
  margin: 1rem 0 0;
  color: #d8e9ff;
  line-height: 1.65;
}

.footer-col h3 {
  margin: 0 0 0.9rem;
}

.footer-col p {
  margin: 0.45rem 0 0;
  color: #d8e9ff;
}

.footer-links {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.7rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.2rem;
  font-size: 0.92rem;
  color: #b8cbe3;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: inline-grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  text-decoration: none;
  color: #fff;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.whatsapp-float svg {
  width: 1.7rem;
  height: 1.7rem;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 980px) {
  .home-offer-grid,
  .home-attraction-grid,
  .home-planning-grid,
  .home-ticket-grid,
  .ticket-type-grid,
  .ticket-detail-columns,
  .contact-grid,
  .grid-4,
  .trust-strip,
  .experience-grid,
  .journey-grid,
  .attraction-grid,
  .product-grid,
  .event-list,
  .split,
  .ticket-grid,
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-shell,
  .mini-hero-shell,
  .ticket-detail-grid,
  .churras-overview-shell,
  .churras-detail-shell,
  .churras-gallery,
  .home-planning-shell,
  .home-cta-box,
  .legal-layout,
  .hero-shell,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    padding-bottom: 1.5rem;
  }

  .home-hero-panel {
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 2rem;
  }

  .hero-content,
  .hero-aside {
    margin-bottom: 0;
  }

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

  .filter-grid-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-showcase {
    padding: 2rem 1.8rem;
  }

  .auth-showcase h1 {
    max-width: 15ch;
  }

  .auth-showcase-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-row-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-col {
    padding-left: 0.9rem;
  }

  .churras-booking-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    padding: 0.45rem 0.65rem;
    font: inherit;
    font-weight: 700;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 0.8rem;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-shell {
    min-height: auto;
  }

  .home-offers {
    margin-top: 0;
    padding-top: 1rem;
  }

  .admin-products-head,
  .admin-events-head,
  .admin-churras-head,
  .admin-agenda-head {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-modal {
    padding: 0.7rem;
  }

  .admin-modal-dialog {
    border-radius: 18px;
    padding: 1rem;
  }

  .mini-hero {
    padding-top: 7.8rem;
  }

  .home-attractions {
    padding-top: 5.4rem;
    padding-bottom: 5.2rem;
  }

  .home-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.45rem, 10vw, 3.9rem);
  }

  .mini-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.45rem, 10vw, 3.9rem);
  }

  .home-offer-grid,
  .home-attraction-grid,
  .home-planning-grid,
  .home-ticket-grid,
  .ticket-type-grid,
  .ticket-detail-columns,
  .churras-card-grid,
  .churras-overview-notes,
  .churras-detail-grid,
  .churras-gallery,
  .contact-grid,
  .grid-4,
  .trust-strip,
  .experience-grid,
  .journey-grid,
  .attraction-grid,
  .product-grid,
  .event-list,
  .split,
  .ticket-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .home-hero-actions,
  .mini-hero-actions,
  .churras-card-actions,
  .contact-actions,
  .home-cta-actions,
  .home-ticket-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .churras-card-top {
    flex-direction: column;
  }

  .churras-slot:not(.churras-slot--agenda) {
    flex-direction: column;
    align-items: flex-start;
  }

  .churras-card-actions .btn {
    min-width: 0;
  }

  .home-offer-card,
  .home-attraction-card,
  .home-planning-card,
  .home-rule-card,
  .home-ticket-card,
  .home-faq-item,
  .home-cta-box {
    border-radius: 24px;
  }

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

  .home-ticket-meta {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .hero-panel,
  .hero-note {
    border-radius: 26px;
  }

  .hero-content {
    padding: 1.35rem 1.2rem 1.45rem;
  }

  .hero-actions,
  .footer-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-whats {
    width: 100%;
  }

  .product-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-col {
    padding-left: 0;
    border-left: 0;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-bottom {
    gap: 0.4rem;
  }

  .footer-panel-main,
  .footer-panel-links {
    grid-template-columns: 1fr;
    display: grid;
  }

  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .stack-item,
  .table-actions,
  .stack-actions,
  .filter-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .auth-screen {
    padding: 1rem 0;
  }

  .auth-showcase,
  .auth-card {
    padding: 1.45rem 1.15rem;
    border-radius: 24px;
  }

  .auth-showcase-brand {
    margin-bottom: 1.35rem;
  }

  .auth-showcase-brand img {
    width: 3.2rem;
  }

  .auth-showcase h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .auth-showcase-lead {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .auth-showcase-points {
    grid-template-columns: 1fr;
    margin-top: 1.35rem;
  }

  .auth-card-head h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .auth-card-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-grid-wide,
  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 0.85rem;
    bottom: calc(0.85rem + env(safe-area-inset-bottom));
    width: 3.3rem;
    height: 3.3rem;
  }
}
