@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Lato:wght@300;400;700&display=swap');

/* ============ Base ============ */
:root {
  --brand: #5B2333;
  --dark: #2C1019;
  --accent: #E8D5B5;
  --paper: #FBF8F3;
  --ink: #3A2A30;
  --muted: #7A6469;
  --line: rgba(91, 35, 51, .14);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Lato', 'Segoe UI', sans-serif;
  --shadow: 0 18px 45px -18px rgba(44, 16, 25, .25);
}
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--dark); }
h1, h2, h3, h4, .display-title { font-family: var(--serif); color: var(--dark); }

.section { padding: 5.5rem 0; }
.section-tint { background: linear-gradient(180deg, rgba(232, 213, 181, .28), rgba(232, 213, 181, .12)); }

.kicker {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .8rem;
}
.kicker-light { color: var(--accent); }
.sec-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 1.1rem;
}
.sec-head { margin-bottom: 3rem; }
.sec-head.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.sec-head.center .sec-title { margin-bottom: 1.2rem; }
.sec-head.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.sec-head.split .sec-title { margin-bottom: 0; }
.body-text { color: var(--muted); font-size: 1.03rem; }
.orn { color: var(--brand); opacity: .55; }

/* ============ Buttons ============ */
.btn-plum, .btn-champagne, .btn-line, .btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
  padding: .85rem 1.7rem;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: all .22s ease;
}
.btn-plum { background: var(--brand); color: #fff; }
.btn-plum:hover { background: var(--dark); color: var(--accent); transform: translateY(-2px); }
.btn-plum.btn-sm { padding: .55rem 1.15rem; font-size: .82rem; }
.btn-champagne { background: var(--accent); color: var(--dark); }
.btn-champagne:hover { background: #f2e5cc; color: var(--dark); transform: translateY(-2px); }
.btn-line { border-color: var(--brand); color: var(--brand); background: transparent; }
.btn-line:hover { background: var(--brand); color: #fff; }
.btn-ghost-light { border-color: rgba(232, 213, 181, .55); color: var(--accent); background: transparent; }
.btn-ghost-light:hover { border-color: var(--accent); background: rgba(232, 213, 181, .12); color: var(--accent); }

/* ============ Header ============ */
.prebar { background: var(--dark); color: rgba(251, 248, 243, .82); font-size: .8rem; }
.prebar-in { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 12px; }
.prebar-item { display: inline-flex; align-items: center; gap: .45rem; }
.prebar-item svg { color: var(--accent); flex: none; }
.prebar a { color: rgba(251, 248, 243, .92); }
.prebar a:hover { color: var(--accent); }

.navwrap {
  background: rgba(251, 248, 243, .96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(8px);
}
.nav-in {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-top: .8rem;
  padding-bottom: .8rem;
}
.nav-side { display: flex; align-items: center; gap: 1.6rem; }
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }
.nav-link {
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: .3rem 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--brand);
  transition: right .25s ease;
}
.nav-link:hover::after, .nav-link.on::after { right: 0; }
.nav-link.on, .nav-link:hover { color: var(--brand); }

.brand { display: inline-flex; flex-direction: column; align-items: center; line-height: 1.05; text-align: center; }
.brand img { max-height: 52px; width: auto; }
.brand-top {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: .42em;
}
.brand-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--brand);
}
.nav-burger {
  display: none;
  background: none;
  border: 0;
  color: var(--brand);
  padding: .3rem;
  justify-self: end;
}

/* Mobile menu */
.menu-mobile { background: var(--dark); color: var(--paper); max-width: 320px; }
.menu-mobile .offcanvas-header { border-bottom: 1px solid rgba(232, 213, 181, .18); padding: 1.2rem 1.4rem; }
.brand-oc .brand-top { color: rgba(251, 248, 243, .6); }
.brand-oc .brand-name { color: var(--accent); }
.oc-close { background: none; border: 0; color: var(--accent); }
.menu-mobile .offcanvas-body { display: flex; flex-direction: column; gap: 1.6rem; padding: 1.6rem 1.4rem; }
.menu-links { display: flex; flex-direction: column; gap: .35rem; }
.menu-links a {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--paper);
  padding: .55rem 0;
  border-bottom: 1px solid rgba(232, 213, 181, .14);
}
.menu-links a.on, .menu-links a:hover { color: var(--accent); font-style: italic; }
.menu-contact { display: flex; flex-direction: column; gap: .7rem; font-size: .9rem; }
.menu-contact a { color: rgba(251, 248, 243, .85); display: inline-flex; align-items: center; gap: .55rem; }
.menu-contact svg { color: var(--accent); }

/* ============ Hero ============ */
.hero { position: relative; padding: 5.5rem 0 4.5rem; overflow: hidden; }
.hero-glow {
  position: absolute;
  top: -220px; right: -180px;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 213, 181, .5), transparent 65%);
  pointer-events: none;
}
.hero .container { position: relative; }
.display-title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 1.3rem;
}
.display-title em { font-style: italic; color: var(--brand); }
.lead-soft { font-size: 1.13rem; color: var(--muted); max-width: 32rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.hero-note { display: inline-flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--muted); margin: 0; }
.hero-note svg { color: var(--brand); }

.hero-frame { position: relative; margin: 0 1.2rem 1.2rem 0; }
.hero-frame::after {
  content: '';
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--brand);
  opacity: .4;
  z-index: 0;
  pointer-events: none;
}
.hero-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.hero-chip {
  position: absolute;
  z-index: 2;
  left: 1.1rem; bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(44, 16, 25, .88);
  color: var(--paper);
  font-size: .8rem;
  padding: .55rem .95rem;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.stars { display: inline-flex; gap: .15rem; color: var(--accent); }

/* ============ Marquee ============ */
.marquee { background: var(--brand); overflow: hidden; padding: .85rem 0; }
.marquee-track { display: flex; width: max-content; animation: mq 26s linear infinite; }
.mq-group { display: flex; align-items: center; flex: none; }
.mq-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--accent);
  white-space: nowrap;
  padding: 0 1.4rem;
  position: relative;
}
.mq-item::after {
  content: '';
  position: absolute;
  right: -3px; top: 50%;
  width: 6px; height: 6px;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(232, 213, 181, .45);
}
@keyframes mq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============ Sobre ============ */
.about-frame { position: relative; margin: 0 0 1.2rem 1.2rem; }
.about-frame::after {
  content: '';
  position: absolute;
  inset: 1.2rem 1.2rem -1.2rem -1.2rem;
  background: linear-gradient(135deg, rgba(232, 213, 181, .55), rgba(232, 213, 181, .18));
  z-index: 0;
}
.about-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.perks { list-style: none; padding: 0; margin: 1.6rem 0 0; display: flex; flex-direction: column; gap: .8rem; }
.perks li { display: flex; align-items: flex-start; gap: .7rem; font-size: .95rem; }
.perks svg { color: var(--brand); flex: none; margin-top: .18rem; }

/* ============ Tipos de evento ============ */
.ev-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--dark) center / cover no-repeat;
  box-shadow: var(--shadow);
  transition: transform .3s ease;
}
.ev-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, rgba(44, 16, 25, .18) 30%, rgba(44, 16, 25, .93) 82%);
  transition: background .3s ease;
}
.ev-card:hover { transform: translateY(-6px); }
.ev-num {
  position: absolute;
  top: 1.1rem; left: 1.25rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent);
  z-index: 1;
  text-shadow: 0 1px 8px rgba(44, 16, 25, .8);
}
.ev-body { position: relative; z-index: 1; padding: 1.6rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.ev-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: #fff; }
.ev-text { font-size: .9rem; color: rgba(251, 248, 243, .82); }
.ev-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .4rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.ev-card:hover .ev-link { text-decoration: underline; text-underline-offset: 4px; }

/* ============ Stats ============ */
.stats-band { background: var(--dark); color: var(--paper); padding: 3.2rem 0; }
.stat { text-align: center; display: flex; flex-direction: column; gap: .2rem; }
.stat strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--accent);
}
.stat span { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(251, 248, 243, .68); }

/* ============ Serviços (home) ============ */
.sv-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: 4px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.sv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.sv-icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(232, 213, 181, .45);
  color: var(--brand);
  margin-bottom: .4rem;
}
.sv-card h3 { font-size: 1.28rem; font-weight: 600; margin: 0; }
.sv-card p { font-size: .92rem; color: var(--muted); margin: 0; flex: 1; }
.sv-price {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  border-top: 1px dashed var(--line);
  padding-top: .8rem;
  margin-top: .4rem;
}

/* ============ Depoimento ============ */
.quote-band { background: linear-gradient(180deg, rgba(232, 213, 181, .35), rgba(232, 213, 181, .14)); padding: 5rem 0; }
.quote-in { max-width: 760px; text-align: center; position: relative; }
.quote-mark {
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: .6;
  color: var(--brand);
  opacity: .35;
  display: block;
  margin-bottom: 1rem;
}
.quote-in blockquote { margin: 0; }
.quote-in blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 1.6rem;
}
.quote-in footer { display: flex; flex-direction: column; gap: .1rem; }
.quote-in footer strong { font-family: var(--sans); font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); }
.quote-in footer span { font-size: .85rem; color: var(--muted); }

/* ============ Galeria ============ */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.shot { position: relative; margin: 0; overflow: hidden; border-radius: 4px; cursor: zoom-in; box-shadow: var(--shadow); }
.shot img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .5s ease; display: block; }
.shot:hover img { transform: scale(1.045); }
.shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.2rem .9rem;
  background: linear-gradient(180deg, transparent, rgba(44, 16, 25, .85));
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: .98rem;
}

/* ============ CTA band ============ */
.cta-band {
  background: linear-gradient(160deg, var(--brand), var(--dark) 90%);
  color: var(--paper);
  padding: 5rem 0;
}
.cta-in { max-width: 680px; text-align: center; }
.cta-orn { color: var(--accent); margin-bottom: 1.2rem; }
.cta-orn .orn { color: var(--accent); opacity: .8; }
.cta-band h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 600;
  font-style: italic;
  color: #fff;
  margin-bottom: .9rem;
}
.cta-band p { color: rgba(251, 248, 243, .85); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ============ Footer ============ */
.footer { background: var(--dark); color: rgba(251, 248, 243, .8); padding: 4.2rem 0 0; }
.footer h4 {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.brand-foot { align-items: flex-start; text-align: left; margin-bottom: .9rem; }
.brand-foot .brand-top { color: rgba(251, 248, 243, .55); }
.brand-foot .brand-name { color: var(--accent); }
.foot-text { font-size: .92rem; max-width: 26rem; }
.social { display: flex; gap: .7rem; margin-top: 1rem; }
.social a {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 213, 181, .35);
  border-radius: 50%;
  color: var(--accent);
  transition: all .22s ease;
}
.social a:hover { background: var(--accent); color: var(--dark); }
.social-plum { margin-top: 1.4rem; }
.social-plum a { border-color: var(--line); color: var(--brand); }
.social-plum a:hover { background: var(--brand); color: #fff; }
.foot-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .7rem; font-size: .92rem; }
.foot-list li { display: flex; align-items: flex-start; gap: .6rem; }
.foot-list svg { color: var(--accent); flex: none; margin-top: .2rem; }
.foot-list a { color: rgba(251, 248, 243, .85); }
.foot-list a:hover { color: var(--accent); }
.foot-nav li { display: block; }
.foot-bottom {
  border-top: 1px solid rgba(232, 213, 181, .16);
  margin-top: 3rem;
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(251, 248, 243, .55);
}
.foot-bottom p { margin: 0; }
.credit a { color: var(--accent); }

/* ============ Lightbox ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(44, 16, 25, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: min(1080px, 94vw); text-align: center; }
.lightbox img { max-width: 100%; max-height: 82vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.lightbox figcaption { color: var(--accent); font-family: var(--serif); font-style: italic; margin-top: 1rem; }
.lb-close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  background: none;
  border: 0;
  color: var(--accent);
}

/* ============ Page hero (internas) ============ */
.page-hero {
  background: linear-gradient(160deg, var(--brand), var(--dark) 92%);
  color: var(--paper);
  padding: 4.5rem 0 4rem;
  text-align: center;
}
.page-hero-in { max-width: 720px; }
.page-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero-sub { color: rgba(251, 248, 243, .85); font-size: 1.06rem; margin-bottom: 1.6rem; }
.page-hero-orn .orn { color: var(--accent); opacity: .75; }

/* ============ Pacotes ============ */
.pk-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.1rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pk-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pk-card.featured { border: 2px solid var(--brand); background: linear-gradient(180deg, rgba(232, 213, 181, .22), #fff 45%); }
.pk-tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pk-icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(232, 213, 181, .45);
  color: var(--brand);
}
.pk-card h3 { font-size: 1.35rem; font-weight: 600; margin: 0; }
.pk-price { display: flex; align-items: baseline; gap: .45rem; flex-wrap: wrap; }
.pk-prefix, .pk-per { font-size: .82rem; color: var(--muted); }
.pk-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 2rem;
  color: var(--brand);
}
.pk-orn .orn { width: 70px; opacity: .4; }
.pk-card p { font-size: .92rem; color: var(--muted); flex: 1; margin: 0; }
.pk-go { margin-top: .9rem; }
.pk-note { text-align: center; font-size: .88rem; color: var(--muted); margin: 2.4rem auto 0; max-width: 620px; }

/* ============ Incluso / passos ============ */
.inc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem 1.6rem;
}
.inc-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: .85rem 1rem;
  font-size: .93rem;
}
.inc-list svg { color: var(--brand); flex: none; margin-top: .15rem; }

.step-card {
  height: 100%;
  border-top: 1px solid var(--line);
  padding: 1.6rem .2rem 0;
  position: relative;
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--brand);
  opacity: .28;
  line-height: 1;
  display: block;
  margin-bottom: .7rem;
}
.step-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; }
.step-card p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ============ Contato ============ */
.ct-list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: flex; flex-direction: column; gap: 1.2rem; }
.ct-list li { display: flex; gap: .95rem; align-items: flex-start; }
.ct-ic {
  width: 44px; height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(232, 213, 181, .45);
  color: var(--brand);
}
.ct-list li > span:last-child { display: flex; flex-direction: column; gap: .1rem; font-size: .95rem; }
.ct-list strong { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: 4px;
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow);
}
.form-title { font-size: 1.5rem; font-weight: 600; margin-bottom: .35rem; }
.form-sub { font-size: .92rem; color: var(--muted); margin-bottom: 1.5rem; }
.f-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .4rem;
}
.f-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  padding: .8rem .95rem;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.f-input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(91, 35, 51, .12); }
.f-area { resize: vertical; min-height: 130px; }
.ok {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(91, 35, 51, .08);
  border: 1px solid rgba(91, 35, 51, .25);
  border-radius: 3px;
  color: var(--brand);
  font-weight: 700;
  font-size: .92rem;
  padding: .85rem 1rem;
  margin-bottom: 1.3rem;
}
.ok svg { flex: none; }

.mapwrap { line-height: 0; }
.mapwrap iframe { width: 100%; height: 420px; border: 0; filter: sepia(.22) saturate(.85); }

/* ============ Reveal ============ */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
html.js [data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============ Responsivo ============ */
@media (max-width: 991.98px) {
  .section { padding: 4rem 0; }
  .nav-in { grid-template-columns: auto 1fr auto; }
  .nav-side { display: none; }
  .brand { justify-self: start; align-items: flex-start; text-align: left; }
  .nav-burger { display: inline-flex; }
  .prebar-addr { display: none; }
  .prebar-in { justify-content: center; }
  .hero { padding: 3.5rem 0 3rem; }
  .ev-card { min-height: 320px; }
}
@media (max-width: 767.98px) {
  .gallery { grid-template-columns: 1fr; }
  .inc-list { grid-template-columns: 1fr; }
  .sec-head { margin-bottom: 2.2rem; }
  .hero-frame { margin-right: .8rem; }
  .form-card { padding: 1.7rem 1.3rem; }
  .foot-bottom { justify-content: center; text-align: center; }
  .mapwrap iframe { height: 320px; }
}
