:root{
  /* Colores extraídos/aproximados del logo */
  --bg0: #050607;
  --bg1: #0a0c0f;

  --burgundy: #9f2a37;
  --burgundy2:#82141a;
  --teal:     #005f66;

  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);

  --card: rgba(255,255,255,0.06);
  --cardBorder: rgba(255,255,255,0.12);
  --shadow: 0 18px 50px rgba(0,0,0,0.18);
  --radius: 20px;
}

*{ box-sizing: border-box; }
html, body { height: 100%; }

body {
    margin: 0;
    padding-top: 78px; /* deja espacio para la barra fija */
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
    background: radial-gradient(850px 550px at 22% 22%, rgba(0,95,102,0.22), transparent 58%), radial-gradient(900px 600px at 78% 28%, rgba(159,42,55,0.18), transparent 60%), radial-gradient(900px 700px at 52% 85%, rgba(130,20,26,0.16), transparent 62%), linear-gradient(180deg, #d9dee4, #cfd5dc);
}

/* =========================
   NAVBAR
   ========================= */

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(205, 212, 220, 0.82);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.navwrap {
    width: min(1320px, 96vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  color: #000;
  letter-spacing: 0.4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand__logo{
  height: 22px;
  width: auto;
  object-fit: contain;
  display: block;
}

.navbtn{
  display: none;
  margin-left: auto;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.60);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  line-height: 1;
}

.nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
}

/* botones principales */
 .nav > a,
 .dropdown__toggle {
   text-decoration: none;
   color: rgba(0,0,0,0.78);
   font-weight: 800;
   font-size: 13px;
   padding: 9px 10px;
   border-radius: 10px;
   display: inline-flex;
   align-items: center;
   background: none;
   border: none;
   cursor: pointer;
   font-family: inherit;
   line-height: 1.2;
   white-space: nowrap;
 }

.nav > a:hover,
.dropdown__toggle:hover{
  background: rgba(255,255,255,0.55);
}

.nav > a.is-active{
  color: #000;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.08);
}

.navcta{
  background: linear-gradient(90deg, var(--teal), var(--burgundy)) !important;
  color: #fff !important;
  border-radius: 12px;
  padding: 10px 14px !important;
  margin-left: 6px;
}

@media (max-width: 1280px) {
    .brand {
        font-size: 15px;
    }

    .brand__logo {
        height: 20px;
    }

    .nav > a,
    .dropdown__toggle {
        font-size: 12px;
        padding: 8px 8px;
    }

    .navcta {
        padding: 9px 12px !important;
    }
}

/* dropdown desktop */
.dropdown{
  position: relative;
}

.dropdown__menu{
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  padding: 8px;
  z-index: 10000;
}

.dropdown.open .dropdown__menu{
  display: block;
}

.dropdown__menu a{
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: rgba(0,0,0,0.82);
  font-weight: 700;
  border-radius: 10px;
  white-space: nowrap;
}

.dropdown__menu a:hover{
  background: rgba(0,0,0,0.05);
}

.dropdown__menu a.is-active{
  background: rgba(0,0,0,0.06);
  color: #000;
}

/* MOBILE */
@media (max-width: 980px){
  .brand__logo{
    height: 20px;
  }

  .navbtn{
    display: inline-flex;
  }

  .nav{
    position: fixed;
    top: 62px;
    left: 50%;
    transform: translateX(-50%);
    width: min(560px, 94vw);
    max-height: calc(100dvh - 90px);
    overflow: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 18px 60px rgba(0,0,0,0.18);
  }

  .nav.is-open{
    display: flex;
  }

  .nav > a,
  .dropdown__toggle{
    width: 100%;
    justify-content: flex-start;
    padding: 12px;
    font-size: 15px;
  }

  .navcta{
    margin-left: 0;
  }

  .dropdown{
    width: 100%;
  }

  .dropdown__menu{
    display: none;
    position: static;
    min-width: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 4px 0 0 14px;
  }

  .dropdown.open .dropdown__menu{
    display: block;
  }

  .dropdown__menu a{
    white-space: normal;
  }
}

/* =========================
   HERO
   ========================= */

.hero {
    min-height: 90vh;
    display: grid;
    place-items: center;
    padding: clamp(10px, 2vw, 24px);
}
/* laptop / monitor mediano */
@media (max-width: 1100px) {
    .hero {
        min-height: auto;
        padding: 20px 16px 28px;
    }
}

/* tablet */
@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: 14px 12px 22px;
    }
}

/* celular */
@media (max-width: 560px) {
    .hero {
        min-height: auto;
        padding: 12px 8px 18px;
    }
}

.hero__card{
  width: min(1400px, 96vw);
  max-width: 96vw;
  padding: clamp(18px, 3vw, 36px);
  text-align: center;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero__logo{
  width: min(780px, 96%);
  max-height: 46dvh;
  height: auto;
  display: block;
  margin: 0 auto clamp(12px, 2vw, 18px);
  position: relative;
  z-index: 1;
  user-select: none;
}

.hero__banner {
    width: 150%;
    max-width: none;
    height: auto;
    display: block;
    margin: -20px auto 30px;
    border-radius: 12px;
    object-fit: cover;
    user-select: none;
}

/* =========================
   META
   ========================= */

.hero__meta{
  position: relative;
  z-index: 2;
  margin-top: 4px;
  margin-bottom: 18px;
  text-align: center;
  margin-right: 320px;
}

.hero__dates,
.hero__city,
.hero__soon{
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-family: "Arial Narrow", "Bahnschrift SemiCondensed",
               "Franklin Gothic Medium", "Segoe UI",
               system-ui, sans-serif;
  text-align: center;
}

.hero__dates{
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 44px);
  color: #000;
}

.hero__city{
  margin-top: 6px;
  font-weight: 850;
  font-size: clamp(24px, 3.2vw, 38px);
  color: #000;
}

.hero__soon{
  margin-top: 14px;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: 2.5px;
  background: linear-gradient(90deg, var(--teal), var(--burgundy));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 900px){
  .hero__meta{
    margin-right: 0;
  }
}

/* =========================
   COUNTDOWN
   ========================= */

.countdown{
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.countdown__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.countdown__item{
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.55);
  padding: 14px 10px;
  backdrop-filter: blur(6px);
}

.countdown__value{
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: clamp(22px, 4.6vw, 46px);
  line-height: 1.05;
  background: linear-gradient(90deg, var(--teal), var(--burgundy));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.countdown__label{
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.60);
}

@media (max-width: 760px){
  .countdown__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================
   LAYOUT GENERAL
   ========================= */

.page{
  padding: 18px 0 40px;
}

.section{
  padding: 16px 0;
}

.card{
  width: min(1100px, 94vw);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 34px);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.68);
  position: relative;
  overflow: hidden;
}

.card.wide{
  width: min(1400px, 96vw);
}

.pageTitle{
  margin: 0 0 14px;
  letter-spacing: 0.3px;
  color: #000;
}

.prose{
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  color: #101010;
}
.prose--full{
  max-width: none;
  margin: 0;
}

.prose--full p:first-child{
  margin-top: 0;
}

.muted{
  color: rgba(0,0,0,0.62);
}

/* =========================
   BOTONES
   ========================= */

.ctaRow{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btnPrimary, .btnGhost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.btnPrimary{
  background: linear-gradient(90deg, var(--teal), var(--burgundy));
  color: white;
  border: 1px solid rgba(0,0,0,0.10);
}

.btnGhost{
  background: rgba(255,255,255,0.55);
  color: #111;
  border: 1px solid rgba(0,0,0,0.12);
}

.btnPrimary:hover, .btnGhost:hover{
  transform: translateY(-1px);
}

.peopleGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 18px;
    align-items: stretch;
}
.peopleGrid--3 {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
}

.personCard {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(0,0,0,0.10);
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.personPhoto {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}
.personPhoto--circle{
    width: clamp(90px, 9vw, 120px);
    height: clamp(90px, 9vw, 120px);
    aspect-ratio: auto;
    border-radius: 50%;
    object-fit: cover;
    margin: 16px auto 6px;
    border: 3px solid #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.personBody {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 14px 14px 16px;
}

.personName {
    font-weight: 900;
    font-size: 18px;
    line-height: 1.2;
    color: #000;
}

.personRole {
    margin-top: 6px;
    font-weight: 750;
    font-size: 14px;
    color: rgba(0,0,0,0.72);
}

.personAffil {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.35;
    color: rgba(0,0,0,0.60);
}

/* desktop mediano */
@media (max-width: 1200px) {
    .peopleGrid {
        grid-template-columns: repeat(3, minmax(200px, 1fr));
    }
}

/* tablet */
@media (max-width: 860px) {
    .peopleGrid {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }

    .personName {
        font-size: 17px;
    }
}

/* celular */
@media (max-width: 560px) {
    .peopleGrid {
        grid-template-columns: 1fr;
    }

    .personCard {
        max-width: 380px;
        width: 100%;
        margin: 0 auto;
    }

    .personName {
        font-size: 18px;
    }

    .personRole {
        font-size: 14px;
    }
}

/* =========================
   LOGOS
   ========================= */

.logoGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px;
    margin-top: 16px;
    justify-items: center;
    align-items: stretch;
}

.logoTile {
    width: 100%;
    max-width: 300px;
    height: 170px;
    border-radius: 14px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(0,0,0,0.10);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

    .logoTile img {
        max-width: 100%;
        max-height: 120px;
        object-fit: contain;
        display: block;
    }

.logoGrid--organizers{
  justify-items: center;
}

    .logoGrid--organizers .logoTile {
        max-width: 260px;
        height: 120px;
        padding: 14px;
    }

.logoGrid--organizers .logoTile img{
  max-height: 100px;
}

.subTitle{
  margin: 18px 0 6px;
  color: #000;
}

@media (max-width: 1100px){
  .logoGrid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 820px){
  .logoGrid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .logoGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
    .logoGrid {
        justify-items: center;
    }

    .logoTile {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* =========================
   SPONSOR CALLOUT
   ========================= */

.sponsorCallout{
  margin-top: 8px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.sponsorCallout__text{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  color: #000;
}

.sponsorCallout__subtext{
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(0,0,0,0.68);
}

/* =========================
   FOOTER
   ========================= */

#site-footer {
    padding: 18px 0 24px;
    background: rgba(255,255,255,0.35);
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footerwrap {
    width: min(1320px, 96vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: center;
    gap: 12px;
    color: rgba(0,0,0,0.70);
    font-size: 14px;
}

.footerbrand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footerbrand__logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footerlinks {
    display: flex;
    gap: 14px;
}

.footerlinks--center {
    justify-content: center;
}

.footerlinks a {
    display: inline-block;
    color: rgba(0,0,0,0.70);
    text-decoration: none;
    font-weight: 700;
}

    .footerlinks a:hover {
        text-decoration: underline;
    }

.footercopy {
    text-align: right;
}

.footerlinks a{
  display: inline-block;
  margin-right: 12px;
  color: rgba(0,0,0,0.70);
  text-decoration: none;
  font-weight: 700;
}

.footerlinks a:hover{
  text-decoration: underline;
}

@media (max-width: 820px) {
    .footerwrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footerbrand {
        justify-content: center;
    }

    .footerlinks--center {
        justify-content: center;
    }

    .footercopy {
        text-align: center;
    }
}

/* =========================
   TITULOS
   ========================= */

h1, h2, h3{
  color: #000;
  font-weight: 900;
}

/* =========================
   Special Symposium (banner)
   ========================= */

.bannerContainer {
    position: relative;
}

.specialSymposium {
    position: absolute;
    left: clamp(20px, 3vw, 40px);
    bottom: clamp(20px, 3vw, 40px);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 22px;
    border-radius: 16px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,0,0,0.10);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
    .specialSymposium img {
        height: 70px;
        width: auto;
    }

.symposiumText {
    text-align: center;
    max-width: clamp(150px, 16vw, 220px);
}

.symposiumTitle {
    font-weight: 900;
    font-size: clamp(14px, 1.05vw, 18px);
    color: #000;
    margin-bottom: 4px;
}

.symposiumSubtitle {
    font-size: clamp(12px, 0.9vw, 15px);
    font-weight: 600;
    color: #222;
    line-height: 1.25;
}

.specialSymposium img {
    width: clamp(58px, 5.5vw, 100px);
    height: auto;
    display: block;
}

/* monitor mediano / notebook */
@media (max-width: 1100px) {
    .specialSymposium {
        gap: 10px;
        padding: 10px 12px;
    }

    .symposiumText {
        max-width: 180px;
    }

    .specialSymposium img {
        width: 78px;
    }
}

/* tablet y celular */
@media (max-width: 900px) {
    .specialSymposium {
        position: static;
        margin: 14px auto 0;
        width: min(100%, 520px);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 14px;
        padding: 10px 14px;
        border-radius: 14px;
    }

    .symposiumText {
        max-width: 100%;
        text-align: left;
        flex: 1;
    }

    .symposiumTitle {
        font-size: 15px;
        margin-bottom: 3px;
    }

    .symposiumSubtitle {
        font-size: 12px;
        line-height: 1.2;
    }

    .specialSymposium img {
        width: 58px;
        flex-shrink: 0;
    }

    .hero__meta {
        margin-right: 0;
        margin-top: 18px;
    }
}

/* celular chico */
@media (max-width: 560px) {
    .specialSymposium {
        width: min(100%, 420px);
        padding: 9px 12px;
        gap: 10px;
    }

    .symposiumTitle {
        font-size: 14px;
    }

    .symposiumSubtitle {
        font-size: 11px;
        line-height: 1.15;
    }

    .specialSymposium img {
        width: 52px;
    }
}
.adaa50 {
    position: absolute;
    right: clamp(20px, 3vw, 40px);
    bottom: clamp(20px, 3vw, 40px);
    z-index: 3;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,0,0,0.10);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

    .adaa50 img {
        height: 70px;
        width: auto;
    }

/* =========================
   SEDE
========================= */

.venueHero,
.venueClosing,
.venueHallCard,
.venueHallMedia,
.venueRoomsText,
.roomsCarouselWrap,
.venueAddressBox,
.venueMapBox,
.venueTopCard {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* -------- CARD SUPERIOR -------- */

.venueTopCard {
    display: grid;
    gap: 1.5rem;
}

.venueTopIntro {
    display: grid;
    gap: 0.95rem;
}

    .venueTopIntro .pageTitle {
        margin: 0;
    }

    .venueTopIntro p {
        margin: 0;
    }

/* -------- VIDEO -------- */

.venueHero {
    display: grid;
    gap: 1.25rem;
}

.venueHero__media {
    width: 100%;
}

.venueVideo {
    display: block;
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 520px;
    background: #000;
}

/* -------- BLOQUE MAPA + TEXTO -------- */

.venueCardGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.venueCardGrid--mapFirst {
    align-items: stretch;
}

.venueAddressBox,
.venueIntroText,
.venueHallCard,
.venueRoomsText,
.roomsCarouselWrap,
.venueMapBox {
    border-radius: 16px;
}

    .pageTitle,
    .venueAddressBox h2,
    .venueIntroText h2,
    .venueHallCard h3,
    .venueRoomsText h2,
    .venueClosing h2,
    .venueSectionTitle {
        margin-top: 0;
    }

    .venueAddressBox p:last-child,
    .venueIntroText p:last-child,
    .venueHallCard p:last-child,
    .venueRoomsText p:last-child,
    .venueClosing p:last-child {
        margin-bottom: 0;
    }

.venueMapBox,
.venueAddressBox--equal {
    height: 100%;
}

.venueAddressBox--equal {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.venueMap {
    margin-top: 1rem;
}

.venueMap--equal {
    margin-top: 0;
    height: 100%;
}

    .venueMap--equal iframe {
        height: 100%;
        min-height: 320px;
    }

.venueMap iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 16px;
    display: block;
}

.venueMapButton {
    margin-top: 12px;
    text-align: center;
}

    .venueMapButton a {
        display: inline-block;
        padding: 10px 18px;
        border-radius: 8px;
        background: #0b6cff;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: background 0.2s ease, transform 0.2s ease;
    }

        .venueMapButton a:hover {
            background: #094fb3;
            transform: translateY(-1px);
        }

/* -------- SALONES -------- */

.venueSectionHeader {
    margin-bottom: 1.5rem;
}

.venueSectionTitle {
    margin-bottom: 0.5rem;
}

.venueHallList {
    display: grid;
    gap: 1.25rem;
}

.venueHallRow {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

    .venueHallRow.reverse {
        grid-template-columns: 1fr 1.05fr;
    }

.venueHallCard {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

    .venueHallCard h3 {
        margin-bottom: 0.75rem;
    }

.venueHallMedia {
    display: flex;
    align-items: flex-start;
}

    .venueHallMedia img,
    .venueImg {
        display: block;
        width: 100%;
        height: auto;
        max-height: 260px;
        border-radius: 16px;
        object-fit: cover;
    }

.venueHallDivider {
    width: 100%;
    height: 1px;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0), rgba(11, 108, 255, 0.35), rgba(0, 0, 0, 0) );
    margin: 0.25rem 0 0.35rem;
}

.venueTech {
    margin-top: 0.9rem;
    font-size: 0.96rem;
    line-height: 1.55;
}

/* -------- HABITACIONES -------- */

.venueRoomsGrid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 1.5rem;
    align-items: center;
}

.venueRoomsText {
    padding-top: 0;
}

/* -------- CARRUSEL -------- */

.roomsCarouselWrap {
    position: relative;
    min-height: 420px;
}

.roomsCarouselViewport {
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.roomsCarouselTrack {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.roomsCarouselSlide {
    min-width: 100%;
    height: 420px;
}

.roomsCarouselTrack img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

.roomsCarouselDots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.9rem;
    display: flex;
    gap: 0.45rem;
    z-index: 3;
}

.roomsCarouselDot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
}

    .roomsCarouselDot.active {
        background: #fff;
    }

/* -------- CARD FINAL -------- */

.venueClosing .ctaRow {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.venueClosing .btnPrimary,
.venueClosing .btnGhost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.venueClosing .btnPrimary {
    background: #0b6cff;
    color: #fff;
}

    .venueClosing .btnPrimary:hover {
        background: #094fb3;
        transform: translateY(-1px);
    }

.venueClosing .btnGhost {
    background: transparent;
    color: #0b6cff;
    border: 1px solid #0b6cff;
}

    .venueClosing .btnGhost:hover {
        background: rgba(11, 108, 255, 0.08);
        transform: translateY(-1px);
    }

/* -------- TEXTO NEGRO -------- */

.page .card h1,
.page .card h2,
.page .card h3,
.page .card p,
.page .card li,
.page .card strong {
    color: #000;
}

/* -------- RESPONSIVE -------- */

@media (max-width: 900px) {

    .venueCardGrid,
    .venueHallRow,
    .venueHallRow.reverse,
    .venueRoomsGrid {
        grid-template-columns: 1fr;
    }

    .venueVideo {
        max-height: 360px;
    }

    .venueMap iframe,
    .venueMap--equal iframe {
        height: 300px;
        min-height: unset;
    }

    .venueHallMedia img,
    .venueImg {
        max-height: 240px;
    }

    .roomsCarouselWrap {
        min-height: auto;
    }

    .roomsCarouselSlide {
        height: 320px;
    }
}

@media (max-width: 640px) {

    .venueMap iframe,
    .venueMap--equal iframe {
        height: 250px;
    }

    .roomsCarouselSlide {
        height: 250px;
    }
}
/* =========================
   FECHAS IMPORTANTES
========================= */

.datesCard {
    color: #000;
}

    .datesCard .pageTitle,
    .datesCard p,
    .datesCard td {
        color: #000;
    }

.datesIntro {
    margin-bottom: 1.25rem;
}

.datesTableWrap {
    width: 100%;
    overflow-x: auto;
}

.datesTable {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(0,0,0,0.18);
}

    .datesTable td {
        padding: 16px 14px;
        border: 1px solid rgba(0,0,0,0.18);
        font-size: 18px;
        line-height: 1.35;
        vertical-align: middle;
    }

.datesTable__date {
    width: 36%;
    font-weight: 800;
    white-space: nowrap;
}

.datesTable__event {
    width: 64%;
    font-weight: 500;
}

.datesTable__highlight td {
    background: rgba(140, 180, 205, 0.55);
}

@media (max-width: 720px) {
    .datesTable td {
        padding: 14px 12px;
        font-size: 16px;
    }

    .datesTable__date {
        width: 40%;
        white-space: normal;
    }

    .datesTable__event {
        width: 60%;
    }
}

@media (max-width: 520px) {
    .datesTable td {
        font-size: 15px;
        padding: 12px 10px;
    }
}
/* =========================
   COMITE CIENTIFICO
========================= */

.scientificCard {
    color: #000;
}

.scientificIntro {
    margin-bottom: 22px;
    line-height: 1.6;
}

.scientificGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 40px;
    margin-top: 10px;
}

.scientificName {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

/* tablet */

@media (max-width:900px) {
    .scientificGrid {
        grid-template-columns: repeat(2,1fr);
    }
}

/* celular */

@media (max-width:520px) {
    .scientificGrid {
        grid-template-columns: 1fr;
    }

    .scientificName {
        font-size: 17px;
    }
}

/* =========================
   DIRECTORIO AdAA
========================= */

.directoryCard {
    color: #000;
}

    .directoryCard .pageTitle,
    .directoryCard h2,
    .directoryCard p,
    .directoryCard div {
        color: #000;
    }

/* texto introductorio */

.directoryIntro {
    line-height: 1.65;
    margin-bottom: 1rem;
}

/* layout principal */

.directoryBoard {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

/* secciones del directorio */

.directorySection h2 {
    margin: 0 0 1rem;
}

/* separación entre Comisión Directiva y Comisión Revisora */
.directorySection + .directorySection {
    margin-top: 2.2rem;
}

.directoryTable {
    display: grid;
    gap: 0.9rem;
}

.directoryRow {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.25rem;
    align-items: start;
}

.directoryRole {
    font-weight: 700;
}

.directoryName {
    font-weight: 500;
}

/* =========================
   LOGO AdAA
========================= */

.directoryLogo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    text-align: center;
    margin-left: auto;
}

    .directoryLogo img {
        display: block;
        width: 100%;
        max-width: 380px;
        height: auto;
    }

/* =========================
   CTA ADDA
========================= */

.directoryCTA {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.12);
    text-align: center;
}

    .directoryCTA p {
        max-width: 720px;
        margin: 0 auto 18px auto;
        color: #000;
        line-height: 1.6;
    }

/* =========================
   RESPONSIVE
========================= */

@media (max-width:900px) {

    .directoryBoard {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .directoryLogo {
        margin-top: 20px;
    }

        .directoryLogo img {
            max-width: 320px;
        }
}

@media (max-width:720px) {

    .directoryRow {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .directoryRole {
        font-weight: 800;
    }
}
/* =========================
   COMITE ORGANIZADOR
========================= */

.organizerCard {
    color: #000;
}

    .organizerCard .pageTitle,
    .organizerCard h2,
    .organizerCard p,
    .organizerCard div {
        color: #000;
    }

.organizerIntro {
    line-height: 1.65;
    margin-bottom: 1rem;
}

.organizerList {
    margin-top: 2rem;
    display: grid;
    gap: 2rem;
}

.organizerRow {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
}

    /* separación entre integrantes */

    .organizerRow + .organizerRow {
        padding-top: 24px;
        border-top: 1px solid rgba(0,0,0,0.08);
    }

.organizerPerson {
    width: 100%;
}

.organizerBio h2 {
    margin: 0 0 10px;
}

.organizerBio p {
    margin: 0 0 12px;
    line-height: 1.7;
}

/* tarjeta persona */

.organizerPerson .personCard {
    max-width: 320px;
}

@media (max-width: 900px) {

    .organizerRow {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .organizerPerson .personCard {
        max-width: 380px;
        margin: 0 auto;
    }
}

/* =========================
   CONFERENCIAS PLENARIAS
========================= */

.plenaryCard {
    color: #000;
}

    .plenaryCard .pageTitle,
    .plenaryCard h2,
    .plenaryCard h3,
    .plenaryCard p,
    .plenaryCard div {
        color: #000;
    }

.plenaryIntro {
    line-height: 1.65;
    margin-bottom: 1rem;
}

.plenaryList {
    margin-top: 2rem;
    display: grid;
    gap: 2rem;
}

.plenaryRow {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
}

    .plenaryRow + .plenaryRow {
        padding-top: 24px;
        border-top: 1px solid rgba(0,0,0,0.08);
    }

.plenaryPerson {
    width: 100%;
}

    .plenaryPerson .personCard {
        max-width: 320px;
    }

.plenaryContent h2 {
    margin: 0 0 12px;
}

.plenaryBlock + .plenaryBlock {
    margin-top: 1rem;
}

.plenaryBlock h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
    font-weight: 800;
}

.plenaryBlock p {
    margin: 0 0 10px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .plenaryRow {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .plenaryPerson .personCard {
        max-width: 380px;
        margin: 0 auto;
    }
}
/* =========================
   INSTITUCIONES ORGANIZADORAS
========================= */

.institutionsCard {
    color: #000;
}

.institutionsIntro {
    line-height: 1.65;
    margin-bottom: 1rem;
}

.institutionsList {
    margin-top: 1.4rem;
    display: grid;
    gap: 1.4rem;
}

.institutionRow {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 1.2rem;
    align-items: center;
}

.institutionLogo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

    .institutionLogo img {
        max-width: 374px;
        width: 100%;
        height: auto;
    }

.institutionText h2 {
    margin: 0 0 10px;
}

.institutionText p {
    margin: 0 0 12px;
    line-height: 1.7;
}

.institutionRow + .institutionRow {
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

@media (max-width:900px) {

    .institutionRow {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .institutionLogo {
        justify-content: center;
    }
}

/* =========================
   ENVIO RESUMENES
========================= */

.abstractCard {
    color: #000;
}

    .abstractCard h2 {
        margin-top: 28px;
    }

.abstractIntro {
    line-height: 1.65;
    margin-bottom: 10px;
}

.areasGrid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

    .areasGrid ul {
        margin: 0;
        padding-left: 18px;
        line-height: 1.7;
    }

.noteText {
    margin-top: 20px;
    font-size: 0.95rem;
}

.abstractCTA {
    margin-top: 30px;
    text-align: center;
}

.btnPrimary {
    display: inline-block;
    background: #3f7fbd;
    color: white;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
}

    .btnPrimary:hover {
        background: #2f6ca5;
    }

@media (max-width:800px) {

    .areasGrid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   CARGAR RESUMEN
========================= */

.abstractFormCard {
    color: #000;
}

    .abstractFormCard .pageTitle,
    .abstractFormCard h2,
    .abstractFormCard p,
    .abstractFormCard label,
    .abstractFormCard div,
    .abstractFormCard span {
        color: #000;
    }

.abstractFormIntro {
    line-height: 1.65;
    margin-bottom: 1rem;
}

.abstractForm {
    margin-top: 2rem;
}

.formSection + .formSection {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.formSection h2 {
    margin: 0 0 1rem;
}

.formGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.formField {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

    .formField label {
        font-weight: 700;
    }

    .formField input,
    .formField select,
    .formField textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid rgba(0,0,0,0.15);
        border-radius: 12px;
        background: rgba(255,255,255,0.88);
        color: #000;
        font: inherit;
    }

    .formField textarea {
        resize: vertical;
        min-height: 180px;
    }

.fieldHint,
.sectionHint {
    font-size: 0.94rem;
    line-height: 1.5;
    color: rgba(0,0,0,0.65);
}

.coauthorsHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.smallBtn {
    padding: 10px 14px;
}

.coauthorsContainer {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.coauthorItem {
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 14px;
    background: rgba(255,255,255,0.35);
}

.coauthorTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.coauthorTitle {
    font-weight: 800;
}

.removeCoauthorBtn {
    border: 1px solid rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
    font: inherit;
    color: #000;
}

    .removeCoauthorBtn:hover {
        background: rgba(255,255,255,0.95);
    }

.checkField {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

    .checkField input {
        margin-top: 0.25rem;
    }

.formActions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .formGrid {
        grid-template-columns: 1fr;
    }
}
.wordCounter {
    margin-top: 0.45rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(0,0,0,0.72);
}

    .wordCounter.is-over-limit {
        color: #b32020;
    }
.submitSuccess {
    margin-bottom: 1rem;
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 12px;
    background: rgba(255,255,255,0.55);
    color: #000;
}

/* =========================
   ADMIN LOGIN
========================= */

.adminLoginCard {
    width: min(560px, 94vw);
    color: #000;
}

.adminLoginIntro {
    line-height: 1.65;
    margin-bottom: 1rem;
}

.adminLoginError {
    margin-top: 1rem;
    padding: 12px 14px;
    border: 1px solid rgba(160,0,0,0.18);
    border-radius: 12px;
    background: rgba(255,230,230,0.8);
    color: #8a1111;
    font-weight: 600;
}

/* =========================
   ADMIN RESUMENES
========================= */

.adminCard {
    color: #000;
}

.adminCard--wide {
    width: min(1700px, 98vw);
}

.adminCard .pageTitle,
.adminCard h2,
.adminCard h3,
.adminCard p,
.adminCard th,
.adminCard td,
.adminCard div,
.adminCard span,
.adminCard label {
    color: #000;
}

.adminIntro {
    line-height: 1.65;
    margin-bottom: 1rem;
}

.adminToolbar {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.adminSearchWrap,
.adminFilterWrap {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.adminLabel {
    font-weight: 700;
    color: #000;
}

.adminSearch {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.88);
    color: #000;
    font: inherit;
}

.adminToolbarButtons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.adminStatus {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: rgba(0,0,0,0.7);
    font-weight: 600;
}

.adminTableWrap {
    width: 100%;
    overflow-y: auto;
    overflow-x: visible;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    background: rgba(255,255,255,0.35);
}

.adminTable {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.adminTable th,
.adminTable td {
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    color: #000;
    font-size: 0.92rem;
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.adminTable th {
    background: rgba(255,255,255,0.55);
    font-weight: 800;
}

.adminTable th:nth-child(1),
.adminTable td:nth-child(1) {
    width: 12%;
}

.adminTable th:nth-child(2),
.adminTable td:nth-child(2) {
    width: 10%;
}

.adminTable th:nth-child(3),
.adminTable td:nth-child(3) {
    width: 11%;
}

.adminTable th:nth-child(4),
.adminTable td:nth-child(4) {
    width: 21%;
}

.adminTable th:nth-child(5),
.adminTable td:nth-child(5) {
    width: 28%;
}

.adminTable th:nth-child(6),
.adminTable td:nth-child(6) {
    width: 12%;
}

.adminTable th:nth-child(7),
.adminTable td:nth-child(7) {
    width: 6%;
}

.adminCellTitle,
.adminCellAbstract {
    white-space: normal;
    line-height: 1.45;
}

.adminMiniBtn {
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 0.9rem;
}

/* modal */

.modalOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10050;
}

.modalOverlay.is-open {
    display: flex;
}

.modalCard {
    width: min(980px, 96vw);
    max-height: 88vh;
    overflow: auto;
    border-radius: 20px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 18px 50px rgba(0,0,0,0.22);
    color: #000;
}

.modalCard h2,
.modalCard h3,
.modalCard p,
.modalCard div,
.modalCard span,
.modalCard strong {
    color: #000;
}

.modalHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.modalHeader h2 {
    margin: 0;
}

.modalClose {
    border: 1px solid rgba(0,0,0,0.14);
    background: rgba(255,255,255,0.72);
    border-radius: 12px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    color: #000;
}

.modalBody {
    padding: 20px;
}

.detailGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.detailBlock {
    padding: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    background: rgba(255,255,255,0.42);
    color: #000;
}

.detailBlockWide {
    grid-column: 1 / -1;
}

.detailBlock h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: #000;
}

.detailBlock p {
    margin: 0;
    line-height: 1.65;
    color: #000;
}

.detailAbstract {
    white-space: normal;
    color: #000;
}

.detailList {
    display: grid;
    gap: 0.75rem;
}

.detailListItem {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(0,0,0,0.06);
    line-height: 1.6;
    color: #000;
}

@media (max-width: 1200px) {
    .adminToolbar {
        grid-template-columns: 1fr 1fr;
    }

    .adminToolbarButtons {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .adminToolbar {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .detailGrid {
        grid-template-columns: 1fr;
    }

    .adminTable {
        table-layout: auto;
    }
}

/* =========================
   CONTACTO / PATROCINIO
========================= */

.sponsorCard {
    color: #000;
}

.sponsorCard .pageTitle,
.sponsorCard h2,
.sponsorCard h3,
.sponsorCard p,
.sponsorCard th,
.sponsorCard td,
.sponsorCard div,
.sponsorCard span,
.sponsorCard strong {
    color: #000;
}

.sponsorIntro {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.sponsorTableWrap {
    margin-top: 2rem;
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
}

.sponsorTable {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    background: rgba(255,255,255,0.38);
    border: 1px solid rgba(0,0,0,0.12);
}

.sponsorTable th,
.sponsorTable td {
    border: 1px solid rgba(0,0,0,0.14);
    padding: 10px 12px;
    vertical-align: middle;
}

.sponsorTable thead th {
    background: rgba(140, 170, 210, 0.65);
    font-weight: 800;
    text-align: center;
}

.sponsorBenefit {
    min-width: 420px;
}

.sponsorTable td:first-child {
    width: 34%;
}

.center {
    text-align: center;
    font-weight: 700;
}

.yes,
.no {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 900;
}

.yes {
    color: #2d8a34;
}

.no {
    color: #c63a32;
}

.dateCell {
    white-space: nowrap;
    font-weight: 600;
    text-align: center;
    width: 170px;
}

.price {
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
}

.priceGroup td,
.priceGroup + tr td {
    background: rgba(255,255,255,0.22);
}

.sponsorTableWrap--secondary {
    margin-top: 1.8rem;
}

.sponsorTableSecondary {
    min-width: 760px;
}

.sponsorNotes {
    margin-top: 1.75rem;
    padding-top: 0.5rem;
}

.sponsorNotes p {
    margin: 0 0 0.65rem;
    line-height: 1.6;
    font-style: italic;
}

.sponsorCTA {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.10);
    text-align: center;
}

.sponsorCTA p {
    max-width: 760px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .sponsorTable {
        min-width: 900px;
    }

    .sponsorTableSecondary {
        min-width: 720px;
    }
}


/* =========================
   HERO CAROUSEL MDP
   ========================= */

.hero--carousel {
    height: 46vh;
    min-height: 360px;
    max-height: 520px;
    padding: 0;
    display: block;
}

.heroCarousel {
    position: relative;
    width: 100%;
    height: 46vh;
    min-height: 360px;
    max-height: 520px;
    overflow: hidden;
}

.heroCarousel__slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.heroCarousel__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: heroFade 100s infinite;
}

    .heroCarousel__slide:nth-child(1) {
        animation-delay: 0s;
    }

    .heroCarousel__slide:nth-child(2) {
        animation-delay: 5s;
    }

    .heroCarousel__slide:nth-child(3) {
        animation-delay: 10s;
    }

    .heroCarousel__slide:nth-child(4) {
        animation-delay: 15s;
    }

    .heroCarousel__slide:nth-child(5) {
        animation-delay: 20s;
    }

    .heroCarousel__slide:nth-child(6) {
        animation-delay: 25s;
    }

    .heroCarousel__slide:nth-child(7) {
        animation-delay: 30s;
    }

    .heroCarousel__slide:nth-child(8) {
        animation-delay: 35s;
    }

    .heroCarousel__slide:nth-child(9) {
        animation-delay: 40s;
    }

    .heroCarousel__slide:nth-child(10) {
        animation-delay: 45s;
    }

    .heroCarousel__slide:nth-child(11) {
        animation-delay: 50s;
    }

    .heroCarousel__slide:nth-child(12) {
        animation-delay: 55s;
    }

    .heroCarousel__slide:nth-child(13) {
        animation-delay: 60s;
    }

    .heroCarousel__slide:nth-child(14) {
        animation-delay: 65s;
    }

    .heroCarousel__slide:nth-child(15) {
        animation-delay: 70s;
    }

    .heroCarousel__slide:nth-child(16) {
        animation-delay: 75s;
    }

    .heroCarousel__slide:nth-child(17) {
        animation-delay: 80s;
    }

    .heroCarousel__slide:nth-child(18) {
        animation-delay: 85s;
    }

    .heroCarousel__slide:nth-child(19) {
        animation-delay: 90s;
    }

    .heroCarousel__slide:nth-child(20) {
        animation-delay: 95s;
    }

@keyframes heroFade {
    0% {
        opacity: 0;
        transform: scale(1.03);
    }

    4% {
        opacity: 1;
    }

    14% {
        opacity: 1;
    }

    18% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

.heroCarousel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.22), rgba(0,0,0,0.30)), radial-gradient(circle at center, rgba(255,255,255,0.05), rgba(0,0,0,0.16));
    z-index: 1;
}

.heroCarousel__overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

/* DESKTOP: la altura manda */
.heroCenterCard {
    height: 100%;
    width: min(1720px, 50vw);
    max-width: 96vw;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255,255,255,0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 4px 10px rgba(0,0,0,0.15);
}

.heroCarousel__banner {
    height: 100%;
    width: auto;
    max-width: calc(96vw - 16px);
    display: block;
    object-fit: contain;
}

/* ocultamos elementos viejos */
.heroCarousel__badges,
.heroDate,
.specialSymposium,
.adaa50,
.hero__meta {
    display: none !important;
}

/* TABLET */
@media (max-width: 900px) {
    .hero--carousel,
    .heroCarousel {
        height: auto;
        min-height: 320px;
        max-height: none;
    }

    .heroCarousel__overlay {
        padding: 10px;
    }

    /* a partir de acá manda el ancho */
    .heroCenterCard {
        width: min(94vw, 820px);
        height: auto;
        max-width: 94vw;
        padding: 8px;
    }

    .heroCarousel__banner {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 300px;
    }
}

@media (max-width: 560px) {
    .hero--carousel,
    .heroCarousel {
        height: auto;
        min-height: 220px;
        max-height: none;
    }

    .heroCarousel__overlay {
        padding: 6px;
    }

    .heroCenterCard {
        width: 96vw;
        height: auto;
        max-width: 96vw;
        aspect-ratio: auto;
        padding: 4px;
        border-radius: 12px;
    }

    .heroCarousel__banner {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: none;
    }
}

/* =========================
   ENVIO MAIL
   ========================= */
.receiptCard {
    margin-top: 24px;
    padding: 24px 24px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.10);
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)), radial-gradient(circle at top left, rgba(0,198,255,.12), transparent 32%), radial-gradient(circle at top right, rgba(255,0,200,.10), transparent 28%);
    box-shadow: 0 16px 34px rgba(0,0,0,.18);
    position: relative;
    overflow: hidden;
}

    .receiptCard::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 5px;
        background: linear-gradient(90deg,#00c6ff,#7a5cff,#ff00c8);
    }

.receiptHead {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.receiptBrandWrap {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    flex: 1;
}

.receiptLogo {
    width: 72px;
    height: auto;
    object-fit: contain;
    flex: 0 0 auto;
}

.receiptBrand {
    min-width: 0;
}

.receiptBrandTop {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: 6px;
}

.receiptMainTitle {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.1;
    font-weight: 800;
}

.receiptSubTitle {
    margin: 6px 0 0;
    font-size: .95rem;
    opacity: .82;
    line-height: 1.35;
}

.receiptCodeBox {
    min-width: 220px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    text-align: right;
}

.receiptCodeLabel {
    display: block;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .72;
    margin-bottom: 5px;
}

.receiptCodeValue {
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.2;
    word-break: break-word;
}

.receiptDivider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    margin: 2px 0 14px;
}

.receiptIntro {
    margin: 0 0 14px;
    line-height: 1.45;
    opacity: .92;
    font-size: .95rem;
}

.receiptGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    margin-bottom: 14px;
}

.receiptField {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
}

.receiptLabel {
    display: block;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    opacity: .7;
    margin-bottom: 5px;
}

.receiptValue {
    font-size: .93rem;
    line-height: 1.35;
    word-break: break-word;
}

.receiptSection {
    margin-top: 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    overflow: hidden;
    break-inside: avoid;
    page-break-inside: avoid;
}

.receiptSectionHead {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.receiptSectionBody {
    padding: 12px 14px;
    line-height: 1.5;
    white-space: pre-line;
    font-size: .94rem;
}

.receiptAbstractBody {
    max-height: none;
    overflow: visible;
}

.receiptFoot {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,.14);
    font-size: .88rem;
    line-height: 1.45;
    opacity: .82;
}

.receiptActions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

    .receiptActions .btnPrimary,
    .receiptActions .btnGhost {
        min-width: 180px;
        justify-content: center;
    }

.noPrint {
    display: flex;
}

@media (max-width: 860px) {
    .receiptHead {
        flex-direction: column;
    }

    .receiptBrandWrap {
        width: 100%;
    }

    .receiptCodeBox {
        width: 100%;
        min-width: 0;
        text-align: left;
    }

    .receiptGrid {
        grid-template-columns: 1fr;
    }

    .receiptMainTitle {
        font-size: 1.45rem;
    }

    .receiptLogo {
        width: 60px;
    }
}

@page {
    size: A4;
    margin: 12mm;
}

@media print {
    html, body {
        background: white !important;
        font-size: 12px !important;
    }

    header,
    footer,
    #site-header,
    #site-footer,
    .abstractForm,
    .abstractFormIntro,
    .formActions,
    .noPrint,
    .pageTitle {
        display: none !important;
    }

    .page,
    .section,
    .card,
    .abstractFormCard {
        background: white !important;
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
    }

    .receiptCard {
        margin: 0 !important;
        padding: 0 !important;
        color: #111 !important;
        background: white !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

        .receiptCard::before {
            height: 3px !important;
            background: #777 !important;
        }

    .receiptHead {
        gap: 10px !important;
        margin-bottom: 10px !important;
    }

    .receiptLogo {
        width: 58px !important;
    }

    .receiptBrandTop {
        font-size: 9px !important;
        margin-bottom: 4px !important;
    }

    .receiptMainTitle {
        font-size: 20px !important;
        margin: 0 !important;
    }

    .receiptSubTitle {
        font-size: 11px !important;
        margin-top: 4px !important;
        line-height: 1.2 !important;
    }

    .receiptCodeBox,
    .receiptField,
    .receiptSection {
        background: white !important;
        border: 1px solid #cfcfcf !important;
    }

    .receiptCodeBox {
        padding: 8px 10px !important;
    }

    .receiptCodeValue {
        font-size: 13px !important;
    }

    .receiptDivider {
        margin: 0 0 8px !important;
        background: #bbb !important;
    }

    .receiptIntro {
        margin: 0 0 8px !important;
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    .receiptGrid {
        gap: 6px 8px !important;
        margin-bottom: 8px !important;
    }

    .receiptField {
        padding: 7px 8px !important;
        border-radius: 0 !important;
    }

    .receiptLabel {
        font-size: 8px !important;
        margin-bottom: 3px !important;
    }

    .receiptValue {
        font-size: 10px !important;
        line-height: 1.2 !important;
    }

    .receiptSection {
        margin-top: 8px !important;
        border-radius: 0 !important;
    }

    .receiptSectionHead {
        padding: 6px 8px !important;
        background: #f5f5f5 !important;
        border-bottom: 1px solid #cfcfcf !important;
        font-size: 9px !important;
    }

    .receiptSectionBody {
        padding: 8px !important;
        font-size: 10px !important;
        line-height: 1.25 !important;
    }

    .receiptFoot {
        margin-top: 8px !important;
        padding-top: 8px !important;
        border-top: 1px dashed #bbb !important;
        font-size: 9px !important;
        line-height: 1.25 !important;
    }
}
/* =========================
   LAMLA
========================= */

.lamlaHeroCard {
    text-align: center;
    padding: clamp(24px, 4vw, 42px);
}

.lamlaEyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #666;
}

.lamlaTitleWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.lamlaLogo {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
}

.lamlaTitleWrap h1 {
    margin: 0;
}

.lamlaLead {
    max-width: 950px;
    margin: 14px auto 0;
    color: #000;
    line-height: 1.7;
}

.lamlaLangSwitcher {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.lamlaLangBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    color: #000 !important;
    font-weight: 600;
    transition: all 0.18s ease;
}

    .lamlaLangBtn:hover {
        transform: translateY(-2px);
        background: #f4f4f4;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .lamlaLangBtn.is-active {
        background: linear-gradient(135deg, rgba(0, 210, 255, 0.18), rgba(180, 0, 255, 0.18)), #ffffff;
        border-color: rgba(0, 0, 0, 0.22);
    }

.lamlaFlagImg {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    display: inline-block;
    flex: 0 0 auto;
}

.lamlaStack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lamlaSectionCard h2 {
    margin-top: 0;
    margin-bottom: 14px;
}

.lamlaSectionCard p,
.lamlaSectionCard li,
.lamlaSectionCard strong,
.lamlaSectionCard span {
    color: #000;
}

.lamlaSectionCard p {
    margin: 0 0 14px;
    line-height: 1.75;
}

    .lamlaSectionCard p:last-child,
    .lamlaSectionCard ul:last-child {
        margin-bottom: 0;
    }

.lamlaSectionCard ul {
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.75;
}

.lamlaCommitteeList {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lamlaCommitteeItem strong {
    display: block;
    margin-bottom: 4px;
}

.lamlaCommitteeAffiliation {
    display: block;
    color: #000;
}

@media (max-width: 768px) {
    .lamlaLogo {
        height: 58px;
    }

    .lamlaTitleWrap {
        gap: 12px;
    }
}