/* CONTENEDOR */

.estatuto-container{
    max-width:1200px;
    margin:auto;
    padding-top:140px;
    padding-bottom:60px;
}

/* TITULO */

.titulo-estatuto{
    text-align:center;
    margin-bottom:40px;
}

.titulo-estatuto h1{
    font-family:'DM Serif Display', serif;
    font-size:3.5rem;
    color:var(--azul-oscuro);
}

.linea{
    width:70%;
    max-width:900px;
    height:8px;
    background:var(--amarillo);
    margin:15px auto;
}

/* IMAGEN */

.documento{
    display:flex;
    justify-content:center;
}

.documento a{
    display:block;
}

.documento img{
    max-width:450px;
    width:100%;
    border-radius:10px;
    transition:.3s;
    cursor:pointer;
}

.documento img:hover{
    transform:scale(1.03);
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}