:root {
  --navy-950: #12051f;
  --navy-900: #1b082e;
  --navy-800: #381468;
  --navy-700: #53258b;
  --teal-600: #5b2695;
  --teal-400: #a486d4;
  --ice-100: #eee8f7;
  --ice-50: #f8f5fb;
  --coral-500: #c3a6f5;
  --coral-300: #dccbf8;
  --ink: #28163a;
  --muted: #6c6077;
  --white: #ffffff;
  --line: rgba(56, 20, 104, 0.14);
  --shadow: 0 24px 70px rgba(34, 10, 60, 0.13);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h2 { margin-bottom: 0; font-size: clamp(2.25rem, 4.8vw, 4.65rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 110px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-150%); background: var(--white); padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  margin-bottom: 22px;
  color: var(--teal-600);
  font-family: "Manrope", sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--coral-300); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header.scrolled { color: var(--ink); background: rgba(255,255,255,.94); box-shadow: 0 8px 30px rgba(5,26,38,.08); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { height: 58px; display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { width: 190px; height: 58px; display: block; object-fit: cover; object-position: center; }
.brand-logo-purple { display: none; }
.site-header.scrolled .brand-logo-white { display: none; }
.site-header.scrolled .brand-logo-purple { display: block; }
.main-nav { display: flex; align-items: center; gap: 30px; font-family: "Manrope", sans-serif; font-size: .9rem; font-weight: 700; }
.main-nav a { text-decoration: none; }
.main-nav a:not(.nav-cta) { opacity: .86; }
.main-nav a:not(.nav-cta):hover { opacity: 1; }
.nav-cta { padding: 12px 18px; border-radius: 999px; color: var(--navy-950); background: var(--white); }
.site-header.scrolled .nav-cta { color: var(--white); background: var(--navy-800); }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: currentColor; transition: transform .25s ease, opacity .25s ease; }

.hero { position: relative; overflow: hidden; color: var(--white); background: var(--navy-950); }
.hero-media { position: relative; width: 100%; height: clamp(520px, 50vw, 680px); overflow: hidden; background: var(--navy-900); }
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 43%; filter: saturate(.92) contrast(1.03); }
.hero-overlay { pointer-events: none; background: linear-gradient(180deg, rgba(18,5,31,.28) 0%, transparent 23%, transparent 70%, rgba(18,5,31,.52) 100%); }
.hero-content { position: relative; z-index: 1; padding-top: 58px; padding-bottom: 68px; display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(320px, .84fr); gap: 76px; align-items: end; }
.hero h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(3rem, 5.4vw, 5.4rem); font-weight: 700; }
.hero h1 em { color: var(--coral-300); font-style: normal; }
.hero-lead { max-width: 600px; margin-bottom: 34px; color: rgba(255,255,255,.77); font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-family: "Manrope", sans-serif; font-weight: 800; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-coral { color: var(--navy-950); background: var(--coral-500); }
.button-coral:hover { background: #d9c6fa; }
.button-ghost { border-color: rgba(255,255,255,.32); color: var(--white); background: rgba(255,255,255,.06); }
.button-ghost:hover { background: rgba(255,255,255,.14); }
.hero-highlights { width: 100%; margin: 0; padding: 0 0 0 28px; border-left: 1px solid rgba(255,255,255,.18); display: grid; gap: 20px; list-style: none; }
.hero-highlights li { padding-left: 14px; border-left: 2px solid var(--coral-500); }
.hero-highlights strong, .hero-highlights span { display: block; }
.hero-highlights strong { margin-bottom: 4px; font-family: "Manrope", sans-serif; }
.hero-highlights span { color: rgba(255,255,255,.6); font-size: .9rem; }

.intro { background: var(--ice-50); }
.intro-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 110px; align-items: end; }
.intro-copy { font-size: 1.18rem; color: var(--muted); }
.intro-copy p { margin-bottom: 30px; }
.text-link, .card-link { color: var(--teal-600); font-family: "Manrope", sans-serif; font-size: .94rem; font-weight: 800; text-decoration: none; }

.formation { background: var(--white); }
.section-heading { margin-bottom: 54px; display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: end; }
.section-heading > p { margin-bottom: 4px; color: var(--muted); font-size: 1.05rem; }
.cards-grid { display: grid; grid-template-columns: 1.16fr .84fr; gap: 22px; }
.feature-card { min-height: 490px; padding: 36px; border-radius: var(--radius-lg); display: flex; flex-direction: column; justify-content: space-between; color: var(--white); background: var(--navy-800); overflow: hidden; position: relative; }
.feature-card::after { content: ""; position: absolute; width: 260px; height: 260px; right: -90px; top: -80px; border: 52px solid rgba(255,255,255,.055); border-radius: 50%; }
.feature-card-large { background: linear-gradient(140deg, var(--navy-800), #6b35a3); }
.mentorship-card { color: var(--navy-950); background: var(--coral-300); }
.feature-card > * { position: relative; z-index: 1; }
.card-number { width: 52px; height: 52px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; font-family: "Manrope", sans-serif; font-size: .85rem; font-weight: 800; opacity: .75; }
.card-kicker { margin-bottom: 14px; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; opacity: .7; }
.feature-card h3 { max-width: 560px; margin-bottom: 18px; font-size: clamp(2rem, 3.5vw, 3.4rem); }
.feature-card p:not(.card-kicker) { max-width: 590px; color: rgba(255,255,255,.73); }
.mentorship-card p:not(.card-kicker) { color: rgba(4,21,35,.7); }
.feature-card .card-link { display: inline-block; margin-top: 26px; color: inherit; }
.program-overview { margin-top: 22px; padding: clamp(30px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius-lg); display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; background: var(--ice-50); }
.program-overview h3 { max-width: 480px; margin-bottom: 0; color: var(--navy-800); font-size: clamp(1.8rem, 3vw, 2.7rem); }
.program-overview ul { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; list-style: none; }
.program-overview li { position: relative; padding: 13px 14px 13px 34px; border-radius: 14px; color: var(--navy-800); background: var(--white); font-weight: 700; }
.program-overview li::before { content: ""; position: absolute; left: 16px; top: 1.35em; width: 7px; height: 7px; border-radius: 50%; background: var(--coral-500); }

.pod-section { padding: 110px 0; color: var(--white); background: var(--navy-950); overflow: hidden; }
.pod-grid { min-height: 460px; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.pod-artwork { position: relative; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); background: var(--navy-800); box-shadow: 0 30px 90px rgba(0,0,0,.3); transform: rotate(-1.5deg); }
.pod-artwork::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,5,31,.72), transparent 42%); pointer-events: none; }
.pod-artwork img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.pod-artwork figcaption { position: absolute; z-index: 1; left: 24px; bottom: 20px; color: var(--white); font-family: "Manrope", sans-serif; font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.pod-copy h2 { margin-bottom: 24px; font-size: clamp(3.2rem, 6vw, 6rem); }
.pod-copy > p:not(.eyebrow) { max-width: 600px; margin-bottom: 24px; color: rgba(255,255,255,.78); font-size: 1.12rem; }
.pod-seasons { max-width: 640px; margin-bottom: 30px; display: grid; gap: 12px; }
.pod-seasons p { margin: 0; color: rgba(255,255,255,.68); font-size: .96rem; }
.pod-seasons strong { display: block; margin-bottom: 3px; color: var(--white); font-family: "Manrope", sans-serif; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.pod-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button-light { color: var(--navy-950); background: var(--white); }

.team-section { background: var(--ice-50); }
.team-photos { margin-bottom: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.team-photo { position: relative; height: 360px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--navy-900); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-main { grid-column: 1 / -1; height: 540px; }
.team-photo-main img { object-position: center 43%; }
.team-photo-secondary img { object-position: center; }
.team-photo-coordination { grid-column: 1 / -1; height: 470px; }
.team-photo-main::after, .team-photo-coordination::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,5,31,.72), transparent 45%); }
.team-photo figcaption { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 26px; color: var(--white); }
.team-photo figcaption span, .team-photo figcaption strong { display: block; }
.team-photo figcaption span { margin-bottom: 5px; color: var(--coral-300); font-size: .73rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.team-photo figcaption strong { max-width: 470px; font-family: "Manrope", sans-serif; font-size: 1.35rem; line-height: 1.3; }
.faculty-list { margin-top: 24px; display: grid; gap: 24px; }
.faculty-profile { display: grid; grid-template-columns: minmax(280px, .7fr) 1.3fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.faculty-profile-reverse { grid-template-columns: 1.3fr minmax(280px, .7fr); }
.faculty-profile-reverse .faculty-photo { order: 2; }
.faculty-profile-reverse .faculty-content { order: 1; }
.faculty-photo { min-height: 600px; background: var(--navy-900); }
.faculty-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.faculty-photo-bruna img { object-position: center 18%; }
.faculty-content { padding: clamp(36px, 5vw, 68px); align-self: center; }
.faculty-role { margin-bottom: 14px; color: var(--teal-600); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.faculty-content h3 { margin-bottom: 20px; font-size: clamp(2.5rem, 4.6vw, 4.5rem); color: var(--navy-800); }
.faculty-nickname { display: block; margin-top: 8px; color: var(--teal-600); font-size: .38em; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.faculty-lead { max-width: 650px; margin-bottom: 28px; color: var(--muted); font-size: 1.1rem; }
.faculty-highlights { margin: 0 0 28px; padding: 0; list-style: none; display: grid; gap: 10px; }
.faculty-highlights li { position: relative; padding-left: 22px; font-weight: 600; }
.faculty-highlights li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--coral-500); }
.faculty-details { border-top: 1px solid var(--line); }
.faculty-details summary { padding: 22px 0 0; cursor: pointer; color: var(--teal-600); font-family: "Manrope", sans-serif; font-weight: 800; }
.faculty-details summary::marker { color: var(--coral-500); }
.faculty-details > div { padding-top: 22px; color: var(--muted); }
.faculty-details > div p { margin-bottom: 16px; }
.faculty-details > div p:last-child { margin-bottom: 0; }

.agenda-section { background: var(--white); }
.agenda-wrap { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.agenda-intro { position: sticky; top: 130px; align-self: start; }
.agenda-intro h2 { margin-bottom: 24px; }
.agenda-intro > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.calendar-panel { margin-top: 30px; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: var(--ice-50); }
.calendar-panel > p { margin-bottom: 16px; }
.calendar-panel > p strong, .calendar-panel > p span { display: block; }
.calendar-panel > p strong { margin-bottom: 4px; font-family: "Manrope", sans-serif; }
.calendar-panel > p span { color: var(--muted); font-size: .87rem; line-height: 1.45; }
.calendar-download { min-height: 62px; margin-top: 10px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 15px; display: grid; grid-template-columns: 72px 1fr; align-items: center; gap: 12px; background: var(--white); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.calendar-download:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(34,10,60,.09); }
.calendar-download img { width: 72px; height: 38px; object-fit: contain; }
.calendar-download span { color: var(--navy-800); font-family: "Manrope", sans-serif; font-size: .78rem; font-weight: 800; line-height: 1.3; }
.calendar-choice-copy { min-width: 0; }
.calendar-choice-copy > strong { display: block; margin-bottom: 8px; color: var(--navy-800); font-family: "Manrope", sans-serif; font-size: .82rem; }
.calendar-device-actions { display: flex; flex-wrap: wrap; gap: 7px; }
.calendar-device-actions a { padding: 7px 10px; border-radius: 999px; color: var(--white); background: var(--navy-800); font-family: "Manrope", sans-serif; font-size: .69rem; font-weight: 800; line-height: 1.25; text-align: center; text-decoration: none; }
.calendar-device-actions a:last-child { color: var(--navy-800); background: var(--ice-100); }
.calendar-help { margin: 14px 0 0 !important; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem !important; }
.calendar-help strong { display: inline !important; color: var(--navy-800); }
.agenda-list { border-top: 1px solid var(--line); }
.agenda-item { padding: 34px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 90px 1fr; gap: 28px; }
.agenda-item-featured { padding: 34px 22px; border: 1px solid rgba(107,53,163,.18); border-radius: 24px; background: linear-gradient(145deg, rgba(245,240,255,.9), rgba(255,255,255,.96)); box-shadow: 0 18px 48px rgba(51,24,85,.08); }
.agenda-item-ongoing { margin-top: 18px; background: linear-gradient(145deg, rgba(255,248,234,.96), rgba(255,255,255,.98)); }
.agenda-item-enrollment { margin-top: 18px; background: linear-gradient(145deg, rgba(240,251,251,.96), rgba(255,255,255,.98)); }
.date-badge { width: 90px; height: 90px; border-radius: 22px; display: grid; place-content: center; text-align: center; color: var(--white); background: var(--navy-800); }
.date-badge.accent { color: var(--navy-950); background: var(--coral-300); }
.availability-badge { color: var(--navy-950); background: var(--coral-500); }
.ongoing-badge { color: var(--white); background: var(--teal-600); }
.ongoing-badge strong { width: 70px; margin-inline: auto; line-height: 1.15; }
.enrollment-badge strong { max-width: 70px; }
.date-badge span, .date-badge strong { display: block; line-height: 1.1; text-transform: uppercase; }
.date-badge span { font-size: .65rem; letter-spacing: .18em; }
.date-badge strong { margin-top: 4px; font-family: "Manrope", sans-serif; font-size: .9rem; }
.agenda-type { margin-bottom: 7px; color: var(--teal-600); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.institution-logo { width: 176px; height: 54px; margin-bottom: 18px; object-fit: contain; object-position: left center; }
.institution-logo-ciog { width: 150px; }
.institution-logo-unigoyazes { width: 210px; }
.agenda-item h3 { margin-bottom: 10px; font-size: 1.5rem; }
.agenda-item > div:nth-child(2) > p:last-child { margin-bottom: 0; color: var(--muted); }
.agenda-item .course-update { margin-top: 16px; padding: 11px 14px; border-left: 3px solid var(--coral-500); border-radius: 0 10px 10px 0; color: var(--navy-800); background: rgba(195,166,245,.16); font-size: .87rem; }
.agenda-item > a { grid-column: 2; width: fit-content; color: var(--teal-600); font-family: "Manrope", sans-serif; font-size: .9rem; font-weight: 800; text-decoration: none; }
.agenda-item > .agenda-cta { padding: 12px 18px; border-radius: 999px; color: var(--white); background: var(--teal-600); }
.schedule-details { grid-column: 2; border-top: 1px solid var(--line); }
.schedule-details summary { padding-top: 20px; cursor: pointer; color: var(--teal-600); font-family: "Manrope", sans-serif; font-size: .9rem; font-weight: 800; }
.schedule-details summary::marker { color: var(--coral-500); }
.schedule-card { padding-top: 18px; }
.schedule-card > p { margin-bottom: 16px; color: var(--muted); font-size: .93rem; }
.schedule-card > a { display: block; color: var(--teal-600); font-family: "Manrope", sans-serif; font-size: .84rem; font-weight: 800; text-decoration: none; }
.schedule-card img { width: 100%; margin-bottom: 10px; border: 1px solid var(--line); border-radius: 16px; display: block; background: #5e4cb5; }
.module-schedule { margin: 0 0 20px; padding: 0; display: grid; gap: 10px; list-style: none; }
.module-schedule li { padding: 14px 16px; border-radius: 14px; display: grid; grid-template-columns: 92px 1fr; gap: 14px; background: var(--white); }
.module-schedule strong { color: var(--teal-600); font-family: "Manrope", sans-serif; font-size: .82rem; text-transform: uppercase; }
.module-schedule span { color: var(--muted); font-size: .9rem; }
.schedule-card > .schedule-download { width: fit-content; padding: 11px 16px; border-radius: 999px; color: var(--white); background: var(--navy-800); }
.schedule-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.schedule-actions .schedule-download, .schedule-card > .calendar-action { width: fit-content; padding: 11px 16px; border-radius: 999px; display: inline-flex; color: var(--white); background: var(--navy-800); font-family: "Manrope", sans-serif; font-size: .82rem; font-weight: 800; text-decoration: none; }
.schedule-actions .schedule-download.secondary { color: var(--navy-800); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.calendar-schedule-actions { margin-top: 2px; }
.schedule-card > .schedule-note { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); font-size: .82rem; }

.partners-section { color: var(--white); background: var(--navy-950); }
.partners-heading { margin-bottom: 48px; }
.partners-heading h2 { max-width: 820px; }
.partners-heading > p { color: rgba(255,255,255,.68); }
.partner-logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.partner-logo-card { min-height: 250px; padding: 24px; border: 1px solid rgba(255,255,255,.11); border-radius: 22px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.68); background: var(--white); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.partner-logo-card:hover { transform: translateY(-4px); box-shadow: 0 22px 55px rgba(0,0,0,.28); }
.partner-logo-card img { width: 100%; height: 94px; object-fit: contain; }
.partner-logo-card span { color: var(--navy-800); font-family: "Manrope", sans-serif; font-size: .76rem; font-weight: 800; }
.partner-logo-card .partner-logo-crop { max-width: 420px; height: 130px; border-radius: 14px; object-fit: cover; object-position: center 48%; }
.partner-card-footer { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.partner-coupon { display: flex; align-items: center; gap: 8px; }
.partner-coupon small { color: var(--muted); font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.partner-coupon code { padding: 7px 10px; border-radius: 999px; color: var(--white); background: var(--navy-800); font-family: "Manrope", sans-serif; font-size: .75rem; font-weight: 800; }
.partner-utility-card { align-items: stretch; text-align: left; background: linear-gradient(145deg, #f4fbfb, #ffffff); }
.partner-utility-copy { display: grid; gap: 8px; }
.partner-wordmark { color: var(--teal-600); font-family: "Manrope", sans-serif; font-size: 2.35rem; letter-spacing: -.05em; }
.partner-utility-copy p { max-width: 560px; margin: 0; color: var(--muted); font-size: .94rem; }
.congress-block { margin-top: 72px; padding-top: 54px; border-top: 1px solid rgba(255,255,255,.13); }
.congress-intro { max-width: 680px; margin-bottom: 30px; }
.congress-intro h3 { margin-bottom: 14px; font-size: clamp(2rem, 3.7vw, 3.3rem); }
.congress-intro > p:last-child { color: rgba(255,255,255,.66); }
.discount-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.discount-card { min-height: 560px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; background: rgba(255,255,255,.06); }
.discount-card-featured { background: linear-gradient(145deg, var(--navy-800), #6b35a3); }
.congress-image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; display: block; background: var(--navy-800); }
.congress-image-top { object-position: top center; }
.discount-card-body { flex: 1; padding: 28px; display: flex; flex-direction: column; }
.discount-label { margin-bottom: 16px; color: var(--coral-300); font-family: "Manrope", sans-serif; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.discount-card h4 { margin-bottom: 12px; font-size: 1.55rem; line-height: 1.15; }
.discount-card-body > p:not(.discount-label) { color: rgba(255,255,255,.66); }
.coupon-row { margin-top: auto; padding: 13px 15px; border: 1px dashed rgba(255,255,255,.28); border-radius: 14px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.coupon-row span { color: rgba(255,255,255,.58); font-size: .74rem; text-transform: uppercase; }
.coupon-row code { color: var(--coral-300); font-family: "Manrope", sans-serif; font-size: .94rem; font-weight: 800; }
.discount-links { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 14px; }
.discount-links a, .discount-cta { margin-top: 16px; color: var(--white); font-family: "Manrope", sans-serif; font-size: .82rem; font-weight: 800; text-decoration: none; }
.discount-links a { margin-top: 0; }

.contact-section { padding: 105px 0; color: var(--white); background: linear-gradient(135deg, #6b35a3, var(--navy-800)); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.contact-grid h2 { max-width: 620px; }
.contact-copy > p { max-width: 540px; margin-bottom: 30px; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.contact-actions { display: grid; gap: 10px; }
.contact-button { min-height: 72px; padding: 15px 20px; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-decoration: none; background: rgba(255,255,255,.06); transition: background .2s ease, transform .2s ease; }
.contact-button:hover { transform: translateX(4px); background: rgba(255,255,255,.12); }
.contact-button span { color: rgba(255,255,255,.65); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-button strong { text-align: right; font-family: "Manrope", sans-serif; font-size: .93rem; }
.contact-button.whatsapp { color: var(--navy-950); background: var(--coral-300); border-color: transparent; }
.contact-button.whatsapp span { color: rgba(4,21,35,.6); }
.install-app-button { width: 100%; color: var(--white); cursor: pointer; font: inherit; }
.install-app-button[hidden] { display: none; }
.install-guide { position: relative; margin-top: 14px; padding: 20px 48px 20px 20px; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; color: var(--white); background: rgba(18,5,31,.35); }
.install-guide[hidden] { display: none; }
.install-guide strong { display: block; margin-bottom: 6px; font-family: "Manrope", sans-serif; }
.install-guide p { margin: 0; color: rgba(255,255,255,.75); font-size: .9rem; }
.install-guide-close { position: absolute; top: 10px; right: 12px; width: 32px; height: 32px; border: 0; border-radius: 50%; color: var(--white); background: rgba(255,255,255,.1); cursor: pointer; font-size: 1.35rem; line-height: 1; }

.site-footer { padding: 32px 0; color: rgba(255,255,255,.65); background: var(--navy-950); font-size: .84rem; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 36px; }
.footer-grid p { margin-bottom: 0; }
.brand-footer { color: var(--white); }
.brand-footer .brand-logo { width: 180px; }

:focus-visible { outline: 3px solid var(--coral-500); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; } }

@media (max-width: 900px) {
  .section-pad, .pod-section { padding: 84px 0; }
  .menu-button { z-index: 2; display: block; color: inherit; }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; padding: 120px 28px 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; transform: translateX(100%); color: var(--white); background: var(--navy-950); font-size: 1.35rem; transition: transform .28s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav .nav-cta { margin-top: 16px; color: var(--navy-950); background: var(--coral-500); }
  .hero-media { height: auto; aspect-ratio: 3 / 2; }
  .hero-image { object-position: center center; }
  .hero-content { padding-top: 52px; padding-bottom: 58px; grid-template-columns: 1fr; gap: 42px; }
  .hero-highlights { padding: 26px 0 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .hero h1 { max-width: 700px; }
  .intro-grid, .pod-grid, .agenda-wrap, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .cards-grid { grid-template-columns: 1fr; }
  .program-overview { grid-template-columns: 1fr; gap: 30px; }
  .feature-card { min-height: 430px; }
  .team-photos { grid-template-columns: 1fr 1fr; }
  .team-photo { height: 340px; }
  .team-photo-main, .team-photo-coordination { height: 440px; }
  .faculty-profile, .faculty-profile-reverse { grid-template-columns: .8fr 1.2fr; }
  .faculty-profile-reverse .faculty-photo { order: 0; }
  .faculty-profile-reverse .faculty-content { order: 0; }
  .faculty-photo { min-height: 680px; }
  .pod-grid { gap: 30px; }
  .pod-copy { order: -1; }
  .pod-artwork { max-width: 720px; }
  .agenda-intro { position: static; }
  .calendar-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .calendar-panel > p { grid-column: 1 / -1; }
  .calendar-download { margin-top: 0; }
  .partner-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .discount-grid { grid-template-columns: 1fr; }
  .discount-card { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid p:last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 32px, 1180px); }
  .nav-wrap { min-height: 74px; }
  .brand-logo { width: 165px; height: 52px; }
  .hero-media { margin-top: 0; aspect-ratio: 3 / 2; }
  .hero-content { padding-top: 40px; padding-bottom: 50px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.1rem); }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions { display: grid; }
  .hero-highlights { margin-top: 0; grid-template-columns: 1fr; gap: 18px; }
  .hero-highlights li:nth-child(n+3) { display: none; }
  .section-pad, .pod-section, .contact-section { padding: 70px 0; }
  h2 { font-size: clamp(2.15rem, 11vw, 3.25rem); }
  .intro-copy { font-size: 1.05rem; }
  .feature-card { min-height: 420px; padding: 26px; border-radius: 24px; }
  .feature-card h3 { font-size: 2.1rem; }
  .program-overview { padding: 26px; border-radius: 24px; }
  .program-overview ul { grid-template-columns: 1fr; }
  .team-photos { grid-template-columns: 1fr; }
  .team-photo { height: auto; aspect-ratio: 4 / 3; }
  .team-photo-main, .team-photo-coordination { grid-column: auto; height: auto; }
  .faculty-profile, .faculty-profile-reverse { grid-template-columns: 1fr; }
  .faculty-photo { min-height: 0; aspect-ratio: 4 / 5; }
  .faculty-content { padding: 30px 24px 34px; }
  .faculty-content h3 { font-size: 2.6rem; }
  .pod-artwork { border-radius: 22px; transform: none; }
  .pod-artwork figcaption { left: 18px; bottom: 16px; font-size: .66rem; }
  .agenda-item { grid-template-columns: 72px 1fr; gap: 18px; }
  .agenda-item-featured { padding: 24px 18px; }
  .date-badge { width: 72px; height: 72px; border-radius: 18px; }
  .date-badge strong { font-size: .72rem; }
  .schedule-details { grid-column: 1 / -1; }
  .module-schedule li { grid-template-columns: 1fr; gap: 5px; }
  .calendar-panel { grid-template-columns: 1fr; }
  .calendar-panel > p { grid-column: auto; }
  .calendar-download { grid-template-columns: 78px 1fr; }
  .institution-logo { margin-top: 4px; }
  .partner-logo-grid { grid-template-columns: 1fr; }
  .partner-logo-card { min-height: 230px; padding: 18px; }
  .partner-card-footer { align-items: flex-start; flex-direction: column; gap: 10px; }
  .schedule-actions { display: grid; }
  .schedule-actions .schedule-download, .schedule-card > .calendar-action { width: 100%; justify-content: center; text-align: center; }
  .contact-button { align-items: flex-start; flex-direction: column; }
  .contact-button strong { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid p:last-child { grid-column: auto; }
}
