:root {
  --red: #ef2f39;
  --magenta: #b0176d;
  --purple: #66109a;
  --deep-purple: #4b0a80;
  --ink: #0f0f15;
  --muted: #60606b;
  --line: #dedee5;
  --soft: #f7f7fb;
  --white: #fff;
  --shadow: 0 20px 60px rgba(61, 14, 104, .14);
  --anchor-offset: 118px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 18px clamp(22px, 6vw, 86px);
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(222, 222, 229, .75);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 190px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 15px;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 22px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  background: var(--purple);
  border: 3px solid var(--purple);
  border-radius: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
}

.btn-outline {
  color: var(--purple);
  background: var(--white);
  border-color: var(--purple);
}

.btn-secondary {
  background: var(--magenta);
  border-color: var(--magenta);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(135deg, var(--red), var(--purple));
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(21, 18, 32, .22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .22s ease, transform .22s ease, box-shadow .22s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 20px 52px rgba(21, 18, 32, .3);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-bubble {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 31;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  background: #25d366;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(21, 18, 32, .22);
  transition: transform .18s ease, box-shadow .18s ease;
}

.whatsapp-bubble:hover {
  box-shadow: 0 20px 52px rgba(21, 18, 32, .3);
  transform: translateY(-3px);
}

.whatsapp-bubble svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  transform: translate(.5px, .5px);
}

.blog-page,
.single-post {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.blog-hero {
  margin-bottom: 52px;
  padding: 72px clamp(28px, 6vw, 78px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(102, 16, 154, .95), rgba(176, 23, 109, .86)),
    url("assets/images/hero.png") center / cover;
  border-radius: 10px;
}

.blog-hero p,
.blog-hero span {
  margin: 0;
  font-weight: 800;
}

.blog-hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .95;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.post-list {
  display: grid;
  gap: 26px;
}

.post-card {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(21, 18, 32, .08);
}

.post-card-image {
  min-height: 220px;
}

.post-card-image img,
.single-featured,
.related-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px 28px 28px 0;
}

.post-card time,
.single-post time {
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.post-card h2,
.post-card p {
  margin: 0;
}

.post-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.post-card h2 a,
.single-post a,
.blog-sidebar a {
  text-decoration: none;
}

.blog-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 20px;
}

.blog-sidebar > div {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(21, 18, 32, .07);
}

.blog-sidebar h2 {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 22px;
}

.blog-sidebar p {
  margin: 0;
  color: var(--muted);
}

.blog-sidebar a {
  display: block;
  padding: 10px 0;
  color: var(--purple);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.blog-pagination {
  margin-top: 32px;
}

.single-post article {
  width: min(860px, 100%);
  margin: 0 auto;
}

.post-back {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--purple);
  font-weight: 900;
}

.single-post h1 {
  margin: 12px 0 18px;
  color: var(--red);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
}

.single-excerpt {
  margin: 0 0 32px;
  font-size: 22px;
  line-height: 1.45;
}

.single-featured {
  max-height: 520px;
  margin-bottom: 34px;
  border-radius: 10px;
}

.single-content {
  font-size: 19px;
  line-height: 1.8;
}

.related-posts {
  margin-top: 70px;
}

.related-posts h2 {
  color: var(--red);
  text-align: center;
}

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

.related-grid a {
  display: grid;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.related-grid img {
  height: 160px;
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section {
  width: min(1100px, calc(100% - 44px));
  margin: 0 auto;
  padding: 76px 0;
  scroll-margin-top: var(--anchor-offset);
}

main [id],
form[id] {
  scroll-margin-top: var(--anchor-offset);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(440px, .98fr) minmax(320px, 1.02fr);
  align-items: end;
  gap: 28px 34px;
  width: 100%;
  min-height: 552px;
  margin: 0;
  padding-top: 62px;
  padding-right: max(52px, calc((100vw - 1120px) / 2));
  padding-bottom: 32px;
  padding-left: max(52px, calc((100vw - 1120px) / 2));
  overflow: hidden;
  background-color: #f7f7f8;
  background-image: url("assets/images/hero-final.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, .95) 0 35%, rgba(255, 255, 255, .72) 47%, rgba(255, 255, 255, 0) 64%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: .96;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 span,
.section h2,
.rates h2,
.consult h2,
.venue > h2,
.directory > h2,
.past h2,
.news h2 {
  color: var(--red);
}

.hero p {
  max-width: 430px;
  margin: 26px 0 22px;
  font-size: 17px;
  line-height: 1.42;
}

.hero-copy {
  min-width: 0;
}

.hero-anniversary {
  width: min(260px, 52%);
  margin: 0 0 18px;
  border-radius: 2px;
  box-shadow: 0 12px 30px rgba(239, 47, 57, .16);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-art {
  position: relative;
  min-height: 280px;
  display: grid;
  align-items: center;
}

.antad-badge {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 74px;
}

.event-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column: 1 / -1;
  width: 100%;
  gap: 14px;
  margin: 26px 0 0;
}

.event-strip article {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 18px 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(222, 222, 229, .9);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(15, 15, 21, .08);
}

.event-strip article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--purple));
}

.event-strip article > span:last-child {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.event-strip small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.event-strip strong {
  font-size: 16px;
  line-height: 1.18;
}

.strip-icon,
.include-grid span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red), var(--purple));
  border-radius: 50%;
}

.strip-icon svg,
.include-grid svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section-rule {
  display: none;
  height: 6px;
  margin: 0 0 42px;
  background: linear-gradient(90deg, var(--red), var(--purple));
}

.intro,
.audience {
  padding-top: 32px;
}

.intro {
  padding-bottom: 22px;
}

.audience {
  padding-top: 18px;
}

.intro,
.audience {
  font-size: 20px;
  line-height: 1.7;
}

.section h2 {
  margin: 0 0 34px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  text-align: center;
}

.section h2::after {
  display: block;
  width: 100%;
  height: 6px;
  margin-top: 22px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--purple));
}

.audience-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 46px;
}

.security-disc {
  display: grid;
  place-items: center;
  width: min(330px, 100%);
}

.security-disc img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.audience ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 1.45;
}

.audience li {
  margin: 0;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 198px;
  padding: 56px 24px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(91, 8, 132, .92), rgba(142, 36, 157, .84)),
    url("assets/images/hero.png") center / cover;
}

.banner h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  text-transform: none;
}

.banner p {
  margin: 12px 0 0;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 700;
}

.countdown-banner {
  display: grid;
  grid-template-columns: minmax(240px, .85fr) minmax(360px, 1.2fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 198px;
  padding: 48px max(24px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(91, 8, 132, .94), rgba(142, 36, 157, .84)),
    url("assets/images/hero.png") center / cover;
}

.countdown-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1;
}

.countdown-copy p {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: .9;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(76px, 1fr));
  gap: 12px;
}

.countdown-grid article {
  display: grid;
  gap: 4px;
  min-height: 92px;
  place-items: center;
  padding: 14px 10px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  backdrop-filter: blur(6px);
}

.countdown-grid strong {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.countdown-grid span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.rates {
  padding-top: 68px;
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 46px;
}

.rate-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 440px;
  background: var(--white);
  border: 1px solid rgba(222, 222, 229, .92);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 15, 21, .1);
  transition: transform .18s ease, box-shadow .18s ease;
}

.rate-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(61, 14, 104, .16);
}

.rate-grid h3 {
  display: grid;
  place-items: center;
  min-height: 72px;
  margin: 0;
  padding: 14px 24px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.1;
  text-align: center;
  background: linear-gradient(90deg, var(--red), var(--purple));
}

.rate-grid dl {
  display: grid;
  gap: 4px;
  flex: 1;
  margin: 0;
  padding: 30px 28px 32px;
}

.rate-grid div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 44px;
  padding: 6px 0;
  font-weight: 800;
  line-height: 1.25;
  border-bottom: 1px solid rgba(222, 222, 229, .72);
}

.rate-grid div:last-child {
  border-bottom: 0;
}

.rate-grid dt {
  color: var(--ink);
}

.rate-grid dd {
  margin: 0;
  min-width: 112px;
  padding-left: 18px;
  color: var(--purple);
  text-align: right;
  border-left: 2px solid var(--line);
}

.includes {
  position: relative;
  margin-top: 62px;
  padding: 38px 30px 34px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(239, 47, 57, .45), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, .16), transparent 28%),
    linear-gradient(135deg, var(--deep-purple), var(--purple) 52%, var(--magenta));
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(61, 14, 104, .2);
}

.includes::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .16;
  pointer-events: none;
}

.includes h3 {
  position: relative;
  margin: 0 0 28px;
  font-size: 30px;
  text-align: center;
}

.include-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}

.include-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  min-height: 164px;
  padding: 24px 14px 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(15, 15, 21, .13);
}

.include-grid p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.associated {
  display: grid;
  place-items: center;
  margin: 56px auto 0;
  text-align: center;
}

.associated > div {
  width: 100%;
  padding: 38px 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 20%, rgba(239, 47, 57, .45), transparent 28%),
    linear-gradient(135deg, var(--deep-purple), var(--purple) 55%, var(--magenta));
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(61, 14, 104, .18);
}

.associated p {
  margin: 0 auto 22px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.12;
}

.associated-open {
  min-width: 220px;
  color: var(--purple);
  background: var(--white);
  border-color: var(--white);
}

.associated-modal {
  width: min(1040px, calc(100% - 34px));
  max-height: min(860px, calc(100vh - 34px));
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 32px 90px rgba(15, 15, 21, .34);
}

.associated-modal::backdrop {
  background: rgba(15, 15, 21, .58);
  backdrop-filter: blur(5px);
}

.associated-modal h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  text-align: center;
}

.associated-modal p {
  margin: 10px auto 24px;
  color: var(--muted);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--purple);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--white);
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.associated-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0 0 22px;
  padding: 6px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.associated-tabs button {
  min-height: 44px;
  color: var(--purple);
  font: inherit;
  font-weight: 800;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.associated-tabs button.is-active {
  color: var(--white);
  background: linear-gradient(90deg, var(--red), var(--purple));
}

.associated-panel {
  display: none;
}

.associated-panel.is-active {
  display: block;
}

.associated-tools {
  display: grid;
  grid-template-columns: 1fr minmax(220px, .34fr);
  gap: 14px;
  margin-bottom: 14px;
}

.associated-tools label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.associated-tools input,
.associated-tools select {
  min-height: 48px;
}

.associated-count {
  margin: 0 0 14px !important;
  color: var(--ink) !important;
  font-weight: 800;
  text-align: left !important;
}

.associated-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-height: 410px;
  padding-right: 4px;
  overflow: auto;
}

.chain-card {
  display: grid;
  gap: 8px;
  min-height: 94px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(15, 15, 21, .06);
}

.chain-card strong {
  font-size: 17px;
  line-height: 1.1;
}

.chain-card span {
  width: max-content;
  max-width: 100%;
  padding: 5px 8px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(102, 16, 154, .08);
  border-radius: 999px;
}

.empty-results {
  grid-column: 1 / -1;
  padding: 26px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  background: var(--soft);
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}

.associated-template-frame {
  max-height: 560px;
  overflow: auto;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.associated-template-frame img {
  width: 100%;
  min-width: 680px;
  height: auto;
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: 28px;
  margin-top: 42px;
}

.consult article {
  text-align: center;
}

.consult-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 230px;
  padding: 34px 28px 30px;
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(239, 47, 57, .58), transparent 32%),
    linear-gradient(135deg, var(--deep-purple), var(--purple) 58%, var(--magenta));
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(61, 14, 104, .2);
  transition: transform .18s ease, box-shadow .18s ease;
}

.consult-card::before {
  position: absolute;
  inset: 8px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 6px;
}

.consult-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(61, 14, 104, .28);
}

.consult-card span {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--purple);
  background: var(--white);
  border-radius: 50%;
}

.consult-card svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.consult-card strong {
  position: relative;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.consult-card small {
  position: relative;
  padding: 8px 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--white);
  border-radius: 999px;
}

.venue {
  max-width: 1100px;
}

.venue-hero {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 40px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(222, 222, 229, .92);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 15, 21, .1);
}

.venue-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--purple));
}

.venue-hero > span {
  position: relative;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--purple));
  border-radius: 50%;
}

.venue-hero svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.venue-hero h2 {
  margin-bottom: 18px;
  color: var(--red);
  text-align: left;
}

.venue-hero h3 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
}

.venue-hero p {
  max-width: 850px;
  margin: 0;
  padding: 18px 20px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.access-title {
  margin: 54px 0 0;
  color: var(--red);
  font-size: clamp(28px, 3vw, 38px);
  text-align: center;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  margin-top: 30px;
}

.access-grid h4 {
  margin: 0;
  padding: 18px 22px;
  color: var(--white);
  font-size: 28px;
  text-align: center;
  background: linear-gradient(90deg, var(--red), var(--purple));
  border-radius: 8px 8px 0 0;
}

.access-grid article {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
  background: var(--white);
  border: 1px solid rgba(222, 222, 229, .92);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(15, 15, 21, .08);
}

.access-grid h4 {
  grid-column: 1 / -1;
}

.access-media {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 18px;
  background: #f5f3f7;
}

.access-image {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
}

.access-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 18px 18px;
}

.access-links .btn {
  min-height: 44px;
  padding-right: 14px;
  padding-left: 14px;
}

.access-links button {
  font: inherit;
}

.placeholder {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 18px;
  color: var(--purple);
  font-weight: 800;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(239, 47, 57, .08), rgba(102, 16, 154, .14)),
    var(--soft);
  border: 2px dashed rgba(102, 16, 154, .34);
  border-radius: 14px;
}

.placeholder.map {
  background:
    linear-gradient(90deg, transparent 49%, rgba(102, 16, 154, .16) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(239, 47, 57, .12) 50%, transparent 51%),
    #f6f2fa;
  background-size: 70px 70px;
}

.venue-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 58px;
}

.venue-actions .btn {
  min-width: 230px;
  min-height: 60px;
  padding: 16px 28px;
  font-size: 18px;
}

.lodging-modal {
  width: min(940px, calc(100% - 34px));
  max-height: min(860px, calc(100vh - 34px));
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 32px 90px rgba(15, 15, 21, .34);
}

.lodging-modal::backdrop {
  background: rgba(15, 15, 21, .58);
  backdrop-filter: blur(5px);
}

.lodging-modal h2 {
  margin: 0 0 22px;
  color: var(--red);
  font-size: clamp(28px, 3vw, 40px);
  text-align: center;
}

.lodging-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.lodging-summary article {
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-purple), var(--magenta));
  border-radius: 8px;
}

.lodging-summary small {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lodging-summary strong {
  font-size: 20px;
  line-height: 1.2;
}

.rate-table {
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rate-table h3 {
  margin: 0;
  padding: 16px 18px;
  color: var(--white);
  font-size: 20px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--red), var(--purple));
}

.rate-table h3 span {
  font-size: 14px;
}

.rate-table div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}

.rate-table strong {
  color: var(--purple);
  text-align: right;
}

.rate-table p {
  margin: 0;
  padding: 14px 18px;
  color: var(--muted);
  font-weight: 700;
}

.lodging-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lodging-notes article {
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lodging-notes h3 {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 20px;
}

.lodging-notes ul,
.lodging-notes p {
  margin: 0;
}

.lodging-notes ul {
  padding-left: 20px;
}

.lodging-notes li + li,
.lodging-notes p + p {
  margin-top: 8px;
}

.lodging-notes a {
  display: inline-block;
  margin-top: 10px;
  color: var(--purple);
  font-weight: 800;
}

.expo {
  text-transform: uppercase;
  min-height: 198px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.directory {
  width: min(1040px, calc(100% - 44px));
}

.logo-group {
  margin-top: 44px;
}

.logo-group h3 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin: 0 0 20px;
  color: var(--red);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  text-align: center;
}

.logo-group h3::before,
.logo-group h3::after {
  height: 3px;
  content: "";
  background: linear-gradient(90deg, rgba(239, 47, 57, .32), rgba(102, 16, 154, .32));
}

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

.logo-grid.compact {
  grid-template-columns: repeat(4, 1fr);
}

.logo-grid a {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 144px;
  padding: 24px 18px;
  overflow: hidden;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(21, 18, 32, .08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.logo-grid img {
  width: min(142px, 100%);
  max-height: 70px;
  object-fit: contain;
  transition: transform .22s ease, opacity .22s ease;
}

.logo-grid a[data-directory-id="eas-systems"] img,
.logo-grid a[data-directory-id="kasa-fuerte"] img {
  width: min(220px, 100%);
  max-height: 108px;
}

.logo-grid a[data-directory-id="eas-systems"] img {
  transform: scale(1.22);
}

.logo-grid a[data-directory-id="kasa-fuerte"] img {
  transform: scale(1.16);
}

.logo-grid a span {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: inline-grid;
  min-width: 92px;
  min-height: 36px;
  place-items: center;
  padding: 8px 16px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  background: linear-gradient(90deg, var(--red), var(--purple));
  border-radius: 999px;
  opacity: 0;
  box-shadow: 0 12px 24px rgba(111, 19, 166, .22);
  transform: translate(-50%, 14px);
  transition: opacity .22s ease, transform .22s ease;
}

.logo-grid a:hover,
.logo-grid a:focus-visible {
  border-color: rgba(111, 19, 166, .28);
  box-shadow: 0 26px 64px rgba(21, 18, 32, .14);
  transform: translateY(-4px);
}

.logo-grid a:hover img,
.logo-grid a:focus-visible img {
  opacity: .9;
  transform: translateY(-10px) scale(.96);
}

.logo-grid a[data-directory-id="eas-systems"]:hover img,
.logo-grid a[data-directory-id="eas-systems"]:focus-visible img {
  transform: translateY(-10px) scale(1.15);
}

.logo-grid a[data-directory-id="kasa-fuerte"]:hover img,
.logo-grid a[data-directory-id="kasa-fuerte"]:focus-visible img {
  transform: translateY(-10px) scale(1.1);
}

.logo-grid a:hover span,
.logo-grid a:focus-visible span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.text-logo {
  align-content: center;
  color: var(--ink) !important;
  font-size: 18px !important;
  font-weight: 800;
}

.text-logo span {
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.directory-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(760px, calc(100% - 34px));
  max-height: min(720px, calc(100vh - 48px));
  margin: 0;
  padding: 34px;
  overflow: auto;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 32px 90px rgba(15, 15, 21, .34);
  transform: translate(-50%, -50%);
}

.directory-modal::before,
.directory-modal::after {
  display: block;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--purple));
  border-radius: 999px;
}

.directory-modal::before {
  margin: 0 54px 26px 0;
}

.directory-modal::after {
  margin: 28px 54px 0 0;
}

.directory-modal::backdrop {
  background: rgba(15, 15, 21, .58);
  backdrop-filter: blur(5px);
}

.directory-modal-content {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
}

.directory-modal-brand {
  display: grid;
  min-height: 116px;
  place-items: center;
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.directory-modal-brand img {
  max-height: 76px;
  object-fit: contain;
}

.directory-modal-brand strong {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: var(--white);
  font-size: 24px;
  background: linear-gradient(135deg, var(--red), var(--purple));
  border-radius: 50%;
}

.directory-modal small {
  display: inline-block;
  margin-bottom: 8px;
  padding: 7px 12px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(111, 16, 154, .08);
  border-radius: 999px;
}

.directory-modal h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.directory-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.directory-contact,
.directory-solutions {
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.directory-contact h3,
.directory-solutions h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 20px;
  text-align: center;
}

.directory-contact div {
  display: grid;
  gap: 7px;
}

.directory-contact a,
.directory-contact span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.25;
}

.directory-contact a {
  color: var(--purple);
  font-weight: 800;
}

.directory-contact .directory-social-link {
  display: inline-flex;
  justify-content: center;
  justify-self: start;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 6px;
  background: #0a66c2;
  color: #fff;
  text-decoration: none;
}

.directory-solutions ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: solutions;
}

.directory-solutions li {
  position: relative;
  min-height: 40px;
  padding: 10px 12px 10px 42px;
  overflow-wrap: anywhere;
  background: var(--white);
  border: 1px solid rgba(111, 16, 154, .16);
  border-radius: 8px;
  counter-increment: solutions;
}

.directory-solutions li::before {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  content: counter(solutions);
  background: linear-gradient(135deg, var(--red), var(--purple));
  border-radius: 50%;
}

.past {
  text-align: center;
  border-top: 1px solid var(--line);
}

.past-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 44px auto 48px;
  max-width: 980px;
}

.past-photo {
  position: relative;
  display: block;
  width: 100%;
  min-height: 210px;
  padding: 0;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(21, 18, 32, .08);
  cursor: pointer;
}

.past-photo::after {
  position: absolute;
  inset: auto 16px 16px;
  display: grid;
  min-height: 38px;
  place-items: center;
  color: var(--white);
  font: 900 13px/1 "Poppins", Arial, sans-serif;
  content: "Ampliar";
  background: linear-gradient(90deg, var(--red), var(--purple));
  border-radius: 999px;
  opacity: 0;
  box-shadow: 0 12px 24px rgba(111, 19, 166, .22);
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease;
}

.past-photo img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}

.past-photo:hover img,
.past-photo:focus-visible img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.04);
}

.past-photo:hover::after,
.past-photo:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.video-memory {
  flex-direction: column;
  min-height: 228px;
  text-transform: uppercase;
}

.video-memory p {
  text-transform: none;
}

.video-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 24px;
  color: var(--purple);
  font: 900 16px/1 "Poppins", Arial, sans-serif;
  background: var(--white);
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(21, 18, 32, .2);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.video-play-btn:hover,
.video-play-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(21, 18, 32, .28);
}

.video-play-btn span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--purple));
  border-radius: 50%;
}

.video-play-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.gallery-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(1040px, calc(100% - 34px));
  max-height: min(820px, calc(100vh - 34px));
  margin: 0;
  padding: 16px;
  overflow: visible;
  background: var(--white);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 32px 90px rgba(15, 15, 21, .34);
  transform: translate(-50%, -50%);
}

.gallery-modal::backdrop {
  background: rgba(15, 15, 21, .66);
  backdrop-filter: blur(5px);
}

.gallery-modal img {
  width: 100%;
  max-height: calc(100vh - 84px);
  object-fit: contain;
  border-radius: 8px;
}

.video-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(1040px, calc(100% - 34px));
  margin: 0;
  padding: 16px;
  overflow: visible;
  background: var(--white);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 32px 90px rgba(15, 15, 21, .34);
  transform: translate(-50%, -50%);
}

.video-modal::backdrop {
  background: rgba(15, 15, 21, .66);
  backdrop-filter: blur(5px);
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 8px;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.news {
  text-align: center;
}

.news-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  text-align: left;
}

.news-articles article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(21, 18, 32, .08);
}

.news-article-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--soft);
}

.news-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.news-articles article:hover .news-article-image img {
  transform: scale(1.04);
}

.news-articles article > div {
  display: grid;
  flex: 1;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.news-articles h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
}

.news-articles h3 a {
  color: var(--red);
  text-decoration: none;
}

.news-articles p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.news-articles .btn {
  justify-self: start;
  margin-top: auto;
}

.contact {
  width: min(1120px, calc(100% - 44px));
}

.contact-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: stretch;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(21, 18, 32, .1);
}

.contact-info {
  display: grid;
  align-content: center;
  padding: 42px 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 18%, rgba(239, 47, 57, .38), transparent 30%),
    linear-gradient(135deg, var(--deep-purple), var(--purple) 56%, var(--magenta));
  border-radius: 8px;
}

.contact-info > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--purple);
  background: var(--white);
  border-radius: 50%;
}

.contact-info svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact h2 {
  max-width: 440px;
  margin: 0;
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  text-align: left;
}

.contact h2::after {
  margin: 20px 0 0;
  background: linear-gradient(90deg, var(--red), var(--white));
}

.contact-row {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  font-size: 20px;
}

.contact-row p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.contact-row a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.contact-line-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--purple);
  background: var(--white);
  border-radius: 50%;
}

.contact-line-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.signup-form {
  padding: 34px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-success {
  margin: 0 0 18px;
  padding: 12px 14px;
  color: #11602b;
  font-weight: 800;
  background: #dff7e8;
  border-radius: 8px;
}

.strategic-allies {
  margin-top: 38px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 20px 54px rgba(21, 18, 32, .08);
}

.strategic-allies img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.signup-form h3 {
  margin: 0 0 24px;
  color: var(--red);
  font-size: 30px;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 10px;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(176, 23, 109, .18);
  border-color: var(--purple);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 70px 22px 92px;
  font-weight: 800;
}

.site-footer img {
  width: 84px;
}

.floating-ad {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 35;
  width: 300px;
  height: 300px;
  background: var(--white);
  border: 1px solid rgba(222, 222, 229, .9);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(21, 18, 32, .24);
  transition: width .22s ease, height .22s ease, border-radius .22s ease;
}

.floating-ad.is-minimized {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.floating-ad-toggle {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--purple);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(21, 18, 32, .22);
  cursor: pointer;
}

.floating-ad-toggle span {
  position: absolute;
  width: 16px;
  height: 2px;
  background: var(--white);
}

.floating-ad.is-minimized .floating-ad-toggle span {
  width: 14px;
  height: 14px;
  background: transparent;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.floating-ad.is-minimized .floating-ad-track,
.floating-ad.is-minimized .floating-ad-arrow {
  display: none;
}

.floating-ad.is-minimized::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  content: "";
  background: linear-gradient(135deg, var(--red), var(--purple));
  border-radius: 50%;
}

.floating-ad-min-icon {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  place-items: center;
  color: var(--white);
  pointer-events: none;
}

.floating-ad-min-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.floating-ad.is-minimized .floating-ad-min-icon {
  display: grid;
}

.floating-ad-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.floating-ad-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--deep-purple), var(--purple) 58%, var(--magenta));
  opacity: 0;
  transform: translateX(100%);
  transition: opacity .35s ease, transform .35s ease;
}

.floating-ad-slide a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.floating-ad-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-ad-slide.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.floating-ad-slide span {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  padding: 8px 14px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--white);
  border-radius: 999px;
}

.floating-ad-slide strong {
  max-width: 220px;
  font-size: 30px;
  line-height: 1.05;
}

.floating-ad-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 44px;
  place-items: center;
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  background: rgba(15, 15, 21, .32);
  border: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .18s ease;
}

.floating-ad-arrow:hover {
  background: rgba(15, 15, 21, .52);
}

.floating-ad-arrow.prev {
  left: 0;
  border-radius: 0 8px 8px 0;
}

.floating-ad-arrow.next {
  right: 0;
  border-radius: 8px 0 0 8px;
}

@media (max-width: 980px) {
  :root {
    --anchor-offset: 92px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
  }

  .brand img {
    width: 158px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    background: var(--purple);
    border-color: var(--purple);
  }

  .menu-toggle span {
    background: var(--white);
  }

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

  .site-header.is-open .main-nav,
  .site-header.is-open .header-cta {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.is-open .main-nav {
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .site-header.is-open .main-nav a {
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .header-cta {
    width: 100%;
  }

  .hero,
  .audience-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
    min-height: 520px;
    background-size: auto 100%;
    background-position: center top;
  }

  .hero-anniversary {
    display: none;
  }

  .hero-art {
    min-height: 170px;
  }

  .antad-badge {
    right: 28px;
    bottom: 28px;
    width: 76px;
  }

  .event-strip,
  .rate-grid,
  .include-grid,
  .news-articles {
    grid-template-columns: 1fr;
  }

  .event-strip article {
    min-height: 82px;
  }

  .countdown-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .countdown-grid {
    width: min(620px, 100%);
  }

  .security-disc {
    width: min(420px, 100%);
    margin: 0 auto;
  }

  .audience-grid {
    gap: 24px;
  }

  .rate-grid {
    gap: 26px;
    margin-top: 34px;
  }

  .rate-grid article {
    min-height: auto;
  }

  .rate-grid h3 {
    min-height: 64px;
  }

  .rate-grid dl {
    padding: 24px;
  }

  .consult-grid,
  .contact-card,
  .past-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .news {
    padding-bottom: 76px;
  }
}

@media (max-width: 620px) {
  .section {
    width: min(100% - 32px, 1100px);
    padding: 58px 0;
  }

  .site-header {
    min-height: 76px;
    padding: 14px 16px;
  }

  .brand img {
    width: 136px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-bubble {
    right: 16px;
    bottom: 76px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-bubble svg {
    width: 30px;
    height: 30px;
  }

  .floating-ad {
    bottom: 16px;
    left: 16px;
    width: min(300px, calc(100vw - 32px));
    height: min(300px, calc(100vw - 32px));
  }

  .floating-ad.is-minimized {
    width: 58px;
    height: 58px;
  }

  .section h2 {
    margin-bottom: 24px;
    font-size: 28px;
  }

  .hero h1 {
    max-width: 310px;
    font-size: 25px;
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .hero {
    width: 100%;
    min-height: auto;
    padding: 34px 16px 20px;
    gap: 18px;
    background-color: #f7f7f8;
    background-size: cover;
    background-position: 58% top;
  }

  .hero-anniversary {
    display: none;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .68) 0 42%, rgba(255, 255, 255, .94) 66%, var(--white) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, .88) 0 62%, rgba(255, 255, 255, .2) 100%);
  }

  .hero p,
  .intro,
  .audience {
    font-size: 17px;
  }

  .hero p {
    max-width: 310px;
    font-size: 16px;
  }

  .hero-actions,
  .banner,
  .venue-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-art {
    min-height: 12px;
  }

  .antad-badge {
    display: none;
    right: 16px;
    bottom: 12px;
    width: 58px;
  }

  .event-strip {
    width: 100%;
    margin-top: 2px;
    gap: 12px;
  }

  .event-strip article {
    min-height: 76px;
    padding: 15px 14px;
  }

  .strip-icon,
  .include-grid span {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }

  .banner {
    padding: 48px 16px;
  }

  .countdown-banner {
    padding: 42px 16px;
  }

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

  .countdown-grid article {
    min-height: 84px;
  }

  .rates {
    padding-top: 54px;
  }

  .rate-grid {
    gap: 22px;
    margin-top: 28px;
  }

  .rate-grid article {
    box-shadow: 0 12px 30px rgba(15, 15, 21, .1);
  }

  .rate-grid h3 {
    min-height: 58px;
    padding: 12px 18px;
    font-size: 21px;
  }

  .rate-grid dl {
    gap: 0;
    padding: 18px 16px 20px;
  }

  .rate-grid div {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 40px;
    font-size: 14px;
  }

  .rate-grid dd {
    min-width: 96px;
    padding-left: 10px;
  }

  .includes {
    margin-top: 40px;
    padding: 28px 18px 30px;
    border-radius: 14px;
  }

  .includes h3 {
    margin-bottom: 22px;
    font-size: 26px;
  }

  .include-grid {
    gap: 18px;
  }

  .include-grid article {
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    min-height: 0;
    padding: 18px;
    text-align: left;
  }

  .include-grid p {
    font-size: 15px;
  }

  .associated {
    margin-top: 38px;
  }

  .associated > div {
    padding: 28px 18px;
  }

  .associated p {
    font-size: 22px;
  }

  .associated-open {
    min-width: 0;
  }

  .associated-modal {
    padding: 52px 18px 22px;
  }

  .associated-modal p {
    font-size: 14px;
  }

  .associated-tabs,
  .associated-tools {
    grid-template-columns: 1fr;
  }

  .associated-results {
    grid-template-columns: 1fr;
    max-height: 360px;
  }

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

  .associated-template-frame {
    max-height: 520px;
  }

  .associated-template-frame img {
    min-width: 620px;
  }

  .consult-card {
    min-height: 180px;
    padding: 28px 20px 26px;
  }

  .consult-card span {
    width: 52px;
    height: 52px;
  }

  .consult-card strong {
    font-size: 24px;
  }

  .access-grid article {
    grid-template-columns: 1fr;
  }

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

  .access-media {
    min-height: 0;
  }

  .access-links {
    grid-template-columns: 1fr;
  }

  .lodging-modal {
    padding: 52px 18px 22px;
  }

  .lodging-summary,
  .lodging-notes {
    grid-template-columns: 1fr;
  }

  .rate-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .rate-table strong {
    text-align: left;
  }

  .venue-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 30px 18px;
    text-align: center;
  }

  .venue-hero > span {
    width: 58px;
    height: 58px;
  }

  .venue-hero svg {
    width: 29px;
    height: 29px;
  }

  .venue-hero h2 {
    text-align: center;
  }

  .venue-hero h3 {
    font-size: 26px;
  }

  .venue-hero p {
    font-size: 17px;
  }

  .access-title {
    margin-top: 38px;
    font-size: 26px;
  }

  .access-grid {
    gap: 34px;
    margin-top: 36px;
  }

  .access-grid h4 {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .placeholder {
    min-height: 160px;
  }

  .consult-grid {
    gap: 34px;
    margin-top: 36px;
  }

  .consult h3 {
    margin-bottom: 18px;
    padding: 18px 20px;
    box-shadow: inset 0 0 0 5px var(--white), 0 0 0 3px var(--purple);
  }

  .consult a {
    font-size: 22px;
  }

  .news-articles {
    gap: 18px;
    margin-top: 36px;
  }

  .news-articles article > div {
    padding: 20px;
  }

  .news-articles .btn {
    justify-self: stretch;
  }

  .past-grid {
    gap: 18px;
  }

  .past-photo,
  .past-photo img {
    min-height: 180px;
  }

  .past-photo::after {
    opacity: 1;
    transform: translateY(0);
  }

  .gallery-modal {
    width: calc(100% - 24px);
    padding: 10px;
  }

  .video-modal {
    width: calc(100% - 24px);
    padding: 10px;
  }

  .contact {
    width: min(100% - 32px, 1120px);
  }

  .contact-card {
    padding: 8px;
  }

  .strategic-allies {
    margin-top: 24px;
    padding: 14px;
  }

  .contact-info {
    justify-items: center;
    padding: 34px 22px;
    text-align: center;
  }

  .contact-info > span {
    margin-bottom: 20px;
  }

  .contact h2 {
    text-align: center;
  }

  .contact h2::after {
    margin-right: auto;
    margin-left: auto;
  }

  .logo-group h3 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .logo-group h3::before,
  .logo-group h3::after {
    display: none;
  }

  .logo-grid,
  .logo-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .logo-grid a {
    min-height: 132px;
    padding: 18px 12px;
  }

  .logo-grid img {
    width: min(118px, 100%);
    max-height: 58px;
    transform: translateY(-8px);
  }

  .logo-grid a span {
    bottom: 14px;
    min-width: 82px;
    min-height: 32px;
    padding: 8px 12px;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .directory-modal {
    padding: 52px 18px 22px;
  }

  .directory-modal::before,
  .directory-modal::after {
    margin-right: 0;
  }

  .directory-modal-content,
  .directory-modal-grid {
    grid-template-columns: 1fr;
  }

  .directory-modal-brand {
    min-height: 104px;
  }

  .directory-modal h2 {
    text-align: center;
  }

  .directory-modal small {
    display: table;
    margin-right: auto;
    margin-left: auto;
  }

  .contact-row {
    font-size: 18px;
  }

  .signup-form {
    padding: 24px 18px;
  }

  .blog-page,
  .single-post {
    width: min(100% - 32px, 1160px);
    padding-top: 42px;
  }

  .blog-layout,
  .post-card,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .post-card-copy {
    padding: 24px;
  }

  .post-card-image {
    min-height: 210px;
  }
}

@media (max-width: 380px) {
  .section,
  .hero {
    width: min(100% - 24px, 1100px);
  }

  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand img {
    width: 122px;
  }

  .hero h1 {
    max-width: 280px;
    font-size: 24px;
  }

  .hero p {
    max-width: 280px;
  }

  .rate-grid div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .rate-grid dd {
    min-width: 0;
    padding-left: 0;
    text-align: left;
    border-left: 0;
  }
}
