
*{
    font-family: Poppins;
}

.header{
    background-color: #fff;
}
.cursor-pointer{
    cursor: pointer;
}
.color-header{
    color:#606060;
}
.color-white{
    color: #fff;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; 
}

.dropdown-menu {
    display: none; 
    position: absolute; 
}

.nav-item.dropdown {
    position: relative; 
}

.hoverColor{
    transition: color 0.3s;
}
.hoverColor:hover{
    color: #404040
}
.offcanvas-width{
    width: 250px !important;
}

.bgd-primary{
    background-color:#102965;
}
.login{
    color:#606060;
}

.linklogin{
    text-decoration: none;
    
}
.py-6{
    padding: 4rem 0 ;
}

.card{
    width: 25rem;
    text-decoration: none;
}

.containerImgCard{
    max-width: 399px;
    height: 245px;
    overflow: hidden;
}

.imgCard{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: transform 0.3s;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.card:hover .imgCard{
    transform: scale(1.1);
}

.titleCard{
    padding: 0 30px;
    font-size: 1.2rem;
    font-weight: 700;
}

.containerParraffo {
    height: 150px;
    overflow: hidden;
    position: relative;
    padding: 10px 30px;
}

.containerParraffo::after {
    content: '...';
    position: absolute;
    bottom: -3px;
    right: 20px;
    background: #fff;
    padding: 0 30px;
}

.containerParraffo > p{
    font-size: 1rem;
    font-weight: 200;
}

.containerFooterCardImg{
    width: 80px;
}

.fechaCard{
    font-weight: 200;
}

.pagination .active .page-link {
    background-color: #102965; /* Color de fondo activo */
    border-color: #102965; /* Color del borde activo */
    color: #fff; /* Color de texto activo */
}

.page-link{
    color: #102965;
}

.sectionTitle{
    text-transform: uppercase;
}

/* Estilo para la pantalla de carga */
#pantalla-carga {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

/* Spinner de carga */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.containerIconHeader{
    width: 60px;
    height: 60px;
    overflow: hidden;
}

.fismeTextHeader{
    font-size: 20px;
}
