/* Compilado a mano desde assets/scss/. Comentarios por sección. */

/* ===== Base ===== */
html {
  min-height: 100%;
  --ic-scale: 1;
  font-size: calc(16px * var(--ic-scale));
}
@media (min-width: 992px) {
  html {
    --ic-scale: min(1, 100vw / 1920px);
  }
  .container {
    max-width: calc(1320px * var(--ic-scale));
  }
}
@media (max-width: 991px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

body {
  font-family: "Roboto", system-ui, sans-serif;
  color: #656565;
  min-height: 100%;
  background: linear-gradient(to bottom, #f8f8f8 0%, #f5f5f5 100%);
}

.ic-main {
  padding-bottom: 7rem;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #4aa3d9;
}

.ic-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.ic-brand__img {
  display: block;
  height: 1.125rem;
  width: auto;
  max-width: none;
  aspect-ratio: 3346 / 383;
  object-fit: contain;
  object-position: left center;
}
.ic-brand--lg .ic-brand__img {
  height: 1.25rem;
}

.ic-shadow {
  overflow: visible;
  box-shadow: -7px 7px 0 0 rgba(0, 0, 0, 0.04);
}

/* ===== Header ===== */
.ic-header {
  background: #ffffff;
}
.ic-navbar {
  min-height: 5.125rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.ic-navbar .navbar-nav .nav-link {
  color: #818f98;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-inline: 0.7rem;
}
@media (min-width: 992px) {
  .ic-navbar .navbar-nav .nav-link {
    font-size: 0.86rem;
  }
}
.ic-navbar .navbar-nav .nav-link:hover,
.ic-navbar .navbar-nav .nav-link.active {
  color: #e56b28;
  font-weight: 400;
}
.ic-toggler {
  border: 0;
  width: 28px;
  height: 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ic-toggler span {
  display: block;
  height: 2px;
  background: #8a8a8a;
  width: 100%;
}
.ic-toggler:focus {
  box-shadow: none;
}
@media (max-width: 991px) {
  .ic-header {
    overflow-x: clip;
  }
  .ic-navbar {
    --ic-nav-bar: 4.75rem;
    align-items: stretch;
    min-height: var(--ic-nav-bar);
    padding-top: 0;
    padding-bottom: 0;
  }
  .ic-navbar .container {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: var(--ic-nav-bar) auto;
    align-items: center;
    min-height: 0;
  }
  .ic-navbar .navbar-brand {
    grid-column: 1;
    grid-row: 1;
  }
  .ic-navbar .ic-toggler {
    grid-column: 2;
    grid-row: 1;
  }
  .ic-navbar .navbar-collapse {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    background-color: #e06b26;
    background-image: linear-gradient(180deg, #e06b26 0%, #ed8345 100%);
    border-bottom: 1px solid #ffffff;
  }
  .ic-navbar .navbar-nav {
    width: 100%;
    margin: 0;
    padding: 2.35rem 1.5rem 2.6rem;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .ic-navbar .navbar-nav .nav-link {
    color: #ffddc9;
    font-weight: 300;
    font-size: 1.05rem;
    padding: 0.1rem 0.5rem;
  }
  .ic-navbar .navbar-nav .nav-link:hover,
  .ic-navbar .navbar-nav .nav-link:focus,
  .ic-navbar .navbar-nav .nav-link:focus-visible {
    color: #ffddc9;
    font-weight: 300;
  }
  .ic-navbar .navbar-nav .nav-link.active {
    color: #ffffff;
    font-weight: 500;
  }
}

/* ===== Buscador ===== */
.ic-searchbar {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 12vh;
  background-color: #ed8345;
  background-image: linear-gradient(79deg, #ed8345 0%, #e06b26 100%);
  padding: 0;
  border-bottom: 2px solid #ffffff;
}
.ic-searchbar .ic-banner__dotter {
  height: 83%;
  opacity: 1;
}
.ic-searchbar > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.ic-searchbar .ic-search {
  max-width: 21.25rem;
  padding: 0.22rem 0.7rem;
}
.ic-searchbar .ic-search__input {
  padding: 0.28rem 0.45rem;
  font-size: 0.8rem;
}
.ic-searchbar .ic-search__btn svg {
  width: 0.9375rem;
  height: 0.9375rem;
}
@media (max-width: 991px) {
  .ic-searchbar {
    min-height: 4rem;
    align-items: stretch;
  }
  .ic-searchbar .ic-banner__dotter {
    display: none;
  }
  .ic-searchbar > .container {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    min-height: 4rem;
    padding-right: 0;
  }
  .ic-searchbar .ic-search {
    max-width: none;
    height: auto;
    align-self: stretch;
    align-items: stretch;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .ic-searchbar .ic-search__btn {
    order: 2;
    width: 4rem;
    align-self: stretch;
    background: #ffac63;
    color: #ffd7a9;
    border-radius: 0;
  }
  .ic-searchbar .ic-search__btn svg {
    width: 22px;
    height: 22px;
  }
  .ic-searchbar .ic-search__input {
    order: 1;
    width: 12.5rem;
    align-self: stretch;
    height: auto;
    background-color: #f0742c;
    background-image: linear-gradient(90deg, #ff8731 0%, #f0742c 100%);
    border-left: 1px solid #ffac63;
    color: #ffffff;
    font-size: 0.85rem;
    overflow: hidden;
    max-width: 0;
    padding: 0;
    border-left-width: 0;
    transition: max-width 0.28s ease, padding 0.28s ease;
  }
  .ic-searchbar .ic-search__input::placeholder {
    color: #ffd4a8;
  }
  .ic-searchbar .ic-search__input:not(:placeholder-shown) {
    color: #ffffff;
  }
  .ic-searchbar .ic-search.is-open .ic-search__input {
    max-width: 12.5rem;
    padding: 0 0.85rem;
    border-left-width: 1px;
  }
}
.ic-search {
  display: flex;
  align-items: center;
  max-width: 26.25rem;
  background: #ffffff;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  box-sizing: border-box;
  border-style: solid;
  border-width: 3px 0 0 3px;
  border-color: #e27839;
}
.ic-search__btn {
  border: 0;
  background: transparent;
  color: #8a8a8a;
  padding: 0;
  display: grid;
  place-items: center;
}
.ic-search__input {
  border: 0;
  outline: 0;
  width: 100%;
  padding: 0.45rem 0.6rem;
  font-size: 0.9rem;
  color: #656565;
}
.ic-search__input::placeholder {
  color: #b0b0b0;
}
.ic-search__input::-webkit-search-decoration,
.ic-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.ic-banner {
  position: relative;
  overflow: hidden;
  background-color: #e06b26;
  background-image: linear-gradient(40deg, #e06b26 30%, #ed8345 100%);
  min-height: 7.25rem;
  display: flex;
  align-items: stretch;
  border-bottom: 2px solid #ffffff;
}
.ic-banner > .container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
}
.ic-banner__dotter {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 75%;
  width: auto;
  max-width: none;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}
.ic-banner__row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 7.25rem;
  width: 100%;
}
.ic-banner__title {
  margin: 0;
  padding: 0;
  align-self: flex-end;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6.5vw, 4.4rem);
  text-box-trim: trim-end;
  text-box-edge: cap alphabetic;
  color: #ff853d;
  background-image: linear-gradient(to bottom, #ff853d 50%, #ffa26b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@supports not (text-box-trim: trim-end) {
  .ic-banner__title {
    line-height: 0.72;
  }
}
.ic-banner__search {
  display: flex;
  align-items: center;
}
.ic-banner__search-toggle {
  border: 0;
  background: transparent;
  color: #ffffff;
}
.ic-banner__search-panel {
  display: block;
}
.ic-banner .ic-search {
  min-width: min(100%, 360px);
  margin: 0.35rem 0;
  padding: 0.28rem 0.75rem;
}
.ic-banner .ic-search .ic-search__input {
  padding: 0.22rem 0.45rem;
  font-size: 0.78rem;
}
@media (max-width: 991px) {
  .ic-banner {
    min-height: 5rem;
  }
  .ic-banner .ic-banner__dotter {
    display: none;
  }
  .ic-banner__row {
    min-height: 5rem;
  }
  .ic-banner__title {
    font-size: 2.15rem;
    letter-spacing: 0;
    white-space: nowrap;
    max-width: calc(100% - 3.7rem);
  }
  .ic-banner__search {
    position: absolute;
    top: 0;
    right: -1.5rem;
    bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    z-index: 2;
  }
  .ic-banner__search-toggle {
    width: 5rem;
    height: 100%;
    flex-shrink: 0;
    background: #ffac63;
    color: #ffd7a9;
    display: grid;
    place-items: center;
  }
  .ic-banner__search-panel {
    display: flex;
    align-items: stretch;
    max-width: 0;
    overflow: hidden;
    transition: max-width 0.28s ease;
  }
  .ic-banner__search.is-open .ic-banner__search-panel {
    max-width: 13.5rem;
  }
  .ic-banner .ic-search {
    min-width: 13.5rem;
    width: 13.5rem;
    height: 100%;
    margin: 0;
    padding: 0 0.85rem 0 1.3rem;
    border: 0;
    border-radius: 0;
    background-color: #f0742c;
    background-image: linear-gradient(90deg, #ff8731 0%, #f0742c 100%);
    border-left: 1px solid #ffac63;
    display: flex;
    align-items: stretch;
  }
  .ic-banner .ic-search .ic-search__btn {
    display: none;
  }
  .ic-banner .ic-search .ic-search__input {
    color: #ffffff;
    background: transparent;
    padding: 0;
    font-size: 0.85rem;
  }
  .ic-banner .ic-search .ic-search__input::placeholder {
    color: #ffd4a8;
  }
  .ic-banner .ic-search .ic-search__input:not(:placeholder-shown) {
    color: #ffffff;
  }
}

.ic-filters {
  background: transparent;
  padding: 0 0 0.5rem;
  border-bottom: 0;
}
.ic-filters__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ic-filters__row:not(:has(.ic-filters__cats)) {
  justify-content: flex-end;
}
.ic-filters__expand {
  display: none;
}
.ic-filters__lead {
  min-width: 0;
}
.ic-filters__cats {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  border: 0;
}
.ic-filters__cats .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #808080;
  text-decoration: none;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 200;
  line-height: 1.2;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.ic-filters__cats .nav-link .fa-angle-down {
  visibility: hidden;
  height: 0.85em;
  margin-top: 0.2rem;
  font-size: 0.65em;
  font-weight: 900;
  color: #808080;
}
.ic-filters__cats .nav-link:hover,
.ic-filters__cats .nav-link:focus,
.ic-filters__cats .nav-link:focus-visible {
  color: #808080;
  font-weight: 400;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.ic-filters__cats .nav-link.active {
  color: #808080;
  font-weight: 400;
  background: transparent;
  border: 0;
}
.ic-filters__cats .nav-link.active .fa-angle-down {
  visibility: visible;
}
.ic-filters__filtrar {
  position: relative;
  width: 9.5rem;
  line-height: 0;
}
.ic-filters__filtrar .fa-caret-down {
  position: absolute;
  right: 8px;
  top: auto;
  bottom: 0;
  z-index: 0;
  display: block;
  color: #90c9ee;
  font-size: 1.32rem;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
  transform: translateY(calc(100% - 0.32em - 3px));
}
.ic-filters__filtrar input {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 0;
  border-radius: 0;
  border-right: 1px solid #90c9ee;
  border-bottom: 2px solid #90c9ee;
  background: #ffffff;
  color: #90c9ee;
  padding: 0.4rem 0.65rem;
  font-size: 0.8rem;
  line-height: 1.2;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}
.ic-filters__filtrar input::placeholder {
  color: #90c9ee;
  opacity: 0.85;
}
.ic-filters__filtrar input:focus {
  background: #eafbff;
  border-right-color: #90c9ee;
  border-bottom-color: #90c9ee;
  box-shadow: none;
  outline: none;
}
.ic-filters__filtrar input:focus::placeholder {
  color: #6eb0da;
  opacity: 1;
}
.ic-filters__filtrar input:not(:placeholder-shown) {
  background: #90c9ee;
  color: #ffffff;
}
.ic-filters__filtrar input::-webkit-search-decoration,
.ic-filters__filtrar input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
@media (max-width: 991px) {
  .ic-filters__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 3.8rem;
    row-gap: 0.7rem;
  }
  .ic-filters__lead {
    display: contents;
  }
  .ic-filters__expand {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    grid-column: 1;
    grid-row: 1;
    width: max-content;
    border: 0;
    background: transparent;
    padding: 0;
    color: #8a8a8a;
    font-family: "Roboto", system-ui, sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1;
  }
  .ic-filters__expand .fa-angle-down {
    color: #e56b28;
    font-size: 0.72em;
    font-weight: 900;
    transition: transform 0.2s ease;
  }
  .ic-filters.is-open .ic-filters__expand .fa-angle-down {
    transform: rotate(180deg);
  }
  .ic-filters__cats {
    grid-column: 1;
    grid-row: 2;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0;
  }
  .ic-filters__cats .nav-link {
    display: flex;
    align-items: flex-start;
    text-align: left;
    font-size: 1.55rem;
    line-height: 0.98;
    order: 2;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding-bottom: 0;
    pointer-events: none;
    transition: max-height 0.28s ease, opacity 0.22s ease, margin 0.28s ease;
  }
  .ic-filters__cats .nav-link .fa-angle-down {
    display: none;
  }
  .ic-filters__cats .nav-link.active {
    order: 1;
    max-height: 7.5em;
    opacity: 1;
    padding-bottom: 0.05em;
    overflow: visible;
    pointer-events: auto;
  }
  .ic-filters.is-open .ic-filters__cats .nav-link:not(.active) {
    max-height: 7.5em;
    opacity: 1;
    margin-top: 1.15rem;
    padding-bottom: 0.05em;
    overflow: visible;
    pointer-events: auto;
  }
  .ic-filters__filtrar {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    width: 7.5rem;
  }
  .ic-filters:not(:has(.ic-filters__expand)) .ic-filters__cats {
    grid-row: 1;
    align-self: center;
  }
  .ic-filters:not(:has(.ic-filters__expand)) .ic-filters__filtrar {
    grid-row: 1;
    align-self: center;
  }
}
.ic-back {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #e56b28;
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 300;
}
.ic-back a {
  color: inherit;
  text-decoration: none;
}
.ic-back a:hover,
.ic-back a:focus-visible {
  text-decoration: underline;
}
.ic-back i {
  font-weight: 900;
  font-size: 0.75em;
}
@media (min-width: 992px) {
  .ic-back {
    font-size: 1.2rem;
    margin-bottom: 1.85rem;
  }
}
@media (max-width: 991px) {
  .ic-back {
    font-size: 1.125rem;
  }
}

/* ===== Footer ===== */
.ic-footer__inner {
  display: grid;
  grid-template-columns: minmax(17.5rem, 38%) 1fr;
}
.ic-footer__brand {
  position: relative;
  background: #ffffff;
  padding: 3.2rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}
.ic-footer__brand::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background-image: linear-gradient(to right, #fba08a 0%, #fba08a 50%, #ffd99a 100%);
  pointer-events: none;
}
.ic-footer__legal {
  margin: 0.85rem 0 0;
  color: #8a8a8a;
  font-size: 0.8rem;
  line-height: 1.4;
}
.ic-footer__panel {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 8%;
  background-color: #e06b26;
  background-image: linear-gradient(138deg, #ef762f 0%, #e06b26 40%);
}
.ic-footer__dotter {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 50%;
  width: auto;
  max-width: none;
  pointer-events: none;
  z-index: 0;
}
.ic-footer__cols {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.6rem;
}
.ic-footer__label {
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 1.44rem;
  font-weight: 300;
  color: #ffbf99;
  margin-bottom: 0.7rem;
}
.ic-footer__mail {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.ic-footer__mail i {
  color: #ffcdb1;
}
.ic-footer__mail:hover,
.ic-footer__mail:focus,
.ic-footer__mail:visited {
  color: #ffffff;
  text-decoration: none;
}
.ic-footer__mail:hover i,
.ic-footer__mail:focus i,
.ic-footer__mail:visited i {
  color: #ffcdb1;
}
.ic-social {
  display: flex;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ic-social li {
  line-height: 0;
}
.ic-social a,
.ic-social a:hover,
.ic-social a:focus,
.ic-social a:focus-visible,
.ic-social a:active,
.ic-social a:visited {
  color: #ffffff;
  font-size: 1.85rem;
  line-height: 0;
  display: block;
  text-decoration: none;
  box-shadow: none;
  background: none;
  border: 0;
  opacity: 1;
}
.ic-social i {
  display: block;
  line-height: 1;
}

/* ===== Carousel ===== */
.ic-carousel {
  position: relative;
  border-bottom: 1px solid #ffffff;
}
.ic-carousel__img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(1);
}
.ic-carousel__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding-top: calc(11vh + 9px + 1.1rem);
  background: none;
}
.ic-carousel__title {
  max-width: 22em;
  color: #ffffff;
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}
.ic-carousel__title strong,
.ic-carousel__title b {
  font-weight: 500;
}
.ic-carousel .carousel-item {
  position: relative;
  height: 50vh;
  background: linear-gradient(180deg, #818f98 0%, #a7c6da 100%);
}
.ic-carousel .carousel-indicators {
  justify-content: flex-start;
  margin: 0;
  left: 0;
  right: 0;
  width: 100%;
  bottom: auto;
  top: 11vh;
}
.ic-carousel .carousel-indicators .container {
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  .ic-carousel .carousel-indicators .container {
    padding-right: 0;
  }
}
.ic-carousel .carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ffffff;
  opacity: 1;
}
.ic-carousel .carousel-indicators [data-bs-target].active {
  background: #ffffff;
}
@media (max-width: 991px) {
  .ic-carousel__img,
  .ic-carousel .carousel-item {
    height: 36vh;
  }
  .ic-carousel .carousel-item {
    background: linear-gradient(180deg, #4c5d68 0%, #a7c6da 100%);
  }
  .ic-carousel__overlay {
    align-items: center;
    justify-content: center;
    padding-top: 1.75rem;
    padding-bottom: 3rem;
    text-align: center;
  }
  .ic-carousel__overlay .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ic-carousel__title {
    text-align: center;
    font-size: 1.85rem;
    margin-bottom: 2rem;
  }
  .ic-carousel .carousel-indicators {
    top: auto;
    bottom: 1.4rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .ic-carousel .carousel-indicators .container {
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 0.3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .ic-carousel .carousel-indicators [data-bs-target] {
    pointer-events: auto;
    margin: 0;
  }
  .ic-carousel .carousel-indicators [data-bs-target].active {
    box-shadow: none;
    background: #ffffff;
  }
  .ic-carousel .carousel-control-prev,
  .ic-carousel .carousel-control-next {
    top: auto;
    bottom: 1.4rem;
    width: 2.75rem;
    height: 2.75rem;
    opacity: 0.9;
  }
}
.ic-btn-ghost {
  background: #ffffff;
  color: #f68b4c;
  border: 0;
  border-radius: 2px;
  outline: none;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.15);
  transition: padding 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}
.ic-btn-ghost:focus,
.ic-btn-ghost:focus-visible,
.ic-btn-ghost:active,
.ic-btn-ghost:active:focus {
  background: #ffffff;
  color: #f68b4c;
  border: 0;
  outline: none;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.15);
}
.ic-btn-ghost:hover,
.ic-btn-ghost:hover:focus,
.ic-btn-ghost:hover:focus-visible {
  background: #ffffff;
  color: #f68b4c;
  border: 0;
  outline: none;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.15);
  padding: 0.55rem 1.4rem;
}

/* ===== Novedades / Publicaciones / Videos ===== */
.ic-block {
  padding-top: 1.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 992px) {
  .home .ic-block + .ic-block {
    padding-top: 3.25rem;
  }
}
.ic-section-head {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
@media (min-width: 992px) {
  .ic-section-head {
    margin-bottom: 2.5rem;
  }
}
.ic-section-head__title {
  display: flex;
  align-items: center;
    gap: 0.3rem;
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 300;
  color: #8a8a8a;
  font-size: 1.95rem;
  line-height: 1;
  margin: 0;
}
.ic-section-head__all {
  font-family: "Roboto Slab", Georgia, serif;
  color: #e56b28;
  text-decoration: none;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2px;
}
.ic-section-head__all:hover {
  color: #e56b28;
  text-decoration: underline;
}
.ic-section-head__caret {
  color: #e0e0e0;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2px;
}
.ic-dotter {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  border: 3px solid #cfcfcf;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}
.ic-dotter::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #cfcfcf;
}

.ic-novedades .row,
.ic-listing .row:has(.ic-nota) {
  --bs-gutter-x: calc(3.5rem * 2 / 3);
  --bs-gutter-y: calc(4.5rem * 2 / 3);
}
@media (max-width: 991px) {
  .ic-novedades .row,
  .ic-listing .row:has(.ic-nota) {
    --bs-gutter-y: 1.5rem;
  }
}

.ic-publicaciones__row {
  --bs-gutter-x: 2rem;
}
@media (min-width: 992px) {
  .ic-publicaciones__row {
    flex-wrap: nowrap;
  }
}

.ic-nota {
  background: #ffffff;
  height: 100%;
  overflow: visible;
  border: 1px solid #d0d0d0;
  display: flex;
  flex-direction: column;
  --ic-nota-hover: 0.35s;
}
@media (min-width: 992px) {
  .ic-nota {
    --ic-nota-hover: 0.22s;
  }
}
.ic-nota.ic-shadow {
  box-shadow: -7px 7px 0 0 rgba(0, 0, 0, 0.04);
}
.ic-nota__link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.ic-nota__link:hover .ic-nota__media img {
  transform: scale(1.08);
}
@media (min-width: 992px) {
  .ic-nota__link:hover .ic-nota__media--placeholder {
    background: #fff2e4;
  }
  .ic-nota__link:hover .ic-nota__media--placeholder i {
    color: #ff8b42;
    transform: scale(1.08);
  }
  .ic-nota__link:hover .ic-nota__title {
    color: #e86d26;
  }
}
.ic-nota__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 220 / 143;
}
.ic-nota__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.15);
  transform: scale(1);
  transition: transform var(--ic-nota-hover) ease;
}
.ic-nota__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  container-type: inline-size;
  background: #f6dfcc;
  transition: background-color var(--ic-nota-hover) ease;
}
.ic-nota__media--placeholder i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-size: 2.4rem;
  font-size: 32cqi;
  font-weight: 900;
  color: #e6c1a6;
  transform: scale(1);
  transform-origin: center center;
  transition: transform var(--ic-nota-hover) ease, color var(--ic-nota-hover) ease;
}
.ic-nota__media--placeholder i::before {
  display: block;
  line-height: 1;
}
@media (min-width: 992px) {
  .ic-nota__media--placeholder i {
    font-size: 1.2rem;
    font-size: 16cqi;
  }
}
.ic-nota__body {
  border-top: 3px solid #ff8b42;
  padding: 1.5rem 1.2rem 1.2rem;
}
.ic-nota__title {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  line-height: 1.12;
  color: #656565;
  transition: color var(--ic-nota-hover) ease;
}
.ic-nota__excerpt {
  color: #919191;
  font-size: 0.8rem;
  line-height: 1.25;
  margin: 0;
}

.ic-cover {
  aspect-ratio: 200 / 290;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.ic-cover--placeholder {
  container-type: size;
  padding: 0;
  background: #f6dfcc;
  transition: background-color 0.22s ease;
}
.ic-cover--placeholder .fa-book-open {
  font-size: 32cqmin;
  font-weight: 900;
  color: #e6c1a6;
  transition: color 0.22s ease;
}
@media (min-width: 992px) {
  .ic-cover--placeholder .fa-book-open {
    font-size: 16cqmin;
  }
}
.ic-cover--img {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}
.ic-cover--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.22s ease;
}

.ic-book a {
  text-decoration: none;
  color: #2f2f2f;
}
.ic-book a:hover .ic-cover--img img {
  transform: scale(1.08);
}
@media (min-width: 992px) {
  .ic-book a:hover .ic-cover--placeholder {
    background: #fff2e4;
  }
  .ic-book a:hover .ic-cover--placeholder .fa-book-open {
    color: #ff8b42;
  }
  .ic-book a:hover .ic-book__title {
    color: #e86d26;
  }
}
.ic-book .ic-cover {
  overflow: visible;
  border: 1px solid #d0d0d0;
  box-shadow: -7px 7px 0 0 rgba(0, 0, 0, 0.04);
}
.ic-book .ic-cover.ic-cover--img {
  overflow: hidden;
}
.ic-book .ic-cover--img img {
  aspect-ratio: 200 / 290;
  height: auto;
}
.ic-book__title {
  margin-top: 1.15rem;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 0.9rem;
  line-height: 1.22;
  color: #656565;
  transition: color 0.22s ease;
}

.ic-video a {
  text-decoration: none;
  color: inherit;
}
.ic-video__media {
  position: relative;
  overflow: hidden;
}
.ic-video__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.22s ease;
}
.ic-video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  display: none;
}
.ic-video__play::after {
  content: "";
  position: absolute;
  left: 1.1875rem;
  top: 1rem;
  border-style: solid;
  border-width: 0.5rem 0 0.5rem 0.75rem;
  border-color: transparent transparent transparent #8a8a8a;
}
.ic-video__play--inline {
  display: none;
}
.ic-video__play-chip {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.85rem;
  height: 1.3rem;
  margin: 0;
  padding: 0;
  border: 1px solid #cdcdcd;
  border-radius: 999px;
  color: #cdcdcd;
  background: #ffffff;
  line-height: 0;
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.ic-video__play-chip .fa-play {
  font-size: 0.52rem;
  line-height: 1;
  margin-left: 0.1em;
}
.ic-video__body {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 0.95rem 1.1rem;
  border-top: 3px solid #e56b28;
}
.ic-video__title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.12;
  color: #656565;
}
.ic-video--home {
  overflow: visible;
  border: 1px solid #d0d0d0;
}
.ic-video--home.ic-shadow {
  box-shadow: -7px 7px 0 0 rgba(0, 0, 0, 0.04);
}
.ic-video--home .ic-video__body {
  box-shadow: none;
}
.ic-video--list {
  overflow: visible;
  border: 1px solid #d0d0d0;
}
.ic-video--list.ic-shadow {
  box-shadow: -7px 7px 0 0 rgba(0, 0, 0, 0.04);
}
.ic-video--list .ic-video__body {
  box-shadow: none;
}
@media (min-width: 992px) {
  .ic-video--home a:hover .ic-video__media img,
  .ic-video--list a:hover .ic-video__media img {
    transform: scale(1.08);
  }
  .ic-video--home a:hover .ic-video__play-chip,
  .ic-video--list a:hover .ic-video__play-chip {
    background: #e86d26;
    border-color: #ffffff;
    color: #ffffff;
  }
}
.ic-video--related {
  margin-bottom: 0.85rem;
  overflow: visible;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.ic-video--related a {
  display: grid;
  grid-template-columns: 6.875rem 1fr;
  gap: 0.75rem;
  background: #ffffff;
  box-shadow: none;
}
.ic-video--related .ic-video__media img {
  height: 4.875rem;
}
.ic-video--related .ic-video__play,
.ic-video--related .ic-video__play-chip {
  display: none;
}
.ic-video--related .ic-video__body {
  box-shadow: none;
  border: 0;
  padding: 0.4rem 0.6rem 0.4rem 0;
}

/* ===== Páginas interiores ===== */
.ic-about {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.ic-about__heading {
  font-family: "Roboto Slab", Georgia, serif;
  color: #8a8a8a;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.ic-about__heading--center {
  text-align: center;
  margin-top: 7.5rem;
  margin-bottom: 3.5rem;
  font-weight: 300;
}
@media (min-width: 992px) {
  .ic-about__heading--center {
    margin-top: 9.5rem;
    margin-bottom: 4.5rem;
  }
}
.ic-about__text {
  color: #656565;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.45;
  column-count: 2;
  column-gap: 4rem;
}
.ic-about__text > h2:first-child {
  font-family: "Roboto Slab", Georgia, serif;
  color: #8a8a8a;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1.8rem;
  column-span: all;
}
.ic-about__text p {
  margin-bottom: 1rem;
  break-inside: avoid;
}
.ic-about__text a {
  color: #64b8e2;
  font-weight: 400;
  text-decoration: none;
}
.ic-about__text a:hover,
.ic-about__text a:focus-visible {
  color: #5fa1d7;
  text-decoration: underline;
}
.ic-about__text img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .ic-about__grid {
    --bs-gutter-x: 2.25rem;
    --bs-gutter-y: 2.75rem;
  }
  .ic-about__grid > [class*="col-"] {
    display: flex;
  }
  .ic-member {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  .ic-member__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
  }
  .ic-member__bio {
    flex: 1 1 auto;
  }
}
@media (max-width: 991px) {
  .ic-about__heading {
    font-size: 1.75rem;
  }
  .ic-about__text > h2:first-child {
    font-size: 1.75rem;
  }
  .ic-about__text {
    column-count: 1;
    font-size: 0.95rem;
    line-height: 1.32;
  }
}
.ic-member {
  background: #ffffff;
}
.ic-member__photo {
  position: relative;
}
.ic-member__photo img {
  display: block;
  width: 100%;
  height: 13.75rem;
  object-fit: cover;
}
.ic-member__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(30deg, rgba(145, 193, 223, 0.55) 0%, rgba(145, 193, 223, 0) 60%);
}
.ic-member__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 13.75rem;
  container-type: inline-size;
  background: #e06b26;
}
.ic-member__photo--placeholder::after {
  content: none;
}
.ic-member__photo--placeholder .fa-user {
  font-size: 2.4rem;
  font-size: 32cqi;
  font-weight: 900;
  color: #ff8b42;
}
@media (min-width: 992px) {
  .ic-member__photo--placeholder .fa-user {
    font-size: 1.2rem;
    font-size: 16cqi;
  }
}
.ic-member__in {
  position: absolute;
  left: 1.5rem;
  bottom: -10px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 2rem;
  height: 2rem;
  padding: 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  color: #1977d4;
  text-decoration: none;
  border: 2px solid #ffffff;
  border-radius: 4px;
  background: #ffffff;
  transform: scale(1);
  transition: transform 0.2s ease;
}
.ic-member__in:hover {
  transform: scale(1.08);
}
.ic-member__in .fa-linkedin {
  display: block;
  width: 1em;
  height: 1em;
  font-size: calc((2rem - 4px) * 512 / 448);
  line-height: 1;
}
.ic-member__profile {
  display: none;
}
.ic-member__body {
  padding: 1.5rem 1.5rem 1.8rem;
}
.ic-member__name {
  margin: 0 0 0.15rem;
  font-size: 1rem;
  font-weight: 500;
  color: #808080;
}
.ic-member__role {
  margin: 0 0 0.5rem;
  color: #e56b28;
  font-weight: 400;
  font-size: 0.9rem;
}
.ic-member__bio {
  margin: 0;
  color: #8a8a8a;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.25;
}
.ic-member__bio p {
  margin: 0 0 0.4em;
  font-weight: inherit;
  line-height: inherit;
}
.ic-member__bio p:last-child {
  margin-bottom: 0;
}
.ic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #a2a2a2;
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 300;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .ic-meta {
    margin-bottom: 2rem;
  }
}
.ic-meta li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
@media (min-width: 992px) {
  .ic-meta li {
    gap: 0.55rem;
  }
}
.ic-meta i {
  font-weight: 900;
  font-size: 0.85rem;
  color: #cdcdcd;
}
.ic-meta i.fa-regular {
  font-weight: 400;
}
.ic-meta a {
  color: #e56b28;
  text-decoration: none;
}
.ic-meta a:hover,
.ic-meta a:focus-visible {
  text-decoration: underline;
}
.ic-article {
  background: #ffffff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.07);
  padding: 7rem;
}
.ic-article__title {
  font-family: "Roboto Slab", Georgia, serif;
  color: #2f2f2f;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 2.15rem;
}
.ic-article__title--has-lead {
  margin-bottom: 0.85rem;
}
@media (min-width: 992px) {
  .ic-article__title,
  .ic-article__title--has-lead {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .ic-article__title--has-lead {
    margin-bottom: 1.2rem;
  }
}
.ic-article__lead {
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #2f2f2f;
  margin: 0 0 2.15rem;
}
.ic-article__lead p {
  margin: 0 0 0.5em;
}
.ic-article__lead p:last-child {
  margin-bottom: 0;
}
.ic-article__content {
  font-size: 1rem;
  line-height: 1.45;
}
.ic-article__content a {
  color: #64b8e2;
  font-weight: 400;
  text-decoration: none;
}
.ic-article__content a:hover,
.ic-article__content a:focus-visible {
  color: #5fa1d7;
  text-decoration: underline;
}
.ic-article__float {
  float: left;
  width: 17.5rem;
  max-width: 42%;
  margin: 0 1.4rem 1rem 0;
}
.ic-article__date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  clear: both;
  margin: 3.25rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid #ececec;
  color: #a2a2a2;
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 300;
  font-size: 0.88rem;
}
@media (min-width: 992px) {
  .ic-article__date {
    gap: 0.55rem;
  }
}
.ic-article__date i {
  font-weight: 400;
  font-size: 0.85rem;
  color: #cdcdcd;
}
.ic-article__meta-line {
  color: #8a8a8a;
  margin-bottom: 1.5rem;
}
.ic-single {
  padding-top: 5rem;
  padding-bottom: 3.5rem;
}
.ic-btn-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 1.3rem;
  margin-top: 1.35rem;
  background-color: #f37b35;
  background-image: linear-gradient(180deg, #f37b35 0%, #e06b26 100%);
  color: #ffdcc7;
  border: 0;
  border-radius: 3px;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.15);
}
.ic-btn-download i {
  font-weight: 900;
  font-size: 1.35em;
}
.ic-btn-download__copy {
  display: flex;
  gap: 0.35em;
}
.ic-btn-download:hover,
.ic-btn-download:focus-visible {
  background-color: #e56b28;
  background-image: linear-gradient(180deg, #e56b28 0%, #d45d1c 100%);
  color: #ffdcc7;
  text-decoration: none;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.15);
}
.ic-related-label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: #8a8a8a;
  margin: 0 0 1rem;
}
.ic-embed {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.ic-embed iframe,
.ic-embed img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.ic-video-single__intro {
  margin-bottom: 2.5rem;
}
.ic-video-single__intro .ic-article__title {
  margin-bottom: 0.65rem;
}
.ic-video-single__intro .ic-meta {
  margin-bottom: 0;
}
.ic-video-single .row {
  --bs-gutter-x: 1.5rem;
}
@media (min-width: 992px) {
  .ic-video-single .row {
    --bs-gutter-x: 4rem;
  }
}
@media (max-width: 991px) {
  .ic-video-single__intro {
    display: flex;
    flex-direction: column;
  }
  .ic-video-single__intro .ic-meta {
    order: -1;
    margin-bottom: 1rem;
    gap: 0.2rem;
  }
  .ic-video-single__intro .ic-article__title {
    margin-bottom: 0;
  }
  .ic-video-single .ic-related-label {
    margin-top: 2rem;
  }
}
.ic-libro-single .row {
  --bs-gutter-x: 1.5rem;
}
@media (min-width: 992px) {
  .ic-libro-single .row {
    --bs-gutter-x: 3rem;
  }
}
.ic-libro-single__download {
  margin-top: 1.35rem;
}
.ic-libro-single__rule {
  height: 0;
  box-sizing: content-box;
  margin: 2.5rem 0 2.25rem;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #ffffff;
}
.ic-libro-single__related {
  margin-top: 0;
}
.ic-libro-single .ic-related-label {
  font-size: 1.2rem;
  color: #828282;
}
.ic-libro-single .ic-cover {
  overflow: hidden;
  border: 1px solid #d0d0d0;
}
.ic-libro-single .ic-article__title {
  margin-bottom: 1.4rem;
  line-height: 1.05;
}
.ic-search-results__heading {
  font-family: "Roboto Slab", Georgia, serif;
  color: #8a8a8a;
  margin-bottom: 3rem;
}
.ic-search-results .row {
  --bs-gutter-x: 1.5rem;
}
@media (min-width: 992px) {
  .ic-search-results .row {
    --bs-gutter-x: 4.75rem;
  }
}
.ic-search-results .col-lg-6 {
  margin-bottom: 3.15rem;
}
.ic-search-results .col-lg-6:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .ic-search-results .col-lg-6 {
    margin-bottom: 0;
  }
}
.ic-search-group {
  margin-bottom: 3.15rem;
}
.ic-search-group:last-child {
  margin-bottom: 0;
}
.ic-search-group__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Roboto Slab", Georgia, serif;
  color: #8a8a8a;
  margin-bottom: 1.25rem;
}
.ic-search-group li {
  margin-bottom: 0.28rem;
  color: #8a8a8a;
}
.ic-search-group li:last-child {
  margin-bottom: 0;
}
.ic-search-group a {
  color: #64b8e2;
  font-weight: 400;
  text-decoration: none;
  font-family: "Roboto Slab", Georgia, serif;
}
.ic-search-group a:hover,
.ic-search-group a:focus-visible {
  color: #5fa1d7;
  text-decoration: underline;
}
.ic-search-group__meta {
  margin-left: 0.35rem;
  font-weight: 300;
  font-size: 0.8em;
}
.ic-search-group__pipe {
  margin-right: 0.35rem;
}
@media (max-width: 991px) {
  .ic-search-group li {
    margin-bottom: 0.9rem;
    padding-left: 0.7rem;
    border-left: 2px solid #d0d0d0;
  }
  .ic-search-group li:last-child {
    margin-bottom: 0;
  }
  .ic-search-group li.ic-search-group__empty {
    padding-left: 0;
    border-left: 0;
  }
  .ic-search-group a {
    display: block;
    line-height: 0.92;
  }
  .ic-search-group__meta {
    display: block;
    margin-left: 0;
    margin-top: 0.15rem;
  }
  .ic-search-group__pipe {
    display: none;
  }
}
.ic-search-group__empty {
  color: #c4c4c4;
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 300;
  font-style: italic;
}
.ic-listing .col-lg {
  flex: 1 1 18%;
  max-width: 20%;
}
.ic-list-empty {
  margin: 0;
  padding: 0 0 0 1em;
  height: 15vh;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #b0b0b0;
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  text-align: left;
  background: #f7f2eb;
}
.ic-list-empty[hidden] {
  display: none;
}
.ic-list:has(> .ic-list-empty:not([hidden])) > .row.list {
  display: none;
}
.ic-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-sizing: border-box;
  height: 2.85rem;
  padding: 0 0.5rem;
  margin: 0 0 0.5em;
  background: linear-gradient(45deg, #ffffff00, #ebebeb);
}
.ic-list > .ic-pager:first-of-type {
  margin-bottom: 1.35rem;
}
.ic-list > .ic-pager:last-of-type {
  margin-top: 1.75rem;
}
@media (min-width: 992px) {
  .ic-list > .ic-pager:last-of-type {
    margin-top: 2.85rem;
  }
}
.ic-list.is-filtering .ic-pager {
  background: linear-gradient(45deg, #ffffff00, #bbdcf1);
}
.ic-pager[hidden] {
  display: none;
}
.ic-pager__status {
  display: none;
  margin: 0;
  color: #b7b7b7;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .ic-pager__status {
    display: block;
  }
}
.ic-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  flex: 1 1 auto;
  box-sizing: border-box;
  gap: 0.4rem;
  list-style: none;
  height: 100%;
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
  background: transparent;
}
.ic-list.is-filtering .ic-pagination {
  background: transparent;
}
.ic-pagination:empty {
  display: none;
}
.ic-pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.85rem;
  margin: 0;
}
.ic-pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 1.85rem;
  height: 1.85rem;
  padding: 0 0.3rem;
  margin: 0;
  background: #ffffff;
  color: #808080;
  text-decoration: none;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  border: 1px solid transparent;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.ic-pagination a:hover {
  background: #e56b28;
  color: #ffffff;
  border-color: transparent;
}
.ic-pagination .active a {
  color: #e56b28;
  border-color: #e6e6e6;
}
.ic-pagination .active a:hover {
  color: #ffffff;
  border-color: transparent;
}
.ic-pagination .disabled a {
  pointer-events: none;
  color: #8a8a8a;
}

@media (max-width: 991.98px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
  .ic-main {
    padding-bottom: 4.5rem;
  }
  .ic-footer__inner {
    grid-template-columns: 1fr;
  }
  .ic-footer__brand {
    align-items: center;
    text-align: center;
    padding: 2.2rem 1.5rem;
  }
  .ic-footer__panel {
    text-align: center;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .ic-footer__dotter {
    height: 85%;
  }
  .ic-footer__cols {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.55rem;
  }
  .ic-footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ic-footer__col:first-child {
    order: 2;
  }
  .ic-footer__col:last-child {
    order: 1;
  }
  .ic-footer__label {
    display: none;
  }
  .ic-footer__mail {
    justify-content: center;
  }
  .ic-social {
    justify-content: center;
    gap: 0.95rem;
  }
  .ic-social a,
  .ic-social a:hover,
  .ic-social a:focus,
  .ic-social a:focus-visible,
  .ic-social a:active,
  .ic-social a:visited {
    font-size: 2.35rem;
  }
  .ic-block {
    padding-top: 1.5rem;
    padding-bottom: 2.25rem;
  }
  .ic-about,
  .ic-single {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
  .ic-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
  .ic-section-head__caret {
    display: none;
  }
  .ic-section-head__all {
    margin-bottom: 0;
    margin-left: calc(1.125rem + 0.55rem);
    font-size: 1.125rem;
  }
  .ic-novedades .row > [class*="col-"]:nth-child(n + 5),
  .ic-publicaciones__row > [class*="col-"]:nth-child(n + 4) {
    display: none;
  }
  .ic-nota {
    flex-direction: row;
    align-items: stretch;
    border: 1px solid #d0d0d0;
  }
  .ic-nota .ic-nota__link {
    flex-direction: row;
    align-items: stretch;
  }
  .ic-nota .ic-nota__media {
    width: 5.5rem;
    height: auto;
    min-height: 100%;
    aspect-ratio: unset;
    flex-shrink: 0;
    align-self: stretch;
    border-right: 3px solid #e56b28;
  }
  .ic-nota .ic-nota__media img {
    width: 100%;
    height: 100%;
  }
  .ic-nota .ic-nota__body {
    border-top: 0;
    padding: 0.9rem 0.8rem 0.8rem;
  }
  .ic-nota .ic-nota__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .ic-book a {
    display: grid;
    grid-template-columns: 5.75rem 1fr;
    gap: 0.85rem;
    align-items: center;
  }
  .ic-book .ic-cover {
    aspect-ratio: 92 / 130;
    padding: 0.4rem;
  }
  .ic-book__title {
    margin-top: 0;
  }
  .ic-listing .ic-book {
    display: block;
  }
  .ic-listing .ic-book a {
    display: block;
    grid-template-columns: none;
    gap: 0;
  }
  .ic-listing .ic-book .ic-cover {
    aspect-ratio: 200 / 290;
    padding: 0;
  }
  .ic-listing .ic-book__title {
    margin-top: 1.2rem;
    line-height: 1.1;
  }
  .ic-libro-single .ic-meta li {
    align-items: flex-start;
  }
  .ic-libro-single .col-lg-8 {
    margin-bottom: 2rem;
  }
  .ic-libro-single .col-lg-4 {
    display: flex;
    flex-direction: column;
  }
  .ic-libro-single__hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0.75rem;
    align-items: stretch;
    margin-bottom: 0;
  }
  .ic-libro-single__hero:not(:has(.ic-libro-single__download)) {
    grid-template-columns: 1fr;
  }
  .ic-libro-single__hero .ic-cover {
    width: 100%;
  }
  .ic-libro-single__cover {
    min-width: 0;
  }
  .ic-libro-single__download {
    margin: 0;
    min-height: 100%;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.7rem;
    padding: 0.85rem 0.55rem;
    box-sizing: border-box;
  }
  .ic-libro-single__download .ic-btn-download__copy {
    flex-direction: column;
    gap: 0.05em;
    line-height: 1.15;
  }
  .ic-libro-single__rule {
    order: 3;
    margin-top: 3.15rem;
  }
  .ic-libro-single__related {
    order: 4;
  }
  .ic-libro-single__related .ic-book {
    display: block;
  }
  .ic-libro-single__related .ic-book a {
    display: block;
    grid-template-columns: none;
    gap: 0;
  }
  .ic-libro-single__related .ic-book .ic-cover {
    aspect-ratio: 200 / 290;
    padding: 0;
  }
  .ic-libro-single__related .ic-book__title {
    margin-top: 0.95rem;
    line-height: 1.1;
  }
  .ic-video--home .ic-video__play,
  .ic-video--list .ic-video__play {
    display: block;
    width: 3.2rem;
    height: 1.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    border: 0.14rem solid #ffffff;
    box-shadow: none;
  }
  .ic-video--home .ic-video__play::after,
  .ic-video--list .ic-video__play::after {
    left: 50%;
    top: 50%;
    transform: translate(-28%, -50%);
    border-width: 0.48rem 0 0.48rem 0.82rem;
    border-color: transparent transparent transparent #ffffff;
  }
  .ic-video--home .ic-video__play-chip,
  .ic-video--list .ic-video__play-chip {
    display: none;
  }
  .ic-video--home .ic-video__body,
  .ic-video--list .ic-video__body {
    box-shadow: none;
    border-top: 3px solid #e56b28;
    padding: 0.7rem 0.75rem 0.8rem;
  }
  .ic-video--home .ic-video__media img,
  .ic-video--list .ic-video__media img {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .ic-video--related .ic-video__media {
    border-right: 3px solid #e06b26;
  }
  .ic-member {
    display: grid;
    grid-template-columns: 7rem 1fr;
    padding: 0;
    overflow: hidden;
  }
  .ic-member__photo {
    grid-column: 1;
    grid-row: 1;
  }
  .ic-member__photo::after {
    background: linear-gradient(to top, rgba(145, 193, 223, 0.55) 0%, rgba(145, 193, 223, 0) 60%);
  }
  .ic-member__photo img {
    height: 100%;
    min-height: 7.25rem;
  }
  .ic-member__photo--placeholder {
    height: 100%;
    min-height: 7.25rem;
  }
  .ic-member__photo--placeholder::after {
    content: none;
  }
  .ic-member__in {
    display: none;
  }
  .ic-member__body {
    display: contents;
    padding: 0;
  }
  .ic-member__info {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0.75rem 0.9rem 0.85rem 1rem;
    border-left: 3px solid #ff8b42;
    background-image: linear-gradient(90deg, #ffe6d4 0%, #ffffff 72%);
  }
  .ic-member__name {
    color: #808080;
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 0;
  }
  .ic-member__role {
    margin-bottom: 0.45rem;
    color: #e06b26;
    font-weight: 400;
  }
  .ic-member__profile {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.15rem;
    padding: 0.13rem 0.65rem 0.13rem 0.15rem;
    overflow: hidden;
    background: #1977d4;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    border-radius: 4px;
  }
  .ic-member__profile:hover,
  .ic-member__profile:focus,
  .ic-member__profile:focus-visible,
  .ic-member__profile:visited {
    color: #ffffff;
    text-decoration: none;
  }
  .ic-member__profile .fa-linkedin {
    display: block;
    width: 1em;
    height: 1em;
    overflow: hidden;
    font-size: calc(0.95rem * 512 / 448);
    line-height: 1;
  }
  .ic-member__bio {
    grid-column: 1 / -1;
    margin: 0;
    padding: 1rem 1.15rem 1.2rem;
  }
  .ic-article {
    padding: 2rem;
  }
  .ic-article__date {
    gap: 0.75rem;
  }
  .ic-article__title {
    line-height: 1.12;
  }
  .ic-article__content {
    font-size: 0.95rem;
    line-height: 1.32;
  }
  .ic-meta {
    gap: 0.7rem;
  }
  .ic-meta li {
    gap: 0.75rem;
    line-height: 1.22;
  }
  .ic-article__float {
    float: none;
    width: 100%;
    max-width: none;
    margin: 0 0 1rem;
  }
  .ic-listing .col-lg {
    flex: 1 1 45%;
    max-width: 50%;
  }
}

.ic-404 {
  text-align: center;
  padding-bottom: 10rem;
}
@media (max-width: 991px) {
  .ic-404 {
    padding-bottom: 6.5rem;
  }
}
.ic-404__title {
  font-family: "Roboto Slab", Georgia, serif;
  color: #8a8a8a;
  font-weight: 300;
  font-size: 1.75rem;
  margin: 0 0 0.85rem;
}
.ic-404__text {
  margin: 0 0 1.5rem;
  color: #656565;
}
.ic-404__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 1.85rem;
  padding: 0.35rem 0.85rem;
  background: #e56b28;
  color: #ffffff;
  text-decoration: none;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  border: 1px solid transparent;
}
.ic-404__link:hover,
.ic-404__link:focus-visible {
  background: #d45d1c;
  color: #ffffff;
}
.ic-contact .row {
  --bs-gutter-x: 1.5rem;
}
@media (min-width: 992px) {
  .ic-contact .row {
    --bs-gutter-x: 4rem;
  }
}
.ic-contact .wpcf7-form-control:not(.wpcf7-submit) {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.9rem;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  background: #ffffff;
  color: #656565;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.3;
}
.ic-contact .wpcf7-form-control:not(.wpcf7-submit):focus {
  outline: none;
  border-color: #ed8345;
}
.ic-contact textarea.wpcf7-form-control {
  min-height: 8rem;
  resize: vertical;
}
.ic-contact .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.8rem 2rem;
  margin-top: 0.25rem;
  background: #e56b28;
  color: #ffffff;
  border: 0;
  border-radius: 3px;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}
.ic-contact .wpcf7-submit:hover,
.ic-contact .wpcf7-submit:focus,
.ic-contact .wpcf7-submit:focus-visible {
  background: #d45d1c;
  color: #ffffff;
}

.ic-carousel + .ic-block {
  padding-top: 7rem;
}
.ic-banner + * {
  padding-top: 7rem;
}
@media (max-width: 991.98px) {
  .ic-carousel + .ic-block {
    padding-top: 4.5rem;
  }
  .ic-banner + * {
    padding-top: 3.5rem;
  }
}
