.cotec-agenda,
.cotec-event-single {
  --ca-ink: #302f2d;
  --ca-copy: #5b5652;
  --ca-muted: #756f6b;
  --ca-red: #b3070c;
  --ca-red-dark: #9e4f53;
  --ca-coral: #e99a7b;
  --ca-coral-dark: #b3070c;
  --ca-peach: #fff5ef;
  --ca-paper: #fff;
  --ca-mist: #f4f4f1;
  --ca-line: rgba(48,47,45,.11);
  --ca-shadow: 0 16px 40px rgba(66,53,47,.07);
  color: var(--ca-ink);
  font-family: inherit;
}
.cotec-agenda *,
.cotec-event-single * {
  box-sizing: border-box;
}
.cotec-agenda__heading {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(280px,.5fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}
.cotec-agenda__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--ca-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cotec-agenda__eyebrow::before {
  width: 31px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}
.cotec-agenda__heading h2 {
  margin: 0;
  color: var(--ca-ink);
  font-size: clamp(31px,3.2vw,46px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.06;
}
.cotec-agenda__heading p {
  max-width: 1900px;
  justify-self: end;
  margin: 0;
  color: var(--ca-copy);
  font-size: 15px;
  line-height: 1.7;
  white-space: nowrap;
}
.cotec-agenda__toolbar {
  display: grid;
  grid-template-columns: auto minmax(210px,1fr) auto auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid var(--ca-line);
  border-radius: 2px;
  background: #f6f5f2;
}
.cotec-agenda__status-tabs {
  display: flex;
  gap: 5px;
}
.cotec-agenda__status-tabs button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: #6c6662;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  transition: background .22s ease, color .22s ease, box-shadow .22s ease;
}
.cotec-agenda__status-tabs button span {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 2px;
  background: rgba(48,47,45,.07);
  font-size: 10px;
}
.cotec-agenda__status-tabs button[aria-pressed="true"] {
  background: #fff;
  color: var(--ca-ink);
  box-shadow: 0 7px 18px rgba(66,53,47,.07);
}
.cotec-agenda__status-tabs button[aria-pressed="true"] span {
  background: #f5ddd3;
  color: #9b5452;
}
.cotec-agenda__search,
.cotec-agenda__select {
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(48,47,45,.09);
  border-radius: 2px;
  background: rgba(255,255,255,.76);
}
.cotec-agenda__search {
  gap: 9px;
  padding: 0 13px;
}
.cotec-agenda__search svg {
  width: 17px;
  height: 17px;
  color: #8b837e;
}
.cotec-agenda__search input,
.cotec-agenda__select select {
  width: 100%;
  min-height: 40px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ca-ink);
  font: inherit;
  font-size: 12px;
}
.cotec-agenda__select select {
  min-width: 140px;
  padding: 0 32px 0 12px;
  cursor: pointer;
}
.cotec-agenda__list {
  display: grid;
  gap: 11px;
}
.cotec-event-card {
  position: relative;
  display: grid;
  grid-template-columns: 116px minmax(0,1fr) auto;
  gap: 25px;
  align-items: center;
  min-height: 158px;
  padding: 18px 22px 18px 18px;
  overflow: hidden;
  border: 1px solid var(--ca-line);
  border-radius: 2px;
  background:
    radial-gradient(circle at 92% 10%, rgba(233,154,123,.08), transparent 22%),
    #fff;
  box-shadow: 0 6px 22px rgba(66,53,47,.035);
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}
.cotec-event-card::after {
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 159px;
  height: 3px;
  border-radius: 2px;
  background: #b3070c;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.cotec-event-card:hover {
  border-color: rgba(183,93,96,.16);
  box-shadow: var(--ca-shadow);
  transform: translateY(-4px);
}
.cotec-event-card:hover::after {
  transform: scaleX(1);
}
.cotec-event-card[hidden] {
  display: none !important;
}
.cotec-event-card__date {
  width: 98px;
  min-height: 120px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 13px;
  border-radius: 2px;
  background: linear-gradient(145deg,#fae8df,#f2c9b8);
  color: var(--ca-ink);
  text-decoration: none !important;
}
.cotec-event-card__date span {
  color: #a8605b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}
.cotec-event-card__date strong {
  margin: 3px 0;
  font-size: 35px;
  font-weight: 680;
  letter-spacing: -.05em;
  line-height: 1;
  transition: color .2s ease;
}
.cotec-event-card__date small {
  color: #7b736e;
  font-size: 10px;
}
/* Fix: sem esta regra, o número do dia herdava o azul de :hover por omissão
   do tema (o link não tinha nenhuma cor própria definida para o estado hover).
   Agora, tanto ao passar o rato sobre o próprio selo de data como sobre o
   cartão inteiro, o número fica num coral mais escuro. */
.cotec-event-card__date:hover strong,
.cotec-event-card:hover .cotec-event-card__date strong {
  color: var(--ca-coral-dark) !important;
}
.cotec-event-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.cotec-event-card__labels span {
  padding: 6px 9px;
  border: 1px solid rgba(48,47,45,.10);
  border-radius: 2px;
  background: #f7f6f3;
  color: #716a66;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.cotec-event-card__labels span.is-exclusive {
  border-color: rgba(183,93,96,.13);
  background: #fae8e0;
  color: #9c5553;
}
.cotec-event-card h3 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(18px,1.65vw,24px);
  font-weight: 690;
  letter-spacing: -.026em;
  line-height: 1.18;
}
.cotec-event-card h3 a {
  color: var(--ca-ink);
  text-decoration: none !important;
}
.cotec-event-card__meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 13px 0 0;
  color: var(--ca-copy);
  font-size: 13px;
  line-height: 1.5;
}
.cotec-event-card__meta svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  color: var(--ca-coral);
}
.cotec-event-card__actions {
  min-width: 90px;
  display: grid;
  justify-items: end;
  gap: 28px;
}
.cotec-event-card__status {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f1efec;
  color: #746e69;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cotec-event-card__status.is-upcoming {
  background: #f7dfd5;
  color: #9d5553;
}
.cotec-event-card__arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(48,47,45,.11);
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  color: #a85e5a;
  transition: transform .24s ease, background .24s ease;
}
.cotec-event-card__arrow svg {
  width: 17px;
  height: 17px;
}
.cotec-event-card:hover .cotec-event-card__arrow {
  background: #fff;
  transform: translateX(4px);
}
.cotec-agenda__empty {
  padding: 65px 24px;
  border: 1px dashed rgba(48,47,45,.17);
  border-radius: 20px;
  background: #f7f6f3;
  text-align: center;
}
.cotec-agenda__empty span {
  display: block;
  color: var(--ca-coral);
  font-size: 48px;
  line-height: 1;
}
.cotec-agenda__empty h3 {
  margin: 13px 0 7px;
  font-size: 20px;
}
.cotec-agenda__empty p {
  margin: 0 0 18px;
  color: var(--ca-copy);
  font-size: 13px;
}
.cotec-agenda__empty button {
  min-height: 40px;
  padding: 9px 15px;
  border: 0;
  border-radius: 999px;
  background: var(--ca-red);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}
.cotec-agenda--featured .cotec-agenda__list {
  grid-template-columns: repeat(3,minmax(0,1fr));
}
.cotec-agenda--featured .cotec-event-card {
  grid-template-columns: 82px minmax(0,1fr);
  align-items: start;
}
.cotec-agenda--featured .cotec-event-card__date {
  width: 72px;
  min-height: 90px;
}
.cotec-agenda--featured .cotec-event-card__actions {
  grid-column: 1 / -1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Single event */
.cotec-event-single {
  overflow: hidden;
  background: #fff;
}
.cotec-event-single__container {
  width: min(calc(100% - 40px),1280px);
  margin-inline: auto;
}
.cotec-event-single__hero {
  position: relative;
  padding: clamp(35px,5vw,72px) 0 clamp(62px,7vw,100px);
  background:
    radial-gradient(circle at 88% 8%,rgba(233,154,123,.16),transparent 25%),
    linear-gradient(180deg,#fff,#f5f5f2);
}
.cotec-event-single__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 38px;
  color: #746d68;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
  transition: color .22s ease;
}
.cotec-event-single__back-arrow {
  display: inline-block;
  transition: transform .22s ease;
}
/* Fix: sem estas regras o link herdava o azul de :hover/:active por omissão
   do tema (tal como acontecia no número do dia dos cartões). Mantém sempre
   o mesmo coral escuro, em hover, foco e clique, com uma pequena animação
   discreta na seta em vez de mudar de cor bruscamente. */
.cotec-event-single__back:hover,
.cotec-event-single__back:focus-visible,
.cotec-event-single__back:active,
.cotec-event-single__back:visited {
  color: var(--ca-coral-dark) !important;
}
.cotec-event-single__back:hover .cotec-event-single__back-arrow,
.cotec-event-single__back:focus-visible .cotec-event-single__back-arrow,
.cotec-event-single__back:active .cotec-event-single__back-arrow {
  transform: translateX(-4px);
}
.cotec-event-single__hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(300px,.55fr);
  gap: clamp(45px,7vw,100px);
  align-items: end;
}
.cotec-event-single__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}
.cotec-event-single__labels span {
  padding: 7px 10px;
  border: 1px solid rgba(48,47,45,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #776f6b;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cotec-event-single h1 {
  max-width: 860px;
  margin: 0;
  color: var(--ca-ink);
  font-size: clamp(38px,4.7vw,64px);
  font-weight: 720;
  letter-spacing: -.048em;
  line-height: 1.04;
}
.cotec-event-single__lead {
  max-width: 750px;
  margin: 21px 0 0;
  color: var(--ca-copy);
  font-size: 17px;
  line-height: 1.65;
}
.cotec-event-single__summary {
  display: grid;
  gap: 18px;
  padding-left: 30px;
  border-left: 1px solid var(--ca-line);
}
.cotec-event-single__summary div {
  display: grid;
  gap: 5px;
}
.cotec-event-single__summary small,
.cotec-event-single__detail small {
  color: #a45a57;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.cotec-event-single__summary strong {
  color: #45403d;
  font-size: 14px;
  line-height: 1.5;
}
.cotec-event-single__body-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,.34fr);
  gap: clamp(48px,7vw,95px);
  padding-top: clamp(58px,7vw,100px);
  padding-bottom: clamp(70px,8vw,120px);
}
.cotec-event-single__image {
  margin: 0 0 38px;
  overflow: hidden;
  border-radius: 22px;
}
.cotec-event-single__image img {
  width: 100%;
  height: auto;
  display: block;
}
.cotec-event-single__prose {
  color: var(--ca-copy);
  font-size: 16px;
  line-height: 1.8;
}
.cotec-event-single__prose h2 {
  margin: 1.5em 0 .65em;
  color: var(--ca-ink);
  font-size: 30px;
  letter-spacing: -.03em;
}
.cotec-event-single__prose h3 {
  margin: 1.35em 0 .55em;
  color: var(--ca-ink);
  font-size: 22px;
}
.cotec-event-single__sidebar {
  align-self: start;
  position: sticky;
  top: 110px;
}
.cotec-event-single__side-card {
  padding: 26px;
  border: 1px solid var(--ca-line);
  border-radius: 20px;
  background: #f6f5f2;
}
.cotec-event-single__status {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eceae7;
  color: #736d68;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.cotec-event-single__status.is-upcoming {
  background: #f7dfd5;
  color: #9d5553;
}
.cotec-event-single__detail {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--ca-line);
}
.cotec-event-single__detail p {
  margin: 7px 0 0;
  color: #554f4b;
  font-size: 13px;
  line-height: 1.6;
}
.cotec-event-single__side-actions {
  display: grid;
  gap: 9px;
  margin-top: 25px;
}
.cotec-agenda-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ca-red);
  color: #fff !important;
  font-size: 12px;
  font-weight: 730;
  text-decoration: none !important;
}
.cotec-agenda-button--outline {
  border-color: rgba(48,47,45,.14);
  background: #fff;
  color: var(--ca-ink) !important;
}
@media (max-width: 1024px) {
  .cotec-agenda__heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .cotec-agenda__heading p {
    max-width: 680px;
    justify-self: start;
    white-space: normal;
  }
  .cotec-agenda__toolbar {
    grid-template-columns: 1fr 1fr;
  }
  .cotec-agenda__status-tabs,
  .cotec-agenda__search {
    grid-column: 1 / -1;
  }
  .cotec-event-single__hero-grid,
  .cotec-event-single__body-grid {
    grid-template-columns: 1fr;
  }
  .cotec-event-single__summary {
    grid-template-columns: repeat(3,minmax(0,1fr));
    padding: 24px 0 0;
    border-top: 1px solid var(--ca-line);
    border-left: 0;
  }
  .cotec-event-single__sidebar {
    position: static;
  }
  .cotec-agenda--featured .cotec-agenda__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .cotec-agenda__toolbar {
    display: block;
    padding: 9px;
    border-radius: 16px;
  }
  .cotec-agenda__status-tabs {
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .cotec-agenda__status-tabs::-webkit-scrollbar {
    display: none;
  }
  .cotec-agenda__status-tabs button {
    flex: 0 0 auto;
  }
  .cotec-agenda__search,
  .cotec-agenda__select {
    margin-top: 7px;
  }
  .cotec-agenda__select select {
    min-width: 0;
  }
  .cotec-event-card {
    grid-template-columns: 76px minmax(0,1fr);
    gap: 15px;
    padding: 15px;
    border-radius: 17px;
  }
  .cotec-event-card::after {
    right: 16px;
    left: 106px;
  }
  .cotec-event-card__date {
    width: 72px;
    min-height: 91px;
    padding: 10px;
  }
  .cotec-event-card__date strong {
    font-size: 29px;
  }
  .cotec-event-card__actions {
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 3px;
  }
  .cotec-event-card__labels span {
    font-size: 8px;
  }
  .cotec-event-card h3 {
    font-size: 18px;
  }
  .cotec-event-card__meta {
    align-items: flex-start;
    font-size: 12px;
  }
  .cotec-event-single__container {
    width: min(calc(100% - 30px),1280px);
  }
  .cotec-event-single__hero {
    padding-top: 26px;
  }
  .cotec-event-single h1 {
    font-size: clamp(35px,10vw,46px);
  }
  .cotec-event-single__summary {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 420px) {
  .cotec-event-card {
    grid-template-columns: 68px minmax(0,1fr);
    gap: 12px;
    padding: 13px;
  }
  .cotec-event-card__date {
    width: 64px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cotec-agenda *,
  .cotec-event-single * {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }
}
