/* ======= CARD ACCESOS DIRECTOS ======= */ 
.card_ed {
  position: relative;
  width: 300px;
  height: 200px;
  background-color: #28c7eb; /*-----COLOR DE TARJETA*/
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  box-shadow: 0 0 0 5px #00c8f5; /*----- COLOR DE LA SOMBRA*/
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-left: 15px;
  margin-top: 15px;
 
}

.card_ed svg {
  width: 48px;
  fill: #333;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card_ed:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.card__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff; /*------ COLOR DEL BG CONTENIDO*/
  transform: rotateX(-90deg);
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 10px;
}

.card_ed:hover .card__content {
  transform: rotateX(0deg);
}

.card__title {
  margin: 0;
  font-size: 24px;
  color: #171a1a; /*---- COLOR DEL TITULO*/
  font-weight: 700;
}

.card_ed:hover svg {
  scale: 0;
}

.card__description {
  margin: 10px 0 0;
  font-size: 20px;
  color: #171a1a; /*----- COLOR TEXTO*/
  line-height: 1.4;
}

/* ======= CARD NOTICIAS ======= */ 
.card_not {
  max-width: 300px;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  margin-left: 5px;
}

.card_not a {
  text-decoration: none
}

.content {
  padding: 1.1rem;
}

.image_not {
  object-fit: cover;
  width: 100%;
  height: 150px;
  background-color: rgb(239, 205, 255);
}

.title {
  color: #111827;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.desc {
  margin-top: 0.5rem;
  color: #6B7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.action {
  display: inline-flex;
  margin-top: 1rem;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  align-items: center;
  gap: 0.25rem;
  background-color: #2563EB;
  padding: 4px 8px;
  border-radius: 4px;
}

.action span {
  transition: .3s ease;
}

.action:hover span {
  transform: translateX(4px);
}

/* ======= BOTON WAPP  ======= */ 

.btn-wapp {
	position: fixed;
	width: 55px;
	height: 55px;
	line-height: 55px;
	bottom: 60px;
	right: 30px;
	background-color: #09d64a;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	z-index: 50;
}


/* ======= COLORES  ======= */

.bg-primario {
  background-color: #01a3c7;
}

.bg-secundario {
  background-color: #28c7eb;
}

.text-color-primario {
  color: #ffffff;
}

/* ========= IFRAME - PDF ========== */

iframe {
  width: 100%;
  height: 500px;
}

/* ========= TEXTO - SIN DESBORDE ========== */

.texto-escalable {
   overflow-wrap: break-word;
}
