@charset "utf-8";
/* CSS Document */
img{ border-radius:6px;}
.contenedor-imagen img {
    transition: transform 0.3s ease; /* suavidad de movimiento */}
.contenedor-imagen img:hover {   transform: translateY(-5px); /* mueve la imagen 5px hacia arriba */}
.contenedor-noticiasn {
    width: 350px;
    min-width: auto;
    height: auto;
    background: #f5f5f5;
    overflow: hidden;
    margin: 20px;
    display: block;
    border-radius: 10px;
	border: solid 1px #C0C0C0;
}
.destacado-noticiasn {
    width: 100%;
    padding: 35px;
}
.alineacion img {
    border-radius: 6px;
}
.item2 {
    position: relative;
    overflow: hidden;
    width: 350px;
	height: 185px;
    margin: 0px;
    background-color: #efefef;
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.item2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
    z-index: 1;
}
.titulo-noticias-destacado {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #1D9BD8;

}
.btn-info {
    color: #fff;
    background-color: #27aae1;
    border-color: #27aae1;
    border-radius: 10px;
}
.info-cards {
  margin-top: 30px;
}

.info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.info-card i {
  font-size: 40px;
  color: #149ad7;
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0;
  color: #1d2545;
}

.info-card p {
  font-size: 15px;
  color: #666;
  margin: 0;
}
@media (min-width: 768px) {
    .col-sm-2 {
        width: 20%!important;
    }}
@media (max-width: 1200px) {
.info-card h3 {
  font-size: 25px;
}}
@media (max-width: 991px) {
.info-card h3 {
  font-size: 20px;
}
}
