:root {
  color-scheme: light;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --bg: #faf5ff;
  --bg-soft: #f0e4ff;
  --surface: rgba(250, 245, 255, 0.82);
  --surface-strong: rgba(250, 245, 255, 0.95);
  --line: rgba(140, 40, 230, 0.14);
  --text: #1a0a2e;
  --muted: #7a5a8a;
  --primary: #8a28e0;
  --primary-strong: #4a0e90;
  --primary-deep: #0f0722;
  --accent: #e040c0;
  --accent-soft: #f080d8;
  --glow: rgba(224, 64, 192, 0.28);
  --shadow: 0 30px 90px rgba(74, 14, 144, 0.16);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1140px, calc(100vw - 2.25rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(224, 64, 192, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(138, 40, 224, 0.09), transparent 24%),
    linear-gradient(180deg, #faf5ff 0%, #f0e4ff 42%, #faf5ff 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
  animation: drift 18s ease-in-out infinite;
}

body::before {
  top: 8rem;
  left: 4vw;
  width: 15rem;
  height: 15rem;
  background: rgba(224, 64, 192, 0.1);
}

body::after {
  right: 6vw;
  top: 28rem;
  width: 11rem;
  height: 11rem;
  background: rgba(138, 40, 224, 0.11);
  animation-duration: 22s;
}

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

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

p {
  margin: 0;
  line-height: 1.75;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* ── Announcement bar ─────────────────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-strong) 0%, #7b1fa2 50%, var(--primary-strong) 100%);
  color: #fff;
  padding: 0.38rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 18px rgba(74, 14, 144, 0.35);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: nowrap;
  overflow: hidden;
}

.announcement-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.announcement-divider {
  opacity: 0.45;
  flex-shrink: 0;
}

.countdown-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  font-family: var(--font-body);
  font-weight: 800;
  flex-shrink: 0;
}

.countdown-unit {
  display: inline-flex;
  align-items: baseline;
  gap: 0.14rem;
}

.countdown-unit span {
  font-size: 0.82rem;
  line-height: 1;
  min-width: 1.5ch;
  display: inline-block;
  text-align: right;
}

.countdown-unit em {
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 600;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.countdown-sep {
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.55;
  margin: 0 0.03rem;
  line-height: 1;
}

.announcement-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}

.announcement-cta:hover {
  background: var(--accent-soft);
  transform: scale(1.04);
}

@media (max-width: 600px) {
  .announcement-inner {
    gap: 0.4rem;
    flex-wrap: nowrap;
  }
  .announcement-label {
    font-size: 0.74rem;
  }
  .announcement-divider {
    display: none;
  }
  /* hide seconds unit + its preceding separator on small screens */
  .countdown-wrap > :nth-child(n+6) {
    display: none;
  }
  .announcement-cta {
    font-size: 0.65rem;
    padding: 0.18rem 0.6rem;
  }
}

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(224, 64, 192, 0.14), rgba(138, 40, 224, 0.9));
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  margin-bottom: 1.25rem;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: var(--bar-h, 0px);
  z-index: 100;
  backdrop-filter: blur(24px);
  background: rgba(250, 245, 255, 0.95);
  border-bottom: 1px solid rgba(140, 40, 230, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  min-height: 72px;
}

/* ── Brand ─── */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
}

.brand-badge {
  display: block;
  width: 52px;
  height: 52px;
  min-width: 52px;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.25;
}

.brand-name-main {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  color: #2d1060;
  letter-spacing: 0.02em;
}

.brand-name-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  color: #8c28e6;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--solid {
  color: #faf5ff;
  background: linear-gradient(135deg, var(--primary-strong) 0%, var(--primary) 72%, var(--accent) 135%);
  box-shadow: 0 18px 34px rgba(74, 14, 144, 0.28);
}

.button--ghost {
  color: var(--primary);
  border-color: rgba(138, 40, 224, 0.18);
  background: rgba(250, 245, 255, 0.74);
}

/* header CTA is smaller than global .button */
.header-cta.button {
  min-height: unset;
  padding: 0.55rem 1.15rem;
  font-size: 0.84rem;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(74, 14, 144, 0.22);
}

.button-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.button-note--light {
  color: rgba(240, 228, 255, 0.84);
}

.whatsapp-privacy-note {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 36ch;
}

.whatsapp-privacy-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  font-weight: 600;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(224, 64, 192, 0.22), transparent 26%),
    radial-gradient(circle at 78% 22%, rgba(255, 120, 50, 0.14), transparent 22%),
    linear-gradient(135deg, #0f0722 0%, #2d1060 48%, #0f0722 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
}

.hero-copy h1 {
  max-width: 22ch;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  margin-bottom: 1rem;
  color: #faf5ff;
}

.hero-lead {
  max-width: 38rem;
  color: rgba(240, 228, 255, 0.88);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 0.8rem;
}

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

.stat-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.52));
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
  color: var(--primary);
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
  justify-items: end;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.7);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(224, 64, 192, 0.1), rgba(138, 40, 224, 0.1)),
    linear-gradient(135deg, rgba(240, 128, 216, 0.07), rgba(250, 245, 255, 0));
  pointer-events: none;
}

.photo-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(1.03);
}

.photo-card--hero {
  width: min(34rem, 100%);
}

.photo-card--hero img {
  aspect-ratio: 0.88 / 1;
}

.photo-card--tall {
  width: min(17rem, 62%);
  margin-right: 12%;
  animation: breathe 10s ease-in-out infinite;
}

.photo-card--tall img {
  aspect-ratio: 0.84 / 1;
}

.floating-note {
  position: absolute;
  left: 0;
  top: 3.2rem;
  max-width: 18rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(224, 64, 192, 0.22);
  border-radius: var(--radius-md);
  background: rgba(250, 245, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.note-badge {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(224, 64, 192, 0.12);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.benefits-layout,
.gallery-layout,
.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
}

.benefit-list,
.service-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card,
.service-card,
.testimonial-card,
.contact-card,
.quote-panel,
.cta-panel,
.step-card,
.trust-card,
.faq-item,
.section-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 245, 255, 0.62));
  box-shadow: var(--shadow);
}

.benefits {
  background:
    linear-gradient(180deg, rgba(224, 64, 192, 0.06), rgba(250, 245, 255, 0.5));
}

.services {
  background:
    linear-gradient(180deg, rgba(250, 245, 255, 0.94), rgba(240, 228, 255, 0.44));
}

.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
}

.benefit-card span {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: #fff;
  font-weight: 800;
}

.benefit-card h3,
.service-card h3,
.contact-card h3,
.step-card h3,
.trust-card h3,
.faq-item h3,
.section-cta h3 {
  margin-bottom: 0.45rem;
  font-size: 1.7rem;
}

.benefit-card p,
.service-card p,
.testimonial-card p,
.contact-card p,
.about-copy p,
 .quote-panel p,
 .cta-panel p,
.step-card p,
.trust-card p,
.faq-item p,
.section-cta p {
  color: var(--muted);
}

.benefit-bullets {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.benefit-bullets li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.benefit-bullets li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.contact-card a:not(.button) {
  display: inline-block;
  line-height: 1.6;
}

.benefits-media {
  display: grid;
  gap: 1rem;
}

.photo-card--wide img {
  aspect-ratio: 1.1 / 1;
}

.quote-panel {
  padding: 1.35rem;
}

.quote-panel p {
  font-size: 1.05rem;
}

.benefits-conclusion {
  position: relative;
  margin-top: 2.4rem;
  padding: 2rem 2.4rem 2rem 4rem;
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(224, 64, 192, 0.13), rgba(112, 66, 248, 0.15));
  border-left: 4px solid var(--accent);
  box-shadow: 0 4px 24px rgba(112, 66, 248, 0.12);
  text-align: left;
}

.benefits-conclusion__mark {
  position: absolute;
  top: -0.6rem;
  left: 1.1rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  font-family: Georgia, serif;
  pointer-events: none;
}

.benefits-conclusion p {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.service-card,
.testimonial-card,
.contact-card {
  padding: 1.45rem;
}

.service-kicker {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(224, 64, 192, 0.1);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240, 128, 216, 0.18), rgba(224, 64, 192, 0.26));
  color: var(--primary);
  font-weight: 800;
}

.service-card--rich {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.service-card-head .service-kicker {
  margin-bottom: 0;
}

.service-intro {
  font-size: 1rem;
}

.service-detail {
  padding-top: 1rem;
  border-top: 1px solid rgba(140, 40, 230, 0.08);
}

.service-detail strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--primary-deep);
  font-size: 0.92rem;
}

.service-button {
  width: 100%;
  margin-top: auto;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(240, 128, 216, 0.16);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.service-card {
  padding: 1.75rem;
}

.section-cta {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.5rem;
  border-color: rgba(224, 64, 192, 0.22);
  background:
    radial-gradient(circle at top right, rgba(224, 64, 192, 0.28), rgba(250, 245, 255, 0) 34%),
    linear-gradient(145deg, #2d1060 0%, #8a28e0 62%, #0f0722 100%);
}

.section-cta h3 {
  margin-bottom: 0.7rem;
}

.section-cta h3,
.section-cta p {
  color: #faf5ff;
}

.section-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-cta .button--solid,
.contact-card--primary .button--solid {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: #fff;
  box-shadow: 0 18px 32px rgba(224, 64, 192, 0.26);
}

.section-cta .button-note,
.contact-card--primary .button-note {
  color: rgba(240, 228, 255, 0.84);
}

.gallery-copy {
  max-width: 34rem;
}

.gallery-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  margin-bottom: 1rem;
}

.gallery-copy p {
  margin-bottom: 1.8rem;
  color: var(--muted);
}

.gallery {
  background:
    radial-gradient(circle at 12% 24%, rgba(224, 64, 192, 0.22), transparent 18%),
    radial-gradient(circle at 86% 34%, rgba(255, 120, 50, 0.14), transparent 20%),
    linear-gradient(135deg, #0f0722 0%, #2d1060 44%, #0f0722 100%);
}

.gallery .eyebrow,
.gallery-copy h2,
.gallery-copy p {
  color: #faf5ff;
}

.gallery .eyebrow {
  color: var(--accent-soft);
}

.gallery .button--ghost {
  color: #faf5ff;
  border-color: rgba(240, 128, 216, 0.28);
  background: rgba(250, 245, 255, 0.08);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.gallery-mosaic .photo-card:first-child {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.gallery-mosaic .photo-card:first-child img {
  aspect-ratio: unset;
  flex: 1;
  min-height: 0;
  object-fit: cover;
}

.gallery-mosaic .photo-card:nth-child(2) img,
.gallery-mosaic .photo-card:nth-child(3) img {
  aspect-ratio: 1 / 1;
}

/* Evento section */
.evento {
  background: linear-gradient(180deg, rgba(240, 228, 255, 0.3), rgba(250, 245, 255, 0.97));
}

.evento-fotos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.evento-fotos .photo-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.evento-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.video-card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(140, 40, 230, 0.15);
  box-shadow: 0 4px 24px rgba(90, 20, 160, 0.1);
  background: #1a0840;
  margin: 0;
}

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

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

.testimonials {
  background:
    linear-gradient(180deg, rgba(240, 228, 255, 0.44), rgba(250, 245, 255, 0.96));
}

.testimonial-card {
  min-height: 15rem;
  border-top: 3px solid rgba(224, 64, 192, 0.32);
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
}

.testimonial-card p {
  flex: 1;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-card strong {
  display: block;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(140, 40, 230, 0.1);
  color: var(--primary-deep);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.about-photo img {
  aspect-ratio: 1 / 1;
}

.about-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 42%);
  gap: 1rem;
  align-items: end;
}

.about-photo--main img {
  aspect-ratio: 0.96 / 1;
}

.about-photo--accent {
  align-self: end;
  margin-bottom: 1.6rem;
}

.about-photo--accent img {
  aspect-ratio: 0.82 / 1;
}

.about-copy {
  align-self: center;
}

.about-copy h2 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  margin-bottom: 1rem;
}

.about {
  background:
    linear-gradient(180deg, rgba(250, 245, 255, 0.96), rgba(240, 228, 255, 0.42));
}

.about-copy p + p {
  margin-top: 1rem;
}

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

.trust-card {
  padding: 1.25rem;
}

.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.about-pillars span {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(140, 40, 230, 0.14);
  border-radius: 999px;
  background: rgba(250, 245, 255, 0.9);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.faq {
  background:
    linear-gradient(180deg, rgba(250, 245, 255, 0.98), rgba(240, 228, 255, 0.56));
}

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

.faq-item {
  padding: 1.4rem;
}

.faq-grid .faq-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.cta {
  padding-top: 1rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem;
  background:
    radial-gradient(circle at top right, rgba(224, 64, 192, 0.28), rgba(250, 245, 255, 0) 34%),
    linear-gradient(145deg, #2d1060 0%, #8a28e0 62%, #0f0722 100%);
}

.cta-panel h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 0.8rem;
}

.cta-panel h2,
.cta-panel p,
.cta .eyebrow {
  color: #faf5ff;
}

.cta .eyebrow {
  color: var(--accent-soft);
}

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

.cta .button--solid {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: #fff;
  box-shadow: 0 18px 32px rgba(224, 64, 192, 0.26);
}

.cta .button--ghost {
  color: #faf5ff;
  border-color: rgba(250, 245, 255, 0.22);
  background: rgba(250, 245, 255, 0.08);
}

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

.contact {
  background:
    linear-gradient(180deg, rgba(240, 228, 255, 0.5), rgba(250, 245, 255, 0.98));
}

.contact-card a:not(.button) {
  font-weight: 700;
}

.contact-card .button {
  color: #faf5ff;
  line-height: 1.2;
}

.contact-card--primary .button--solid {
  color: #fff;
}

.contact-card .button-note {
  margin-top: 1rem;
}

.contact-card--primary {
  background:
    radial-gradient(circle at top right, rgba(224, 64, 192, 0.22), rgba(250, 245, 255, 0) 36%),
    linear-gradient(150deg, #2d1060 0%, #8a28e0 64%, #0f0722 100%);
}

.contact-card--primary h3,
.contact-card--primary p {
  color: #faf5ff;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-stack a + a {
  color: var(--primary);
}

.hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.hours-list li + li {
  border-top: 1px solid rgba(140, 40, 230, 0.08);
}

.site-footer {
  padding: 1.6rem 0 2rem;
  background: linear-gradient(180deg, #2d1060 0%, #0f0722 100%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(240, 228, 255, 0.8);
  font-size: 0.92rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--primary);
  font-weight: 700;
  transition: opacity 180ms ease;
}

.ig-link:hover {
  opacity: 0.75;
}

.ig-icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
  flex-shrink: 0;
}

.map-embed {
  margin: 0.85rem 0 0.6rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 130px;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.consent-embed {
  position: relative;
  display: grid;
  place-items: center;
  background: rgba(250, 245, 255, 0.74);
}

.consent-embed-placeholder {
  display: grid;
  justify-items: start;
  gap: 0.35rem;
  width: 100%;
  padding: 1rem;
  color: var(--text);
}

.consent-embed-placeholder strong {
  font-size: 0.9rem;
}

.consent-embed-placeholder span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.inline-consent-button {
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
  transition: opacity 180ms ease;
}

.map-link:hover {
  opacity: 0.75;
}

.map-pin-icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-ig-icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  font-weight: 700;
}

.footer-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.footer-links a:hover,
.footer-link-button:hover,
.footer-links a:focus-visible,
.footer-link-button:focus-visible {
  color: #fff;
}

.legal-main {
  padding: 5.5rem 0 6rem;
}

.legal-layout {
  width: min(920px, calc(100vw - 2.25rem));
  margin: 0 auto;
}

.legal-hero {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.legal-hero h1 {
  max-width: 760px;
  color: var(--primary-deep);
  font-size: clamp(2.7rem, 7vw, 5.2rem);
}

.legal-updated {
  color: var(--muted);
  font-weight: 700;
}

.legal-warning {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(224, 64, 192, 0.34);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.74);
  color: var(--primary-deep);
  box-shadow: 0 18px 50px rgba(74, 14, 144, 0.08);
}

.legal-warning strong {
  display: block;
  margin-bottom: 0.35rem;
}

.legal-section {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.legal-section h3 {
  margin: 1.2rem 0 0.55rem;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-section a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.legal-section p + p,
.legal-section ul + p,
.legal-section ol + p {
  margin-top: 0.9rem;
}

.legal-section ul,
.legal-section ol {
  display: grid;
  gap: 0.55rem;
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.legal-data-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.legal-data-list li {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) 1fr;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(140, 40, 230, 0.1);
}

.legal-data-list strong {
  color: var(--text);
}

.legal-table-wrap {
  width: 100%;
  margin-top: 1rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.64);
}

.legal-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 0.85rem;
  border-bottom: 1px solid rgba(140, 40, 230, 0.12);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.legal-table th {
  color: var(--text);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-table td {
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-consent {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__box {
  width: min(760px, 100%);
  border: 1px solid rgba(140, 40, 230, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(250, 245, 255, 0.96);
  box-shadow: 0 24px 80px rgba(15, 7, 34, 0.25);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.cookie-consent__content {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
}

.cookie-consent__eyebrow {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent h2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.cookie-consent p {
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-consent__actions,
.cookie-panel__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.cookie-button {
  border: 1px solid rgba(138, 40, 224, 0.18);
  border-radius: 999px;
  padding: 0.68rem 0.95rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-deep);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-button--primary {
  border-color: transparent;
  background: var(--primary);
  color: #fff;
}

.cookie-button--ghost {
  background: transparent;
}

.cookie-panel {
  display: grid;
  gap: 0.7rem;
  padding-top: 0.35rem;
}

.cookie-panel[hidden] {
  display: none;
}

.cookie-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.8rem;
  border: 1px solid rgba(140, 40, 230, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.cookie-toggle input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--primary);
}

.cookie-toggle small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-toggle--disabled {
  opacity: 0.82;
}

.cookie-panel__footer {
  justify-content: space-between;
}

.cookie-panel__footer a {
  color: var(--primary);
  font-weight: 800;
}

.hero .eyebrow,
.hero .eyebrow::before {
  color: var(--accent-soft);
}

.hero .eyebrow::before,
.gallery .eyebrow::before,
.cta .eyebrow::before {
  background: linear-gradient(90deg, rgba(240, 128, 216, 0.18), rgba(224, 64, 192, 0.95));
}

.hero .button--ghost {
  color: #faf5ff;
  border-color: rgba(250, 245, 255, 0.22);
  background: rgba(250, 245, 255, 0.08);
}

.hero .stat-card {
  background: linear-gradient(180deg, rgba(250, 245, 255, 0.1), rgba(250, 245, 255, 0.05));
  border-color: rgba(240, 128, 216, 0.22);
  backdrop-filter: blur(18px);
}

.hero .stat-card strong {
  color: var(--accent-soft);
}

.hero .stat-card span {
  color: rgba(240, 228, 255, 0.78);
}

.how-it-works {
  background:
    linear-gradient(180deg, rgba(250, 245, 255, 0.98), rgba(240, 228, 255, 0.5));
}

.steps-grid,
.trust-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

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

.step-card {
  padding: 1.5rem;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(224, 64, 192, 0.22);
}

.reveal {
  animation: fadeUp 700ms ease both;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0.6rem, 1.4rem, 0);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-0.45rem) scale(1.01);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .hero-grid,
  .benefits-layout,
  .gallery-layout,
  .about-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .gallery-copy h2,
  .about-copy h2,
  .cta-panel h2 {
    max-width: none;
  }

  .hero-visual {
    justify-items: stretch;
  }

  .photo-card--hero,
  .photo-card--tall {
    width: 100%;
    margin-right: 0;
  }

  .floating-note {
    position: static;
    max-width: none;
    order: -1;
  }

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

  .service-grid,
  .testimonial-grid,
  .contact-grid,
  .steps-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-media,
  .section-cta {
    grid-template-columns: 1fr;
  }

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

  .section-cta-actions {
    align-items: stretch;
  }
}

.whatsapp-fab {
  display: none;
}

@media (max-width: 720px) {
  .section {
    padding: 4.3rem 0;
  }

  .header-inner {
    min-height: 60px;
    padding: 0.5rem 0;
  }

  .brand-badge {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .whatsapp-fab {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    position: fixed;
    bottom: 1.4rem;
    right: 1.2rem;
    z-index: 100;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #4a0e90 0%, #8a28e0 72%, #e040c0 135%);
    box-shadow: 0 8px 32px rgba(74, 14, 144, 0.42), 0 2px 8px rgba(0,0,0,0.18);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .whatsapp-fab:hover,
  .whatsapp-fab:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(74, 14, 144, 0.52);
  }

  .whatsapp-fab svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: currentColor;
    flex-shrink: 0;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-actions,
  .stat-grid,
  .service-grid,
  .testimonial-grid,
  .contact-grid,
  .gallery-mosaic,
  .steps-grid,
  .trust-grid,
  .faq-grid,
  .evento-fotos,
  .evento-videos {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic .photo-card:first-child {
    grid-row: auto;
  }

  .section-cta-actions {
    width: 100%;
  }

  .section-cta-actions .button,
  .contact-card .button {
    width: 100%;
  }

  .about-media {
    grid-template-columns: 1fr;
  }

  .about-photo--accent {
    margin-bottom: 0;
  }

  .benefit-card,
  .service-card,
  .testimonial-card,
  .contact-card,
  .cta-panel,
  .step-card,
  .trust-card,
  .faq-item,
  .section-cta {
    padding: 1.2rem;
  }

  .benefits-conclusion {
    padding: 1.6rem 1.4rem 1.6rem 3rem;
  }

  .benefits-conclusion p {
    font-size: 1.1rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 0.8rem 1rem;
  }

  .legal-main {
    padding: 4rem 0 5rem;
  }

  .legal-data-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .cookie-consent {
    inset: auto 0.75rem 0.75rem;
  }

  .cookie-consent__actions,
  .cookie-panel__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-button,
  .cookie-panel__footer a {
    width: 100%;
    text-align: center;
  }

  .hero-grid {
    gap: 3rem;
  }

  .about-copy h2 {
    font-size: 1.75rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-visual {
    justify-items: center;
  }

  .hero-logo-img {
    width: min(18rem, 72%);
  }

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

  .testimonial-card {
    min-height: auto;
  }

  .gallery-layout {
    gap: 2.5rem;
  }

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

  .section-cta > div:first-child {
    text-align: left;
  }
}

.hero-subtitle {
  display: block;
  font-size: 0.58em;
  font-weight: 400;
  margin-top: 0.4em;
  opacity: 0.85;
}

.stats-final {
  background: linear-gradient(135deg, #0f0722 0%, #2d1060 48%, #0f0722 100%);
}

.stats-final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.stat-grid--final {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-logo-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-logo-img {
  width: min(36rem, 92%);
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 80px rgba(120, 40, 200, 0.55);
}

/* ── Announcement bar text ────────────────────────────────────────── */
.announcement-text {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.9;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .announcement-text {
    display: none;
  }
}

/* ── Evento section — dark cinematic ─────────────────────────────── */
.evento {
  background:
    radial-gradient(circle at 20% 30%, rgba(138, 40, 224, 0.18), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(224, 64, 192, 0.12), transparent 28%),
    linear-gradient(160deg, #0f0722 0%, #1a0840 48%, #0f0722 100%);
}

.evento-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.evento-header .eyebrow--light {
  color: var(--accent-soft);
}

.evento-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: #faf5ff;
  margin-bottom: 0.75rem;
}

.evento-lead {
  color: rgba(240, 228, 255, 0.76);
  font-size: 1.05rem;
}

.evento-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-self: flex-end;
  flex-shrink: 0;
}

.evento-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(224, 64, 192, 0.3);
  background: rgba(224, 64, 192, 0.1);
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* Featured photo — cinemascope */
.evento-featured {
  position: relative;
  margin: 0 0 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(224, 64, 192, 0.2);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset, 0 40px 100px rgba(74, 14, 144, 0.45);
}

.evento-featured img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.1) contrast(1.05) brightness(0.92);
}

.evento-featured figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.75rem 1.25rem;
  background: linear-gradient(to top, rgba(15, 7, 34, 0.88) 0%, transparent 100%);
  color: rgba(240, 228, 255, 0.88);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Mosaic 4 photos */
.evento-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.evento-mosaic__card {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 32px rgba(15, 7, 34, 0.5);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.evento-mosaic__card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 56px rgba(138, 40, 224, 0.35);
}

.evento-mosaic__card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
}

/* 4-video grid */
.evento-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(224, 64, 192, 0.18);
  box-shadow: 0 8px 32px rgba(15, 7, 34, 0.55);
  background: #0a0418;
  margin: 0;
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #0a0418;
}

/* ── Testimonios — dark premium ───────────────────────────────────── */
.testimonials {
  background:
    radial-gradient(circle at 15% 20%, rgba(138, 40, 224, 0.14), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(224, 64, 192, 0.1), transparent 26%),
    linear-gradient(160deg, #0f0722 0%, #1a0840 50%, #0f0722 100%);
}

.testimonials .section-heading .eyebrow {
  color: var(--accent-soft);
}

.testimonials .section-heading h2 {
  color: #faf5ff;
}

.testimonials .section-heading p {
  color: rgba(240, 228, 255, 0.7);
}

/* Hero testimonial */
.testimonial-hero {
  position: relative;
  margin: 0 0 2rem;
  padding: 3rem 3rem 2.5rem 4.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(224, 64, 192, 0.25);
  background:
    radial-gradient(circle at top right, rgba(224, 64, 192, 0.2), transparent 40%),
    linear-gradient(145deg, rgba(138, 40, 224, 0.18) 0%, rgba(15, 7, 34, 0.9) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset, 0 32px 80px rgba(74, 14, 144, 0.3);
  overflow: hidden;
}

.testimonial-hero::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
}

.testimonial-hero__mark {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  pointer-events: none;
}

.testimonial-hero blockquote {
  margin: 0 0 1.5rem;
}

.testimonial-hero blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: #faf5ff;
}

.testimonial-hero figcaption {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.testimonial-hero figcaption strong {
  color: #faf5ff;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.testimonial-tag {
  color: rgba(240, 228, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 500;
}

/* Stars */
.testimonial-stars {
  display: block;
  color: #f5c842;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.testimonial-hero figcaption .testimonial-stars {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Vídeos de testimonio */
.testimonial-videos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.testimonial-videos .video-card video {
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

/* Cards grid */
.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 2rem;
}

.testimonial-card {
  border: 1px solid rgba(224, 64, 192, 0.18);
  background:
    linear-gradient(160deg, rgba(138, 40, 224, 0.1) 0%, rgba(15, 7, 34, 0.85) 100%);
  backdrop-filter: blur(8px);
  border-top: 2px solid rgba(224, 64, 192, 0.5);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 16rem;
  box-shadow: 0 8px 32px rgba(15, 7, 34, 0.4);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(138, 40, 224, 0.28);
}

.testimonial-card .testimonial-stars {
  margin-bottom: 0;
}

.testimonial-card p {
  flex: 1;
  font-style: italic;
  line-height: 1.7;
  color: rgba(240, 228, 255, 0.88);
  font-size: 0.97rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(224, 64, 192, 0.15);
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  min-width: 2.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.testimonial-card .testimonial-author strong {
  display: block;
  color: #faf5ff;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

/* Responsive evento */
@media (max-width: 1060px) {
  .evento-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .evento-featured img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 720px) {
  .evento-featured img {
    aspect-ratio: 4 / 3;
    object-position: center center;
  }

  .evento-header {
    flex-direction: column;
    gap: 1.25rem;
  }

  .evento-meta {
    flex-direction: row;
    flex-wrap: wrap;
    align-self: flex-start;
  }

  .evento-mosaic {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .testimonial-hero {
    padding: 2rem 1.5rem 1.75rem 2rem;
  }

  .testimonial-hero__mark {
    font-size: 5rem;
    top: 0.5rem;
    left: 0.75rem;
  }

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

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

@media (max-width: 480px) {
  .testimonial-videos {
    grid-template-columns: 1fr;
  }
}
