
@font-face {
    font-family: 'MiTipografia1';
    src: url(../font/Montreal-Bold.ttf);
}
@font-face {
    font-family: 'MiTipografia2';
    src: url(../Font/Montreal-Regular.ttf);
}
@font-face {
    font-family: 'MiTipografia3';
    src: url(../font/Syne-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'MiTipografia4';
    src: url(../font/PPNeueMontreal-Bold.otf);
}
@font-face {
    font-family: 'MiTipografia5';
    src: url(../font/PPNeueMontreal-Book.otf);
}
@font-face {
    font-family: 'MiTipografia6';
    src: url(../font/PPNeueMontreal-Italic.otf);
}
@font-face {
    font-family: 'MiTipografia7';
    src: url(../font/PPNeueMontreal-Medium.otf);
}
@font-face {
    font-family: 'MiTipografia8';
    src: url(../font/PPNeueMontreal-SemiBolditalic.otf);
}
@font-face {
    font-family: 'MiTipografia9';
    src: url(../font/PPNeueMontreal-Thin.otf);
}
 @font-face {
    font-family: 'Manrope';
    src: url(../font/Manrope-VariableFont_wght.ttf);
}
@font-face {
    font-family: 'Oswald';
    src: url(../font/Oswald-VariableFont_wght.ttf);
}


.contenido-resultados {
    width: 80%;
    padding-top: 100px;
    margin: auto;
    box-sizing: border-box;
}

.resultados {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.titulo-resultado {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Align icon to the bottom */
    flex-wrap: nowrap; /* Prevent wrapping */
}

.nom-resu {
    width: 70%;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 20px;
}

.sangria{
    margin-left: 40px;
}

.im-resul {
    width: 30%;
    display: flex;
    justify-content: flex-end; /* Align to the right */
    align-items: flex-end; /* Align to the bottom */
    padding: 20px;
}

.icono {
    filter: invert(100%);
    width: 100px; /* Adjust the size of the icon as needed */
    margin-bottom: 30px; /* Ensure it doesn't exceed the bottom boundary */
}

/*css para efecto hacia arriba */
.titulo-resultado {
    opacity: 0;
    transform: translateY(20px); /* Initial position for the animation */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Animation properties */
}

.titulo-resultado.visible {
    opacity: 1; /* Make visible */
    transform: translateY(0); /* Move to original position */
}/**/

/* Añadir sombra con animación de movimiento */
.slider-frame {
    position: relative;
    box-shadow: -40px 0 60px -20px rgba(192, 192, 192, 0.8);
    animation: smoke 3s ease-in-out infinite; /* Aplicar la animación de movimiento */
}

/* Animación para mover la sombra como si fuera humo */
@keyframes smoke {
    0% {
        box-shadow: -20px 0 30px -10px rgba(192, 192, 192, 0.8); /* Sombra inicial */
    }
    50% {
        box-shadow: -30px 10px 50px -20px rgba(192, 192, 192, 0.5); /* Sombra más difusa y grande */
    }
    100% {
        box-shadow: -20px 0 30px -10px rgba(192, 192, 192, 0.8); /* Vuelve a la sombra inicial */
    }
}

/******************************************MEDIA QUERIE PARA 480px*******************************/
@media (max-width: 480px) {
    .contenido-resultados {
        width: 80%;
        padding-top: 50px;
        margin: auto;
        box-sizing: border-box;
    }
    .titulo-resultado{
        width: 99%;
    }

    .im-soc {
        align-items: right;
        width: 30%; /* Usa todo el ancho disponible */
        padding: 10px; /* Reduce el padding */
    }

    .icono {
        width: 10px; /* Ajusta el tamaño del icono */
        margin-bottom: 10px; /* Reduce el margen inferior */
    }
    .titulo{
        font-size: 30px !important;
    }

}
