
.temas-interes-container {
    text-align: center;
    width: 100%;
    padding: 20px 10px;
    box-sizing: border-box;
}

.temas-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    max-width: 800px;
}

.tema-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px dotted #cccccc;
}

.tema-img {
    flex-shrink: 0;
    width: 65px;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 2px;
}

.tema-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tema-texto {
    flex: 1;
    text-align: left;
    color: #ffffff;
}

.tema-titulo {
    display: block;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 5px;
    font-size: 12px;
}

.tema-titulo:link,
.tema-titulo:visited {
    color: #fff;
    text-decoration: none;
}

.tema-titulo:hover,
.tema-titulo:active {
    text-decoration: underline;
    color: #fff;
}

.tema-descripcion {
    font-size: 12px;
    font-weight: 300;
    margin: 0;
    color: #ffffff;
}

/* Responsive para móviles */
@media (max-width: 600px) {
    .tema-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tema-texto {
        text-align: center;
    }

    .tema-img {
        width: 100%;
        max-width: 220px;
    }

    .tema-descripcion {
        font-size: 14px;
    }
}

.lista-circulos {
    list-style-type: circle;
    padding-left: 20px;
}

.lista-circulos li {
    margin-bottom: 6px;
    transition: transform 0.3s ease;
    color: #ffffff;
}

.lista-circulos li:hover {
    transform: translateX(8px); /* Desplaza hacia la derecha */
}

.lista-circulos a {
    color: #ffffff;
}

.logofoot {
    width: 200px;
    display: block;
    margin-bottom: 20px;
}

@media only screen and (max-width: 618px) {
    .logofoot {
        text-align: center;
        margin: 20px auto 0 auto;
    }
}
