/* =========================================================
   CONGRESO ABOUT
   ========================================================= */

.congreso-about {
  padding: 4.8rem 0 4.4rem;
  overflow: hidden;
}

.congreso-about__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

/* -------------------------
   CONTENT DESKTOP
   ------------------------- */

.congreso-about__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: clamp(1rem, 3vw, 4rem);
}

.congreso-about__badge {
  position: relative;
  width: min(100%, 760px);
  margin-bottom: 1.9rem;
  z-index: 1;
}

.congreso-about__badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  border-radius: 0 58px 58px 0;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  z-index: -1;
}

.congreso-about__badge span {
  display: inline-flex;
  align-items: center;
  min-height: 84px;
  padding: 0 2rem 0 2.1rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 1.95vw, 2.1rem);
  font-weight: 700;
  line-height: 1.05;
}

.congreso-about__text {
  max-width: 760px;
}

.congreso-about__text p {
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  line-height: 1.5;
  color: var(--color-text);
}

.congreso-about__text strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* -------------------------
   MEDIA DESKTOP
   ------------------------- */

.congreso-about__media {
  display: flex;
  justify-content: flex-end;
}

.congreso-about__photo {
  width: 100%;
  max-width: 900px;
  margin: 0;
  overflow: hidden;
  border-radius: 999px 0 0 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.congreso-about__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* -------------------------
   TABLET
   ------------------------- */

@media (max-width: 1100px) {
  .congreso-about__shell {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding-inline: 1.4rem;
  }

  .congreso-about__media {
    order: -1;
    justify-content: center;
  }

  .congreso-about__photo {
    max-width: 100%;
    border-radius: 24px;
  }

  .congreso-about__content {
    padding: 0;
    align-items: center;
  }

  .congreso-about__badge {
    width: auto;
    margin-bottom: 1rem;
  }

  .congreso-about__badge::before {
    display: none;
  }

  .congreso-about__badge span {
    min-height: 58px;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    background: var(--color-primary);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    justify-content: center;
    text-align: center;
  }

  .congreso-about__text {
    max-width: 760px;
  }

  .congreso-about__text p {
    font-size: 1.08rem;
    line-height: 1.5;
    text-align: left;
  }
}

/* -------------------------
   MOBILE
   ------------------------- */

@media (max-width: 700px) {
  .congreso-about {
    padding: 3.6rem 0 3rem;
  }

  .congreso-about__shell {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding-inline: 1rem;
  }

  .congreso-about__media {
    order: -1;
    justify-content: center;
  }

  .congreso-about__photo {
    max-width: 100%;
    border-radius: 22px;
  }

  .congreso-about__content {
    padding: 0;
    align-items: center;
  }

  .congreso-about__badge {
    width: auto;
    margin-bottom: 1rem;
  }

  .congreso-about__badge::before {
    display: none;
  }

  .congreso-about__badge span {
    min-height: 54px;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    background: var(--color-primary);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    font-size: clamp(1rem, 5vw, 1.3rem);
    text-align: center;
    justify-content: center;
  }

  .congreso-about__text {
    max-width: 100%;
  }

  .congreso-about__text p {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* =========================================================
   CONGRESO FOCUS
   ========================================================= */

.congreso-focus {
  padding: 4.8rem 0 4.4rem;
  overflow: hidden;
}

.congreso-focus__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

/* -------------------------
   MEDIA DESKTOP
   ------------------------- */

.congreso-focus__media {
  display: flex;
  justify-content: flex-start;
}

.congreso-focus__photo {
  width: 100%;
  max-width: 900px;
  margin: 0;
  overflow: hidden;
  border-radius: 0 999px 999px 0;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.congreso-focus__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* -------------------------
   CONTENT DESKTOP
   ------------------------- */

.congreso-focus__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: clamp(1rem, 4vw, 5rem);
}

.congreso-focus__badge {
  position: relative;
  width: min(100%, 860px);
  margin-bottom: 1.9rem;
  z-index: 1;
}

.congreso-focus__badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: -100vw;
  bottom: 0;
  background: var(--color-secondary);
  border-radius: 58px 0 0 58px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  z-index: -1;
}

.congreso-focus__badge span {
  display: inline-flex;
  align-items: center;
  min-height: 84px;
  padding: 0 2.1rem 0 2rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(1.28rem, 1.8vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.congreso-focus__text {
  max-width: 760px;
}

.congreso-focus__text p {
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  line-height: 1.5;
  color: var(--color-text);
}

.congreso-focus__text strong {
  color: var(--color-secondary);
  font-weight: 700;
}

/* -------------------------
   TABLET
   ------------------------- */

@media (max-width: 1100px) {
  .congreso-focus__shell {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding-inline: 1.4rem;
  }

  .congreso-focus__media {
    order: -1;
    justify-content: center;
  }

  .congreso-focus__photo {
    max-width: 100%;
    border-radius: 24px;
  }

  .congreso-focus__content {
    padding: 0;
    align-items: center;
  }

  .congreso-focus__badge {
    width: auto;
    margin-bottom: 1rem;
  }

  .congreso-focus__badge::before {
    display: none;
  }

  .congreso-focus__badge span {
    min-height: 58px;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    background: var(--color-secondary);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    font-size: clamp(1.08rem, 2vw, 1.38rem);
    justify-content: center;
    text-align: center;
  }

  .congreso-focus__text {
    max-width: 760px;
  }

  .congreso-focus__text p {
    font-size: 1.08rem;
    line-height: 1.5;
    text-align: left;
  }
}

/* -------------------------
   MOBILE
   ------------------------- */

@media (max-width: 700px) {
  .congreso-focus {
    padding: 3.6rem 0 3rem;
  }

  .congreso-focus__shell {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding-inline: 1rem;
  }

  .congreso-focus__media {
    order: -1;
    justify-content: center;
  }

  .congreso-focus__photo {
    max-width: 100%;
    border-radius: 22px;
  }

  .congreso-focus__content {
    padding: 0;
    align-items: center;
  }

  .congreso-focus__badge {
    width: auto;
    margin-bottom: 1rem;
  }

  .congreso-focus__badge::before {
    display: none;
  }

  .congreso-focus__badge span {
    min-height: 54px;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    background: var(--color-secondary);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    font-size: clamp(1rem, 5vw, 1.28rem);
    text-align: center;
    justify-content: center;
  }

  .congreso-focus__text {
    max-width: 100%;
  }

  .congreso-focus__text p {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* =========================================================
   CONGRESO CONCEPTS
   ========================================================= */

.congreso-concepts {
  padding: 4.8rem 0 4.4rem;
  background: var(--color-white);
  position: relative;
}

.congreso-concepts .container {
  overflow: visible;
}

.congreso-concepts__list {
  overflow: visible;
}

.concept-card {
  overflow: visible;
}

.congreso-concepts__list {
  display: grid;
  gap: 2.8rem;
}

.concept-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.concept-card--image-left {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.concept-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.concept-card__eyebrow {
  margin: 0 0 0.45rem;
  color: var(--color-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.concept-card__title {
  margin: 0 0 0.7rem;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 2.2vw, 2.85rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.concept-card__text {
  margin: 0;
  max-width: 660px;
  color: var(--color-text);
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  line-height: 1.45;
}

.concept-card__media {
  display: flex;
}

.concept-card--image-right .concept-card__media {
  justify-content: flex-end;
}

.concept-card--image-left .concept-card__media {
  justify-content: flex-start;
}


.concept-card__photo {
  width: 150%;
  max-width: 900px;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.concept-card__photo--right {
  border-radius: 999px 0 0 999px;
}

.concept-card--image-right .concept-card__photo {
  margin-right: -12vw;
}

.concept-card__photo--left {
  border-radius: 0 999px 999px 0;
}

.concept-card--image-left .concept-card__photo {
  margin-left: -12vw;
}

.concept-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* -------------------------
   TABLET
   ------------------------- */

@media (max-width: 1100px) {
  .congreso-concepts {
    padding: 4rem 0 3.6rem;
  }

  .congreso-concepts__list {
    gap: 2.2rem;
  }

  .concept-card,
  .concept-card--image-left {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .concept-card__media {
    order: -1;
    justify-content: center !important;
  }

  .concept-card__photo,
  .concept-card__photo--right,
  .concept-card__photo--left {
    width: 100% !important;
    max-width: 100%;
    border-radius: 24px;
    margin: 0 !important;
  }

  .concept-card__content {
    align-items: center;
  }

  .concept-card__title,
  .concept-card__eyebrow {
    text-align: center;
  }

  .concept-card__text {
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.5;
    text-align: left;
  }
}

/* -------------------------
   MOBILE
   ------------------------- */

@media (max-width: 700px) {
  .congreso-concepts {
    padding: 3.6rem 0 3rem;
  }

  .congreso-concepts__list {
    gap: 2rem;
  }

  .concept-card__title {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
  }

  .concept-card__eyebrow {
    font-size: 0.82rem;
  }

  .concept-card__photo,
  .concept-card__photo--right,
  .concept-card__photo--left {
    border-radius: 22px;
  }

  .concept-card__text {
    font-size: 1rem;
    line-height: 1.42;
  }
}

/* =========================================================
   TEAM CARDS
   ========================================================= */

.team-cards {
  padding: 4.8rem 0 4.4rem;
}

.team-cards__head {
  display: flex;
  justify-content: center;
  margin-bottom: 2.4rem;
}

.team-cards__badge {
  width: min(100%, 420px);
  justify-content: center;
  color: var(--color-primary);
}

.team-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.team-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.7rem 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  align-self: auto;
  height: auto;
}

.team-card__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.team-card__logo-wrap {
  width: 100%;
  min-height: 96px;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__logo {
  max-width: 220px;
  max-height: 100px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.team-card__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--color-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.team-card__title {
  margin: 0 0 0.85rem;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.4vw, 1.45rem);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.team-card__body {
  overflow: hidden;
  transition: height 0.42s ease;
}

.team-card__body-inner {
  color: var(--color-text);
}

.team-card__body-inner p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.42;
}

.team-card__body-inner p:last-child {
  margin-bottom: 0;
}

.team-card__toggle {
  margin-top: 1.2rem;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-primary);
  font-weight: 700;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.team-card__toggle:hover {
  opacity: 0.85;
}

.team-card__toggle i {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.35s ease;
}

.team-card.is-expanded .team-card__toggle i {
  transform: rotate(180deg);
}

.team-card__toggle-label {
  font-size: 0.95rem;
}

/* -------------------------
   TABLET
   ------------------------- */

@media (max-width: 1100px) {
  .team-cards {
    padding: 4rem 0 3.6rem;
  }

  .team-cards__grid {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin: 0 auto;
  }
}

/* -------------------------
   MOBILE
   ------------------------- */

@media (max-width: 700px) {
  .team-cards {
    padding: 3.6rem 0 3rem;
  }

  .team-cards__head {
    margin-bottom: 1.6rem;
  }

  .team-cards__badge {
    width: 100%;
  }

  .team-card {
    padding: 1.4rem 1rem 1rem;
  }

  .team-card__logo-wrap {
    min-height: 82px;
    margin-bottom: 0.85rem;
  }

  .team-card__logo {
    max-width: 180px;
    max-height: 82px;
  }

  .team-card__title {
    font-size: 1.05rem;
  }

  .team-card__body-inner p {
    font-size: 0.98rem;
    line-height: 1.4;
  }
}

/* =========================================================
   CONGRESO EDITION
   ========================================================= */

.congreso-edition {
  padding: 4.8rem 0 4.4rem;
  overflow: hidden;
}

.congreso-edition__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.congreso-edition__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: clamp(1rem, 3vw, 4rem);
}

.congreso-edition__badge {
  position: relative;
  width: min(100%, 760px);
  margin-bottom: 1.9rem;
  z-index: 1;
}

.congreso-edition__badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 0 58px 58px 0;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  z-index: -1;
}

.congreso-edition__badge span {
  display: inline-flex;
  align-items: center;
  min-height: 84px;
  padding: 0 2rem 0 2.1rem;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 1.95vw, 2.1rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.congreso-edition__text {
  max-width: 700px;
}

.congreso-edition__text p {
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  line-height: 1.5;
  color: var(--color-text);
}

.congreso-edition__actions {
  margin-top: 1.8rem;
}

.congreso-edition__media {
  display: flex;
  justify-content: flex-end;
}

.congreso-edition__photo {
  width: 100%;
  max-width: 900px;
  margin: 0;
  overflow: hidden;
  border-radius: 999px 0 0 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.congreso-edition__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* -------------------------
   TABLET
   ------------------------- */

@media (max-width: 1100px) {
  .congreso-edition__shell {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding-inline: 1.4rem;
  }

  .congreso-edition__media {
    order: -1;
    justify-content: center;
  }

  .congreso-edition__photo {
    max-width: 100%;
    border-radius: 24px;
  }

  .congreso-edition__content {
    padding: 0;
    align-items: center;
  }

  .congreso-edition__badge {
    width: auto;
    margin-bottom: 1rem;
  }

  .congreso-edition__badge::before {
    display: none;
  }

  .congreso-edition__badge span {
    min-height: 58px;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    font-size: clamp(1.08rem, 2vw, 1.38rem);
    justify-content: center;
    text-align: center;
  }

  .congreso-edition__text {
    max-width: 760px;
  }

  .congreso-edition__text p {
    font-size: 1.08rem;
    line-height: 1.5;
    text-align: left;
  }

  .congreso-edition__actions {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

/* -------------------------
   MOBILE
   ------------------------- */

@media (max-width: 700px) {
  .congreso-edition {
    padding: 3.6rem 0 3rem;
  }

  .congreso-edition__shell {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding-inline: 1rem;
  }

  .congreso-edition__media {
    order: -1;
    justify-content: center;
  }

  .congreso-edition__photo {
    max-width: 100%;
    border-radius: 22px;
  }

  .congreso-edition__content {
    padding: 0;
    align-items: center;
  }

  .congreso-edition__badge {
    width: auto;
    margin-bottom: 1rem;
  }

  .congreso-edition__badge::before {
    display: none;
  }

  .congreso-edition__badge span {
    min-height: 54px;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    font-size: clamp(1rem, 5vw, 1.28rem);
    text-align: center;
    justify-content: center;
  }

  .congreso-edition__text {
    max-width: 100%;
  }

  .congreso-edition__text p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .congreso-edition__actions {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}