* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: 'Poppins', sans-serif;
}

.terminos-condiciones,
.aviso-privacidad {
    /* background: #ffffff; */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin: 25px auto;
    max-width: 900px;
    margin-top: 50px;

    & strong {
        color: #096CF1;
    }
}

.terminos-condiciones h2,
.aviso-privacidad h2 {
    font-size: 1.5em;
    color: #F9751F;
    border-bottom: 2px solid #096CF1;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 6px;
}

.terminos-condiciones p,
.aviso-privacidad p {
    color: #5a5a5a;

    margin-bottom: 18px;
    text-align: justify;
}

.lista-privacidad {
    list-style: none;
    margin: 10px 0 20px 0;
    padding: 0;
}

.lista-privacidad li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.lista-privacidad li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #F9751F;
}





.nosotros {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;

    & strong {
        color: #096CF1;

    }
}

.bloque-nosotros {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.bloque-nosotros.visible {
    opacity: 1;
    transform: translateY(0);
}

.bloque-nosotros .texto {
    flex: 1;
    transition: transform 0.6s ease;

    & p {
        font-size: 1.1em;
        color: #5a5a5a;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 20px;
    }

    & h2 {
        font-size: 1.8em;
        color: #F9751F;
        margin-bottom: 15px;
        font-weight: 700;
    }
}

.bloque-nosotros .imagen {
    transition: transform 0.6s ease;

    & img {
        width: 100%;
        width: 350px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
}

.bloque-nosotros .imagen .bloque-nosotros:hover .imagen img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}


@media (max-width: 768px) {

    .bloque-nosotros {
        flex-wrap: wrap;

        & h2{
            text-align: center;
        }
    }

    .bloque-nosotros .imagen img {
        width: 400px;
    }
}