body {
    background-color: #f8f7fa;
    font-family: 'Rubik', sans-serif;
    color: #55585a;
}

/* CONTENEDOR PRINCIPAL */
.contenedor-presupuesto {
    width: 94%;
    margin: 30px auto;
    background: #ffffff;
    padding: 30px 25px 45px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* ENCABEZADO */
.encabezado-presupuesto {
    background-color: #f4f6f8;
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    margin-bottom: 35px;
}

.titulo-principal {
    color: #55585a;
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}

.titulo-secundario {
    color: #b28e5c;
    font-size: 26px;
    font-weight: 600;
    margin-top: 3px;
}

/* TÍTULO DE SECCIÓN */
.titulo-seccion {
    color: #9d2148;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.titulo-seccion:after {
    content: "";
    height: 1px;
    background-color: #d9b6c2;
    flex: 1;
    margin-left: 15px;
}

/* SUBTÍTULOS */
.subtitulo {
    color: #55585a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* LISTA PRINCIPAL */
.lista-principios {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* ENLACE DESPLEGABLE */
.enlace-principal {
    display: block;
    padding: 13px 15px;
    background-color: #f4f6f8;
    border-radius: 9px;
    color: #55585a !important;
    font-size: 17px;
    text-decoration: none !important;
    transition: all .2s ease;
}

.enlace-principal:hover {
    background-color: #eceff2;
    color: #9d2148 !important;
}

.enlace-secundario {
    display: block;
    padding: 5px 15px;
    background-color: #fff;
    border-radius: 9px;
    color: #55585a !important;
    font-size: 17px;
    text-decoration: none !important;   
    transition: all .2s ease;
}

.enlace-secundario:hover {
    background-color: #eceff2;
    color: #9d2148 !important;
}

/* ICONOS */
i {
    color: #b28e5c;
}

.enlace-principal i {
    margin-right: 8px;
}

/* CONTENIDO DESPLEGABLE */
.contenido-collapse {
    padding: 15px 15px 5px 20px;
}

/* ARCHIVOS */
.lista-documentos {
    list-style: none;
    padding-left: 30px;
    margin-bottom: 0;
}

.lista-documentos li {
    padding: 13px 15px;    
    border-bottom: 1px solid #eeeeee;
    line-height: 1.6;
	text-align: justify;
}

.lista-documentos li:last-child {
    border-bottom: none;
}

.lista-documentos a {
    color: #55585a !important;
    font-size: 16px;
    text-decoration: none !important;
}

.lista-documentos a:hover {
    color: #9d2148 !important;
}

.lista-documentos i {
    color: #9d2148;
    margin-right: 8px;
}

/* ESPACIADO */
.seccion-contenido {
    margin-bottom: 25px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .contenedor-presupuesto {
        width: 96%;
        padding: 20px 15px 35px 15px;
    }

    .titulo-principal {
        font-size: 25px;
    }

    .titulo-secundario {
        font-size: 22px;
    }

    .titulo-seccion {
        font-size: 18px;
    }

    .enlace-principal {
        font-size: 16px;
    }
}