/* ==============================================================
   Mulheres em Tech Rio Preto — folha de estilos
   Camada de apresentação: só visual, nada de lógica aqui.
   ============================================================== */

:root {
  --brand: #b92c62;
  --brand-strong: #8d1d49;
  --brand-soft: #fff0f5;
  --plum: #3b1029;
  --ink: #231923;
  --muted: #726773;
  --paper: #fffafc;
  --card: #ffffff;
  --line: #ecdce4;
  --yellow: #ffd166;
  --coral: #ff7b8b;
  --mint: #78d7bd;
  --blue: #77b8ff;
  --shadow: 0 2px 8px rgba(93, 25, 57, .05), 0 30px 70px -14px rgba(93, 25, 57, .24);
  --shadow-soft: 0 1px 3px rgba(93, 25, 57, .04), 0 14px 34px -10px rgba(93, 25, 57, .14);
  --shadow-lift: 0 6px 16px rgba(93, 25, 57, .1), 0 40px 90px -18px rgba(93, 25, 57, .32);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

[data-theme="dark"] {
  --ink: #fff7fb;
  --muted: #cbb9c3;
  --paper: #1c1118;
  --card: #271720;
  --line: #49313d;
  --brand-soft: #341a27;
  --plum: #fff2f8;
  --shadow: 0 2px 8px rgba(0, 0, 0, .28), 0 30px 70px -14px rgba(0, 0, 0, .55);
  --shadow-soft: 0 1px 3px rgba(0, 0, 0, .22), 0 14px 34px -10px rgba(0, 0, 0, .4);
  --shadow-lift: 0 6px 16px rgba(0, 0, 0, .32), 0 40px 90px -18px rgba(0, 0, 0, .65);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 209, 102, .22), transparent 18rem),
    radial-gradient(circle at 94% 12%, rgba(185, 44, 98, .12), transparent 24rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  min-height: 100vh;
}

button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  background: var(--plum); color: var(--paper); padding: 10px 16px; border-radius: 12px;
}
.skip-link:focus { top: 16px; }

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 48px; height: 48px; border-radius: 15px; overflow: hidden;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy strong { display: block; font-size: .99rem; letter-spacing: -.02em; }
.brand-copy span { display: block; color: var(--muted); font-size: .72rem; }

nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 13px;
  cursor: pointer;
  font-weight: 700;
  font-size: .9rem;
  transition: .2s ease;
}
.nav-link:hover, .nav-link.active { background: var(--brand-soft); color: var(--brand); }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn, .menu-btn {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 14px;
  color: var(--ink); background: var(--card); cursor: pointer; display: grid; place-items: center;
  transition: transform .2s ease, border-color .2s ease;
}
.icon-btn:hover, .menu-btn:hover { transform: translateY(-2px); border-color: var(--brand); }
.theme-mark { width: 16px; height: 16px; border: 2px solid currentColor; border-radius: 50%; background: linear-gradient(90deg, currentColor 50%, transparent 50%); }
.menu-btn { display: none; }

.btn {
  border: 0;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-2px); filter: saturate(1.08); }
.btn:active { transform: translateY(0) scale(.96); transition-duration: .08s; }
.btn-primary { background: linear-gradient(135deg, var(--brand), #df477d); color: white; box-shadow: 0 12px 26px rgba(185,44,98,.28); }
.btn-secondary { background: var(--card); color: var(--brand); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.btn-dark { background: var(--plum); color: var(--paper); }
[data-theme="dark"] .btn-dark { background: #f7dce8; color: #321326; }
.btn-sm { min-height: 40px; padding-inline: 15px; font-size: .86rem; }

.icon-btn:active, .menu-btn:active, .filter-btn:active { transform: scale(.94); }
.nav-link { transition: background-color .2s ease, color .2s ease, transform .15s ease; }
.nav-link:active { transform: scale(.96); }

main { min-height: 70vh; }
.page { display: none; animation: enter .38s ease both; }
.page.active { display: block; }
@keyframes enter { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.hero { padding: 82px 0 54px; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 60px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand); font-weight: 900; font-size: .8rem; text-transform: uppercase; letter-spacing: .13em;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 24px; height: 4px; border-radius: 999px; background: var(--brand); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.3rem); line-height: .94; letter-spacing: -.065em; margin-bottom: 22px; }
h1 .accent { color: var(--brand); position: relative; display: inline-block; }
h1 .accent::after {
  content: ""; position: absolute; left: 5%; right: 2%; bottom: -4px; height: 13px;
  background: var(--yellow); border-radius: 50%; z-index: -1; transform: rotate(-2deg); opacity: .85;
}
.hero-copy > p { color: var(--muted); max-width: 650px; font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 30px; }
.trust-row { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: .86rem; }
.mini-avatars { display: flex; }
.mini-avatar {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-weight: 900; font-size: .75rem; border: 3px solid var(--paper); margin-left: -9px;
}
.mini-avatar:first-child { margin-left: 0; }

.hero-art { position: relative; min-height: 520px; }
.blob {
  position: absolute; inset: 30px 10px 20px 30px; border-radius: 42% 58% 58% 42% / 47% 42% 58% 53%;
  background: linear-gradient(145deg, #ffcada, #f6e0aa 80%); transform: rotate(-3deg);
}
[data-theme="dark"] .blob { background: linear-gradient(145deg, #5b2440, #554521 80%); }
.event-poster {
  position: absolute; inset: 55px 45px 30px 72px; background: var(--card); border: 1px solid var(--line);
  border-radius: 34px; box-shadow: var(--shadow); padding: 28px; transform: rotate(2deg);
  overflow: hidden;
}
.poster-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.poster-tag { background: var(--brand-soft); color: var(--brand); padding: 7px 11px; border-radius: 999px; font-weight: 900; font-size: .72rem; }
.poster-spark { font-size: 1.7rem; }
.poster-title { font-size: clamp(2.1rem, 4vw, 3.55rem); line-height: .95; letter-spacing: -.06em; margin: 42px 0 18px; }
.poster-title span { color: var(--brand); }
.poster-info { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 25px; }
.poster-info div { padding: 13px; border-radius: 16px; background: var(--brand-soft); }
.poster-info small { display: block; color: var(--muted); font-size: .7rem; }
.poster-info strong { display: block; font-size: .88rem; margin-top: 3px; }
.poster-orbit {
  width: 155px; height: 155px; border-radius: 50%; border: 18px solid var(--brand); opacity: .13;
  position: absolute; right: -60px; bottom: -48px;
}
.floating-card {
  position: absolute; background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-soft); padding: 14px 16px; font-weight: 800; font-size: .83rem;
  animation: none;
}
.floating-card.one { left: 0; top: 10px; transform: rotate(-5deg); }
.floating-card.two { right: 0; bottom: 38px; transform: rotate(5deg); }

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: color-mix(in srgb, var(--brand-soft) 70%, transparent); border-block: 1px solid var(--line); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.section-head > div:first-child { max-width: 720px; }
h2 { font-size: clamp(2.15rem, 4vw, 4rem); line-height: 1; letter-spacing: -.05em; margin-bottom: 14px; }
.section-head p, .lead { color: var(--muted); font-size: 1.03rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 23px; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat strong { display: block; color: var(--brand); font-size: 2.15rem; letter-spacing: -.05em; line-height: 1; }
.stat span { color: var(--muted); font-size: .86rem; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-soft); transition: .25s ease; }
.feature-card:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: var(--shadow-lift); }
.feature-icon { width: 52px; height: 52px; border-radius: 18px; display: grid; place-items: center; font-size: 1.45rem; margin-bottom: 20px; box-shadow: 0 10px 22px -10px rgba(93,25,57,.35); }
.feature-card:nth-child(1) .feature-icon { background: #ffe3ee; }
.feature-card:nth-child(2) .feature-icon { background: #fff0c7; }
.feature-card:nth-child(3) .feature-icon { background: #dff9f1; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature-card p { color: var(--muted); margin: 0; }

.event-highlight {
  position: relative; overflow: hidden; display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px;
  padding: 34px; border-radius: 36px; color: white;
  background: linear-gradient(135deg, #42102f, var(--brand) 58%, #e95b83);
  box-shadow: var(--shadow);
}
.event-highlight::after { content: ""; width: 300px; height: 300px; position: absolute; right: -100px; top: -100px; border: 45px solid rgba(255,255,255,.11); border-radius: 50%; }
.event-highlight p { color: rgba(255,255,255,.76); }
.event-highlight .btn-secondary { border: 0; }
.event-meta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; align-self: center; z-index: 1; }
.event-meta { padding: 18px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 20px; backdrop-filter: blur(10px); }
.event-meta small { display: block; opacity: .7; }
.event-meta strong { display: block; font-size: 1.03rem; margin-top: 4px; }

.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 22px 0 26px; max-width: 450px; }
.count-box { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); border-radius: 15px; padding: 10px; text-align: center; }
.count-box b { display: block; font-size: 1.5rem; }
.count-box span { font-size: .67rem; text-transform: uppercase; opacity: .7; letter-spacing: .08em; }

.quotes { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.quote-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.quote-card blockquote { font-size: 1.27rem; margin: 0 0 20px; letter-spacing: -.025em; }
.quote-author { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .88rem; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: white; font-weight: 900; background: linear-gradient(135deg, var(--brand), var(--coral)); }

.page-hero { padding: 70px 0 36px; }
.page-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.2rem); }
.breadcrumb { color: var(--brand); font-weight: 850; font-size: .82rem; margin-bottom: 12px; }

.toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.search-wrap { position: relative; flex: 1 1 280px; max-width: 520px; }
.search-wrap input {
  width: 100%; border: 1px solid var(--line); background: var(--card); color: var(--ink);
  border-radius: 999px; padding: 13px 18px 13px 43px; outline: none;
}
.search-wrap svg { position: absolute; left: 16px; top: 50%; translate: 0 -50%; color: var(--muted); }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { border: 1px solid var(--line); background: var(--card); color: var(--muted); border-radius: 999px; padding: 9px 13px; cursor: pointer; font-weight: 800; font-size: .8rem; transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease; }
.filter-btn.active { background: var(--brand); color: white; border-color: var(--brand); }

.event-list { display: grid; gap: 20px; }
.event-card { display: grid; grid-template-columns: 160px 1fr auto; gap: 22px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 26%, var(--line)); }
.date-block { height: 126px; border-radius: 23px; display: grid; place-items: center; text-align: center; color: white; background: linear-gradient(145deg, var(--brand), #e45383); position: relative; overflow: hidden; }
.date-block.has-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.date-block.has-photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,8,15,.08), rgba(20,8,15,.68)); z-index: 1; }
.date-block.has-photo > div { position: relative; z-index: 2; }
.date-block b { font-size: 2.4rem; line-height: .9; }
.date-block span { text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; }
.date-block-zoom { position: absolute; inset: 0; z-index: 3; border: 0; padding: 0; margin: 0; background: transparent; cursor: zoom-in; width: 100%; height: 100%; }
.date-block-zoom::after { content: "🔍"; position: absolute; bottom: 8px; right: 8px; width: 26px; height: 26px; border-radius: 50%; background: rgba(0,0,0,.45); backdrop-filter: blur(3px); display: grid; place-items: center; font-size: .8rem; opacity: 0; transition: opacity .2s ease; }
.date-block-zoom:hover::after, .date-block-zoom:focus-visible::after { opacity: 1; }
.event-card h3 { font-size: 1.45rem; margin-bottom: 7px; }
.event-card p { color: var(--muted); margin-bottom: 10px; }
.meta-inline { display: flex; flex-wrap: wrap; gap: 13px; color: var(--muted); font-size: .82rem; }
.status { display: inline-flex; align-items: center; gap: 7px; color: var(--brand); font-weight: 900; font-size: .78rem; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 15%, transparent); }

.schedule { display: grid; gap: 12px; }
.schedule-item { display: grid; grid-template-columns: 92px 1fr auto; gap: 18px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 18px; }
.schedule-time { color: var(--brand); font-weight: 950; }
.schedule--talks .schedule-item { grid-template-columns: 118px 1fr auto; }
@media (max-width: 520px) { .schedule--talks .schedule-item { grid-template-columns: 1fr; gap: 5px; } }
.schedule-item h3 { margin: 0 0 4px; font-size: 1.03rem; }
.schedule-item p { margin: 0; color: var(--muted); font-size: .86rem; }
.track { border-radius: 999px; padding: 7px 10px; background: var(--brand-soft); color: var(--brand); font-weight: 850; font-size: .72rem; white-space: nowrap; }

.calendar { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-soft); }
.calendar-head { font-size: 1.35rem; font-weight: 900; margin-bottom: 18px; }
.calendar-head { position: relative; min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 18px; padding-inline: 190px; }
.calendar-head-add { position: absolute; right: 0; top: 0; min-height: 42px; display: inline-flex; align-items: center; gap: 7px; border: 0; border-radius: 999px; padding: 8px 15px; background: var(--brand); color: #fff; font: inherit; font-size: .8rem; cursor: pointer; }
.calendar-head-add span { font-size: 1.35rem; line-height: 1; }
.event-submit-form { margin: 22px 0; }
.community-event-photo { width: min(100%, 420px); max-height: 280px; object-fit: cover; border-radius: 18px; margin-bottom: 16px; }
.community-event-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.btn-danger { background: transparent; color: #e05273; border: 1px solid #e05273; }
.btn-danger:hover { background: #e05273; color: #fff; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }
.calendar-weekdays { margin-bottom: 7px; color: var(--muted); font-size: .74rem; font-weight: 850; text-transform: uppercase; text-align: center; letter-spacing: .03em; }
.calendar-cell { min-height: 88px; border: 1px solid var(--line); border-radius: 13px; padding: 7px; display: flex; flex-direction: column; gap: 4px; font-size: .72rem; background: var(--paper); }
.calendar-cell.is-empty { border-color: transparent; background: transparent; }
.calendar-day-number { font-weight: 850; font-size: .84rem; }
.calendar-cell.has-event { cursor: pointer; padding: 8px; text-align: left; font: inherit; color: inherit; border: 1px solid color-mix(in srgb, var(--brand) 40%, var(--line)); background: var(--brand-soft); transition: transform .15s ease, border-color .15s ease; }
.calendar-cell.has-event:hover, .calendar-cell.has-event:focus-visible { transform: translateY(-2px); border-color: var(--brand); }
.calendar-tag { border-radius: 6px; padding: 2px 6px; font-weight: 800; line-height: 1.25; }
.calendar-tag-event { background: var(--brand); color: #fff; }
.calendar-tag-holiday { background: var(--yellow); color: #3a2511; }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 16px; font-size: .82rem; color: var(--muted); }
.calendar-legend span { display: inline-flex; align-items: center; }
.calendar-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 7px; }
.calendar-dot-event { background: var(--brand); }
.calendar-dot-holiday { background: var(--yellow); }

.agenda-events { display: grid; gap: 14px; margin-top: 30px; }
.agenda-event { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-soft); transition: border-color .2s ease; }
.agenda-event.open { border-color: color-mix(in srgb, var(--brand) 32%, var(--line)); }
.agenda-event-summary { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px; background: transparent; border: 0; cursor: pointer; text-align: left; font: inherit; color: inherit; }
.agenda-event-summary h3 { margin: 0 0 4px; font-size: 1.15rem; }
.agenda-event-summary .agenda-event-date { display: block; color: var(--brand); font-weight: 850; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.agenda-event-summary p { margin: 0; color: var(--muted); font-size: .86rem; }
.agenda-event-plus { flex: 0 0 auto; transition: transform .2s ease; color: var(--brand); font-weight: 900; font-size: 1.2rem; }
.agenda-event.open .agenda-event-plus { transform: rotate(45deg); }
.agenda-event-detail { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.agenda-event-detail > div { overflow: hidden; padding: 0 20px 22px; }
.agenda-event.open .agenda-event-detail { grid-template-rows: 1fr; }
.agenda-event-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: .84rem; margin-bottom: 16px; }

@media (max-width: 760px) {
  .calendar-head { justify-content: flex-start; padding-inline: 0 54px; gap: 10px; }
  .calendar-head-add { width: 44px; padding: 0; justify-content: center; }
  .calendar-head-add strong { display: none; }
  .calendar { padding: 18px; }
  .calendar-cell { min-height: 56px; font-size: .64rem; padding: 5px; }
  .calendar-tag { display: none; }
  .calendar-cell.has-event { position: relative; }
  .calendar-cell.has-event::after { content: ""; position: absolute; bottom: 6px; left: 50%; translate: -50% 0; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
  .calendar-cell.has-holiday::before { content: ""; position: absolute; top: 6px; right: 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); }
}

.link-btn { border: 0; padding: 0; color: var(--brand); font-weight: 900; cursor: pointer; background: transparent; }

.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.insta-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.insta-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: color-mix(in srgb, var(--brand) 26%, var(--line)); }
.insta-cover {
  position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center; color: #fff; overflow: hidden;
  background: radial-gradient(circle at 30% 110%, #fdf497, #fdf497 8%, #fd5949 42%, #d6249f 62%, #285aeb 92%);
  border: 0; padding: 0; width: 100%; font: inherit; cursor: default;
}
.insta-cover.has-photo { cursor: zoom-in; }
.insta-cover.has-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.insta-cover.has-photo svg { display: none; }
.insta-cover.has-photo::after { content: "🔍"; position: absolute; bottom: 10px; right: 10px; width: 30px; height: 30px; border-radius: 50%; background: rgba(0,0,0,.45); backdrop-filter: blur(4px); display: grid; place-items: center; font-size: .85rem; opacity: 0; transition: opacity .2s ease; z-index: 2; }
.insta-cover.has-photo:hover::after, .insta-cover.has-photo:focus-visible::after { opacity: 1; }
.insta-cover.has-photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,8,15,0), rgba(20,8,15,.32)); z-index: 1; }
.insta-badge { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,.35); backdrop-filter: blur(4px); color: #fff; font-size: .68rem; font-weight: 800; padding: 4px 9px; border-radius: 999px; letter-spacing: .02em; z-index: 2; }
.insta-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.insta-date { color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.insta-body p { margin: 0; font-size: .87rem; color: var(--ink); line-height: 1.45; flex: 1; }
.insta-link { color: var(--brand); font-weight: 800; font-size: .82rem; }
.post-meta { display: flex; justify-content: space-between; gap: 10px; color: var(--muted); font-size: .76rem; }

.lightbox {
  position: fixed; inset: 0; z-index: 1500; display: grid; place-items: center; background: rgba(10,4,8,.86); padding: 30px;
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility 0s linear .25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; transition: opacity .25s ease; }
.lightbox-img { max-width: min(92vw, 900px); max-height: 88vh; border-radius: 16px; box-shadow: var(--shadow-lift); display: block; transform: scale(.95); transition: transform .25s ease; }
.lightbox.is-open .lightbox-img { transform: scale(1); }
.lightbox-close { position: fixed; top: 20px; right: 24px; width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 1.2rem; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.lightbox-close:hover { background: rgba(255,255,255,.26); }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.sticky-note { position: sticky; top: 115px; padding: 30px; border-radius: 32px; background: linear-gradient(145deg, var(--yellow), #ffea9e); color: #3a2511; transform: rotate(-1deg); box-shadow: var(--shadow); }
.sticky-note::before { content: ""; position: absolute; width: 66px; height: 18px; top: -8px; left: 50%; transform: translateX(-50%) rotate(2deg); background: rgba(255,255,255,.55); }
.check-list { display: grid; gap: 12px; margin-top: 22px; }
.check-item { display: flex; gap: 11px; align-items: flex-start; }
.check-item span:first-child { width: 26px; height: 26px; border-radius: 9px; display: grid; place-items: center; background: rgba(185,44,98,.12); color: var(--brand); font-weight: 950; flex: 0 0 auto; }

.team-section + .team-section { margin-top: 48px; }
.team-title { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.team-title span { width: 34px; height: 34px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-soft); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.person-mini {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 18px;
  display: flex; align-items: flex-start; gap: 13px; height: 100%; box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.person-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 32%, var(--line)); }
.person-mini .avatar { width: 44px; height: 44px; font-size: .78rem; flex: 0 0 auto; color: white; }
img.avatar { object-fit: cover; background: var(--brand-soft); box-shadow: 0 0 0 2px var(--brand-soft), 0 0 0 3px var(--brand); }
.person-info { min-width: 0; }
.person-mini strong { display: block; font-size: .94rem; line-height: 1.25; }
.person-role { display: block; color: var(--brand); font-size: .72rem; font-weight: 900; margin-top: 3px; }
.person-description { margin: 9px 0 0; color: var(--muted); font-size: .79rem; line-height: 1.55; }
.person-contact { margin: 9px 0 0; display: flex; flex-direction: column; gap: 2px; font-size: .79rem; }
.person-contact a { color: var(--brand); font-weight: 700; text-decoration: none; }
.person-contact a:hover { text-decoration: underline; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; }
.contact-card, .form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-soft); }
.contact-options { display: grid; gap: 12px; margin-top: 22px; }
.contact-option { display: flex; gap: 13px; align-items: center; border: 1px solid var(--line); border-radius: 17px; padding: 14px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.contact-option:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: color-mix(in srgb, var(--brand) 26%, var(--line)); }
.contact-option .feature-icon { width: 44px; height: 44px; margin: 0; border-radius: 14px; flex: 0 0 auto; color: #fff; }
.icon-whatsapp { background: #25d366; }
.icon-instagram { background: radial-gradient(circle at 30% 110%, #fdf497, #fdf497 8%, #fd5949 42%, #d6249f 62%, #285aeb 92%); }
.icon-linkedin { background: #0a66c2; }
.contact-option strong { display: block; }
.contact-option span { display: block; color: var(--muted); font-size: .8rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 850; font-size: .82rem; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 15px; padding: 12px 14px;
  background: var(--paper); color: var(--ink); outline: none;
}
.field textarea { min-height: 125px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 12%, transparent); }

.faq { display: grid; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 17px 18px; }
.faq-q { margin: 0 0 6px; color: var(--ink); font-weight: 900; }
.faq-answer { color: var(--muted); }

.newsletter { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 34px; border-radius: 32px; background: linear-gradient(135deg, var(--brand-soft), color-mix(in srgb, var(--yellow) 32%, var(--card))); border: 1px solid var(--line); }
.newsletter-form { display: flex; gap: 8px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 5px; min-width: 390px; }
.newsletter-form input { border: 0; background: transparent; color: var(--ink); outline: none; flex: 1; padding: 0 12px; min-width: 0; }

footer { margin-top: 70px; background: #301020; color: #fff7fb; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, .6fr); gap: 34px; }
footer .brand-copy span, footer p, footer a { color: rgba(255,255,255,.66); }
footer a:hover { color: white; }
.footer-col { display: grid; align-content: start; gap: 10px; }
.footer-col strong { margin-bottom: 4px; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.55); font-size: .78rem; }

.toast { position: fixed; left: 50%; bottom: 24px; translate: -50% 30px; z-index: 4000; opacity: 0; pointer-events: none; background: var(--plum); color: var(--paper); padding: 13px 18px; border-radius: 999px; box-shadow: var(--shadow); font-weight: 800; transition: .25s ease; }
.toast.show { opacity: 1; translate: -50% 0; }

.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 1200; width: 56px; height: 56px; border-radius: 20px; display: grid; place-items: center; background: #25d366; color: white; box-shadow: 0 14px 32px rgba(37,211,102,.27); transition: .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) rotate(-3deg); }

.empty-state { padding: 42px; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; color: var(--muted); }

@media (max-width: 1020px) {
  nav {
    position: fixed; left: 16px; right: 16px; top: 88px; background: var(--card); border: 1px solid var(--line);
    border-radius: 22px; padding: 10px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch;
    opacity: 0; visibility: hidden; transform: translateY(-10px); pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  }
  nav.open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition: opacity .22s ease, transform .22s ease; }
  .nav-link { text-align: left; }
  .menu-btn { display: grid; }
  .nav-cta { display: none; }
  .hero-grid, .about-grid, .contact-layout, .event-highlight, .quotes { grid-template-columns: 1fr; }
  .hero-art { min-height: 480px; max-width: 650px; width: 100%; margin-inline: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sticky-note { position: static; }
}

@media (max-width: 760px) {
  .brand-copy span { display: none; }
  .nav-wrap { min-height: 70px; }
  .brand-mark { width: 43px; height: 43px; }
  .hero { padding-top: 58px; }
  .hero-grid { gap: 28px; }
  .hero-art { min-height: 430px; }
  .event-poster { inset: 42px 25px 34px 32px; padding: 22px; }
  .floating-card.two { right: 4px; }
  .section { padding: 62px 0; }
  .section-head, .page-hero-grid { display: block; }
  .section-head .btn { margin-top: 12px; }
  .cards-3, .insta-grid { grid-template-columns: 1fr 1fr; }
  .event-card { grid-template-columns: 105px 1fr; }
  .event-card > .btn { grid-column: 1 / -1; width: 100%; }
  .date-block { height: 106px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .schedule-item { grid-template-columns: 72px 1fr; }
  .schedule-item .track { grid-column: 2; justify-self: start; }
  .newsletter { grid-template-columns: 1fr; }
  .newsletter-form { min-width: 0; width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .brand-copy strong { font-size: .87rem; }
  .icon-btn { display: none; }
  h1 { font-size: 2.75rem; margin-bottom: 18px; }
  .hero { padding-top: 46px; }
  .hero-copy > p { font-size: 1.02rem; }
  .hero-actions { gap: 14px; margin: 26px 0 32px; }
  .hero-art { min-height: 385px; margin-top: 8px; }
  .event-poster { inset: 35px 12px 28px 17px; }
  .poster-title { margin-top: 28px; }
  .poster-info { grid-template-columns: 1fr; }
  .poster-info div:nth-child(2) { display: none; }
  .floating-card { font-size: .72rem; }
  .floating-card.one { left: 6px; }
  .stats, .cards-3, .insta-grid, .team-grid { grid-template-columns: 1fr; gap: 14px; }
  .section { padding: 50px 0; }
  .section-sm { padding: 42px 0; }
  .section-head { margin-bottom: 26px; }
  .event-highlight, .contact-card, .form-card { padding: 24px; }
  .event-meta-grid { grid-template-columns: 1fr; gap: 10px; }
  .event-card { grid-template-columns: 1fr; padding: 18px; gap: 16px; }
  .date-block { height: 90px; display: flex; gap: 8px; }
  .schedule-item { grid-template-columns: 1fr; gap: 5px; }
  .schedule-item .track { grid-column: 1; }
  .newsletter { padding: 24px; }
  .newsletter-form { display: grid; border-radius: 18px; background: transparent; border: 0; padding: 0; }
  .newsletter-form input { min-height: 46px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { display: flex; flex-direction: column; gap: 6px; }
  .whatsapp-float { width: 50px; height: 50px; right: 14px; bottom: 14px; }
}

/* ---------- Animações de entrada ao rolar a página ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal-visible { opacity: 1; transform: none; }

/* Reduz/desliga animação pra quem pediu isso no sistema operacional */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Conexão Miami: arte original e apresentação da convidada. */
.miami-poster{position:relative;z-index:1;width:100%;max-width:440px;margin:auto;border-radius:24px;overflow:hidden;background:var(--surface,#fff);box-shadow:0 24px 64px rgba(122,24,61,.2)}
.miami-poster>img{display:block;width:100%;height:auto}.miami-status{display:block;padding:13px 18px;background:#70203f;color:#fff;text-align:center;font-size:.78rem;font-weight:700;letter-spacing:.04em}.miami-speaker{padding:22px}.miami-speaker h3{margin:8px 0;font-size:1.4rem}.miami-speaker a{color:inherit;text-decoration:none}.miami-speaker a:hover{text-decoration:underline}.miami-speaker p{font-size:.95rem;margin:8px 0;line-height:1.6}.miami-bonus{padding:16px 20px;border-left:3px solid #dc82a4;background:rgba(220,130,164,.12);border-radius:0 12px 12px 0;line-height:1.6}.miami-agenda-art{display:block;width:100%;max-width:360px;height:auto;border-radius:18px;margin:0 0 24px}
.miami-poster{background:var(--card)} .hero-art:has(.miami-poster) .floating-card{display:none}
