/*=========================================
DOCUMENTOS
=========================================*/

.documentos{

    max-width:1200px;
    margin:80px auto;
    padding:0 20px;

}

.documentos-titulo{

    text-align:center;
    margin-bottom:55px;

}

.documentos-titulo h2{

    font-size:44px;
    color:#0b2545;
    margin-bottom:15px;

}

.documentos-titulo p{

    max-width:760px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;

}

.documentos-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;

}

.documento-card{

    background:white;
    border-radius:22px;
    padding:45px;
    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    border-top:6px solid #d4af37;

}

.documento-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.14);

}

.documento-icono{

    width:95px;
    height:95px;

    margin:auto;
    margin-bottom:25px;

    border-radius:50%;

    background:#eef4fb;

    display:flex;
    align-items:center;
    justify-content:center;

}

.documento-icono i{

    font-size:46px;
    color:#d32f2f;

}

.documento-card h3{

    color:#0b2545;
    font-size:26px;
    margin-bottom:18px;

}

.documento-card p{

    color:#666;
    line-height:1.8;
    margin-bottom:28px;

}

.btn-documento{

    display:inline-block;

    background:#0b2545;
    color:white;

    padding:13px 28px;

    border-radius:10px;

    text-decoration:none;

    transition:.3s;

    font-weight:600;

}

.btn-documento:hover{

    background:#123d6d;

}

@media(max-width:900px){

.documentos-grid{

grid-template-columns:1fr;

}

.documento-card{

padding:35px;

}

}