

	/** AUTORIDAD **/

  .autoridad {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.sub-autoridad {
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.informacion {
    width: 50%;
    -webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.informacion h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 70px;
    color: #0fa759;
    border-bottom: 5px solid;
    margin-bottom: 20px;
}

.informacion h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    color: #000000;
}

.informacion p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 20px;
    line-height: 30px;
    color: #000000;
}

.img-director img {
    width: 400px;
    -webkit-animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/* Media Queries para hacerlo responsivo */
@media screen and (max-width: 992px) {
    .sub-autoridad {
        flex-direction: column;
        align-items: center;
        padding: 50px;
    }
    
    .informacion {
        width: 100%;
        text-align: center;
    }
    
    .informacion h1 {
        font-size: 50px;
    }

    .informacion h2 {
        font-size: 24px;
    }

    .informacion p {
        line-height: 28px;
        padding: 0 20px;
    }

    .img-director img {
        width: 300px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .sub-autoridad {
        padding: 30px;
    }

    .informacion h1 {
        font-size: 40px;
    }

    .informacion h2 {
        font-size: 20px;
    }

    .informacion p {
        font-size: 14px;
        line-height: 24px;
        padding: 0 15px;
    }

    .img-director img {
        width: 250px;
    }
}

@media screen and (max-width: 576px) {
    .informacion h1 {
        font-size: 32px;
    }

    .informacion h2 {
        font-size: 18px;
    }

    .informacion p {
        font-size: 12px;
        line-height: 22px;
        padding: 0 10px;
    }

    .img-director img {
        width: 200px;
    }
}
