:root {
    --color-principal: #A80616;
    --color-secundario: #E98436;

    --fuente-principal: 'Space Grotesk', sans-serif;
    --fuente-titulos: 'Roboto Slab', serif;
}

body {
  font-family: var(--fuente-global);
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  height: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fuente-titulos);
}

html {
  height: 100%;
  font-family: var(--fuente-principal);
  overflow-x: hidden;
  margin: 0;
}

#page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* === Topbar === */
.topbar {
    font-size: 0.9rem;
    background-color: var(--color-principal)
  }
  
  .topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .topbar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  
  .topbar__info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
  }
  
  .topbar__social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
  }
  
  .topbar__social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-secundario);
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .topbar__social-link:hover {
    background-color: var(--color-secundario);
    color: #fff;
  }
  
  .topbar__social-link i {
    line-height: 1;
  }
  
  /* Responsive tweaks */
  @media (max-width: 767.98px) {
    .topbar__content {
      flex-wrap: nowrap;
      gap: 0.5rem;
    }
  
    .topbar__info,
    .topbar__social {
      flex-shrink: 1;
      gap: 0.5rem;
    }
  
    .topbar__social-link {
      width: 28px;
      height: 28px;
      font-size: 0.85rem;
    }
  
    .topbar small {
      font-size: 0.75rem;
    }
  }

/* === Navbar === */
.navbar-principal {
    font-size: 1rem;
    z-index: 1000;
  }
  
  /* Logo responsive */
  .navbar-principal__logo {
    height: 80px;
    width: auto;
    max-height: 100%;
    max-width: 100%;
  }
  
  @media (max-width: 991.98px) {
    .navbar-principal__logo {
      height: 60px;
    }
  }
  
  @media (max-width: 575.98px) {
    .navbar-principal__logo {
      height: 50px;
    }
  }
  
  /* Estilo base de los links */
  .navbar-principal .navbar-nav {
    flex-wrap: nowrap;
  }
  
  .navbar-principal .navbar-nav .nav-item {
    min-width: 0;
  }
  
  .navbar-principal .navbar-nav .nav-link {
    color: #000;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  
    /* Efecto subrayado animado */
    position: relative;
  }
  
  .navbar-principal .navbar-nav .nav-link::before,
  .navbar-principal .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--color-secundario);
    transition: width 0.3s ease;
  }
  
  .navbar-principal .navbar-nav .nav-link::before {
    left: 0;
  }
  .navbar-principal .navbar-nav .nav-link::after {
    right: 0;
  }
  
  .navbar-principal .navbar-nav .nav-link:hover::before,
  .navbar-principal .navbar-nav .nav-link:hover::after {
    width: 50%;
  }
  
  .navbar-principal .navbar-nav .nav-link:hover,
  .navbar-principal .navbar-nav .nav-link:focus,
  .navbar-principal .navbar-nav .nav-link.active {
    color: var(--color-principal);
  }
  
  .navbar-toggler {
    border: none;
  }
  
/* === Footer 19 Integration === */
.footer-19 {
    background-color: #000;
    color: #adb5bd;
    position: static;
  }
  
  .footer-19__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
  }
  
  .footer-19__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 50px;
    height: 2px;
    background-color: var(--color-secundario)
  }
  
  span.footer-19__nosotros {
    font-size: 15px;
    font-weight: lighter;
  }
  
  .footer-19__subscribe input {
    background: rgba(0, 0, 0, 0.05) !important;
    border: 2px solid var(--color-secundario) !important;
    outline: none !important;
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 16px;
    border-radius: 0;
    margin: 0 !important;
  }
  
  .footer-19__subscribe input::placeholder {
    color: #6c757d;
  }
  
  .footer-19__subscribe .btn {
    border: none;
  }
  
  .footer-19__news-item + .footer-19__news-item {
    margin-top: 1.5rem;
  }
  
  .footer-19__news-title {
    font-weight: 500;
  }
  
  .footer-19__news-title:hover {
    color: var(--color-secundario);
  }
  
  .footer-19__links li + li {
    margin-top: 0.5rem;
  }
  
  .footer-19__links a:hover {
    color: var(--color-secundario);
  }
  
  .footer-19__insta img {
    object-fit: cover;
    height: 80px;
    width: 80px;
  }
  
  .footer-19 .small {
    color: #6c757d;
  }
  
  .footer-19__subscribe button {
    color: #fff !important;
    display: block;
    font-size: 16px;
    background: var(--color-secundario) !important;
    border: none;
    border-radius: 1px;
  }

  .footer-copyright {
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    padding: 1rem 0;
  }

  .footer-copyright strong {
    color: var(--color-secundario); /* tu naranja corporativo */
  }
  
  .footer-copyright__designed {
    font-weight: 400;
    color: #fff;
    font-style: italic;
  }
  
  

  /* === Pagina Contacto === */
  #map {
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  
  @media (max-width: 991px) {
    #map {
      height: 400px;
    }
  }
  
 
/* ==========================================
   FancySpanish Theme - Estilos de Contacto
   ========================================== */

/* Título principal */
.contact-title {
  background-color: var(--color-principal);
  color: #fff;
  padding: 1rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.contact-label {
  font-weight: 400;
  font-size: 1.5rem;
  opacity: 0.9;
}

.contact-divider {
  display: inline-block;
  height: 24px;
  width: 2px;
  background-color: #fff;
  border-radius: 1px;
}

.contact-main {
  font-weight: 600;
  font-size: 1.75rem;
}

/* Mapa */
.map-container {
  max-width: 700px;
  width: 100%;
}

.map-container img {
  width: 100%;
  border-radius: 8px;
}


/* Bloque sucursales */
.sucursales-info h4 {
  font-weight: 600;
  color: var(--color-principal);
}

.sucursales-info p {
  font-size: 0.95rem;
}

/* Ajuste de imagenes en cards tipo ficha */
.img-thumbnail {
  border: 1px solid #ddd !important;
}

/* Formulario */
.formulario-contacto form {
  background-color: #f9f9f9;
}

.formulario-contacto .btn-danger {
  background-color: var(--color-principal);
  border-color: var(--color-principal);
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .contact-title {
    font-size: 1.5rem;
  }
  .contact-label {
    font-size: 1.2rem;
  }
}


/* ==========================================
   FancySpanish Theme - Estilos de cursos
   ========================================== */
/* === Encabezado de Cursos Bicolor Profesional === */

.cursos__header {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.cursos__label {
  background-color: var(--color-secundario);
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
  font-weight: 400;
  font-size: 1.5rem;
  flex: 0 0 auto; /* ocupa sólo lo que necesita */
  white-space: nowrap;
}

.cursos__title {
  background-color: var(--color-principal);
  color: #fff;
  padding: 1rem;
  font-weight: 600;
  font-size: 1.75rem;
  flex: 1 1 auto; /* ocupa el resto */
}





/* ===== Filtros profesional BEM ===== */

.cursos__filter-group {
  margin-top: 1rem;
}

.cursos__filter-btn {
  border: 2px solid var(--color-principal);
  background-color: #fff;
  color: var(--color-principal);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cursos__filter-btn:hover {
  background-color: var(--color-secundario);
  color: #fff;
  cursor: pointer;
}

.cursos__filter-btn.active {
  background-color: var(--color-secundario);
  color: #fff;
}

/* ===== Card (ya la teníamos pero consolidamos aquí para que quede todo limpio) ===== */

.cursos__card {
  transition: box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.cursos__card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cursos__image {
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.cursos__name {
  font-weight: 700;
  color: var(--color-secundario);
  font-size: 1.2rem;
}

.cursos-card-small {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
  height: 100%; /* clave: altura uniforme */
}

.cursos-card-small:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cursos-card-small__image-wrapper {
  flex-shrink: 0;
}

.cursos-card-small__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cursos-card-small__badges {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cursos-card-small__badges span {
  font-size: 0.75rem;
  padding: 0.3em 0.8em;
  border-radius: 50px;
  min-width: 0; /* Flexbox clave */
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  overflow-wrap: anywhere; /* Extra robustez */
}


.cursos-card-small__button {
  margin-top: auto; /* fuerza el botón hacia abajo */
}

.cursos-info {
  font-family: var(--fuente-principal);
  color: #333;
  padding: 1rem 0;
}

.cursos-info__titulo {
  font-family: var(--fuente-titulos);
  color: var(--color-principal);
  font-weight: 700;
  font-size: 1.5rem;
}

.cursos-info__lista {
  list-style: disc inside;
  padding-left: 1rem;
  margin: 0;
}

.cursos-info__lista li {
  margin-bottom: 1rem;
  line-height: 1.6;
}



/* Bloque cursos-header con techado */

.cursos-header {
  position: relative;
  margin-bottom: 2rem;
  padding: 1rem 0;
}

.cursos-header__inner {
  display: inline-flex;
  position: relative;
  z-index: 1;
}

.cursos-header__label {
  background-color: var(--color-secundario);
  color: #fff;
  padding: 0.1rem 1.2rem;
  font-weight: 600;
  font-size: 1.3rem;
  border-radius: 5px 0px 0px 5px;
  white-space: nowrap;
}

.cursos-header__title {
  background-color: var(--color-principal);
  color: #fff;
  padding: 0.1rem 1.2rem;
  font-weight: 600;
  font-size: 1.5rem;
  border-radius: 0px 5px 5px 0px;
  white-space: nowrap;
}

.cursos-header__line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-principal);
  transform: translateY(-50%);
  z-index: 0;
}





/* ===== Estilo titulos globales ===== */
.page-header {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.page-header__label {
  background-color: var(--color-secundario);
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
  font-weight: 400;
  font-size: 1.5rem;
  flex: 0 0 auto;
  white-space: nowrap;
}

.page-header__title {
  background-color: var(--color-principal);
  color: #fff;
  padding: 1rem;
  font-weight: 600;
  font-size: 1.75rem;
  flex: 1 1 auto;
}

/* MODIFICADOR INVERTIDO */
.page-header--invertido {
  flex-direction: row-reverse;
}
.page-header--invertido .page-header__label {
  background-color: var(--color-secundario);
}
.page-header--invertido .page-header__title {
  background-color: var(--color-principal);
}

/* Variante para subsecciones: barra invertida reducida */

.page-header--small-invertido {
  display: flex;
  flex-direction: row-reverse; /* Invertimos el orden visual */
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.page-header--small-invertido .page-header__label {
  background-color: var(--color-secundario);
  color: #fff;
  text-align: center;
  padding: 0.4rem 1rem;
  font-weight: 400;
  font-size: 1.2rem;
  flex: 0 0 auto;
  white-space: nowrap;
}

.page-header--small-invertido .page-header__title {
  background-color: var(--color-principal);
  color: #fff;
  padding: 0.3rem 1rem;
  font-weight: 600;
  font-size: 1.3rem;
  flex: 1 1 auto;
  text-align: right
}




/* === FancySpanish - Certificaciones & Colaboraciones (BEM actualizado) === */

/* Bloque Accordion */
.certificaciones .accordion-button {
  background-color: var(--color-principal);
  color: #fff;
  font-weight: 600;
  font-family: var(--fuente-titulos);
  font-size: 1.2rem;
  border: none;
  box-shadow: none;
}

.certificaciones .accordion-button::after {
  filter: invert(1);
}

.certificaciones .accordion-button:not(.collapsed) {
  background-color: var(--color-secundario);
  color: #fff;
}

.certificaciones .accordion-body {
  background: #fafafa;
  border: 1px solid #ddd;
  padding: 2rem;
  border-radius: 5px;
}

/* Bloque de cada item de colaboración */
.colaboracion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.colaboracion-item__logo img {
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.colaboracion-item__logo img:hover {
  filter: grayscale(0%);
}

.colaboracion-item__textos {
  padding-left: 1rem;
}

.colaboracion-item__texto-chino {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.colaboracion-item__texto-espanol {
  font-size: 1rem;
  margin-bottom: 0;
}


/* Boton Top Page */

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background-color: var(--color-principal);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.scroll-top:hover {
  background-color: var(--color-secundario);
}

.scroll-top.show {
  display: flex;
}


/* Pagina de Inicio */
.home-hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.home-hero picture,
.home-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.home-hero__overlay {
  position: absolute;
  inset: 0; /* shorthand para top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.4); /* oscurece la imagen para mejor legibilidad */
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
}

.home-hero__title {
  font-size: 2.5rem;
  font-weight: bold;
}

.home-hero__subtitle {
  font-size: 1.2rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .home-hero__title {
    font-size: 3.5rem;
  }

  .home-hero__subtitle {
    font-size: 1.5rem;
  }
}



/* === Sobre Nosotros === */
.sobre-nosotros__etiqueta {
  font-size: 1.4rem;
  line-height: 2.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  color: #5b627d;
}

.sobre-nosotros__titulo {
  font-size: 2rem;
  font-weight: 700;
}

.sobre-nosotros__descripcion {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.sobre-nosotros__imagen {
  max-width: 70%;
  height: auto;
}

@keyframes flotarZoom {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-10px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

/* === Ajuste responsive para imagen === */
@media (max-width: 991px) {
  .sobre-nosotros__imagen {
    max-width: 50%;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .sobre-nosotros__imagen {
    max-width: 50%;
    margin-top: 1.5rem;
  }
}

.sobre-nosotros {
  overflow-x: hidden;
  border: 1px red;
}

/* === Marquesina de Logos (scroll continuo en todos los tamaños) === */
.logos-estaticos-full {
  width: 100%;
  padding: 4rem 0;
  border-top: 3px solid #c7c7c7;
  border-bottom: 3px solid #c7c7c7;
}

.logos-estaticos-full__wrapper {
  display: flex;
  flex-direction: column; /* Por defecto en mobile */
  align-items: center;
  gap: 3rem;
  padding: 0 1rem;
}

/* Cada logo */
.logos-estaticos-full__item {
  flex: 1; /* Permite que cada logo ocupe el mismo espacio */
  display: flex;
  justify-content: center;
  align-items: center;
}

.logos-estaticos-full__item img {
  max-width: 90%;
  height: auto;
  max-height: 160px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logos-estaticos-full__item img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* --- Responsivo --- */
@media (min-width: 768px) {
  .logos-estaticos-full__wrapper {
    flex-direction: row;
    justify-content: space-between; /* Reparte los logos horizontalmente */
    align-items: center;
    gap: 2rem;
  }

  .logos-estaticos-full__item {
    flex: 1;
  }

  .logos-estaticos-full__item img {
    max-width: 80%;
    max-height: 180px;
  }
}






/* === Sección Profesores === */
.titulo-seccion p {
  font-size: 1.1rem;
  color: #555;
}







.profesor-card {
  border-radius: 2rem;
  padding: 2rem;
  overflow: hidden;
}

.profesor-card__imagen img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid #fff;
}

.profesor-card__nombre {
  font-size: 1.25rem;
  border-bottom: 2px solid var(--color-principal);
  display: inline-block;
  padding-bottom: 0.25rem;
  color: #000;
}

.profesor-card__titulos li {
  font-size: 0.95rem;
  color: #000;
  margin-bottom: 0.25rem;
}

.titulo-seccion h2 {
  font-size: 1.4rem;
  line-height: 2.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  color: #5b627d;
}

.profesor-card__titulos i {
  color: var(--color-principal) !important ;
  font-size: 0.85rem;
}








/* === Página individual === */

.contenedor-profesor {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.perfil-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.perfil-imagen img {
  border-radius: 10px;
  width: 250px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.perfil-nombre {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: #333;
}

.perfil-titulos {
  margin-top: 2rem;
}

.perfil-titulos h2 {
  font-size: 1.5rem;
  color: #006837;
  margin-bottom: 1rem;
}

.lista-titulos {
  list-style: disc inside;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.carrusel-profesores-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Asegura que las flechas estén posicionadas dentro del carrusel y no se desplacen */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-button-prev {
  left: -1.5rem;
}

.swiper-button-next {
  right: -1.5rem;
}

/* Evita que las flechas se muevan con el scroll */
.seccion-profesores {
  position: relative;
}


/* === Anuncios Home === */
.anuncio-card-vertical {
  position: relative;
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #ddd;
  min-height: 320px;
}

.anuncio-card-vertical__label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  background-color: var(--color-principal, #dc3545); /* default rojo */
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: bold;
  color: white;
  font-size: 1rem;
}

.anuncio-card-vertical__content {
  margin-left: 50px;
}

.anuncio-card-vertical__icon i {
  font-size: 2rem;
}

.anuncio-card-vertical__text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.anuncio-card-vertical__titulo {
  font-size: 1.15rem;
  color: #222;
}

.anuncio-card-vertical__titulo a:hover {
  color: var(--color-principal, #dc3545);
  text-decoration: underline;
}

.anuncio-card-vertical__fecha {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #999;
}

.seccion-anuncios-alt__titulo {
  font-size: 1.4rem;
  line-height: 2.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  color: #5b627d;
  text-align: left;
}

.seccion-anuncios-alt__bajada {
  font-size: 2rem;
  font-weight: 700;

  font-family: var(--fuente-titulos);
}





.card-icono {
  background-color: #edf0ed;
  border-radius: 1rem;
  padding: 2rem 1rem;
  min-height: 280px; /* Aumenta la altura mínima */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.card-icono h5 {
  text-decoration: none !important;
}

.card-icono__figura {
  background-color: #c8102e;
  border-radius: 35% 45% 35% 45% / 40% 35% 45% 40%;
  width: 150px;
  aspect-ratio: 1 / 1; /* Mantiene el círculo */
  height: 150px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-icono__figura img {
  width: 80%;  /* Ya ajustado antes */
  height: auto;
  display: block;
  object-fit: contain;
}

.card-icono__title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
}

.card-icono__separator {
  width: 80%;
  margin: 0.5rem auto;
  border-top: 2px solid #999;
}

.colaboracion-item__leer-mas {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-principal, #A80616);
  list-style: none;
}

.colaboracion-item__leer-mas::-webkit-details-marker { display: none; }

.colaboracion-item__leer-mas::after {
  content: " +";
  font-weight: 800;
}

details[open] .colaboracion-item__leer-mas::after {
  content: " –";
}

.colaboracion-item__contenido p:last-child { margin-bottom: 0; }
