.lab-home {
    margin-top: 1rem;
    font-family: var(--font1);
    font-size: 3rem;
    font-weight: bold;
    color: var(--salmon);
    text-shadow: 0px 0px 2px black;
}
.lab-description {
    width: 96%;
    font-size: 0.8rem;
    font-family: var(--font1);
    color: var(--blanco);
    text-align: center;
}
.container-features {
    width: 96%;
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.box-features {
    width: 90%;
    height: 12rem;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0,0,0,0.2);
}
.icono-index {
    width: 80px;
    height: 80px;
}
.text-features {
    font-family: var(--font1);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--celeste);
}
.desc-features {
    font-family: var(--font1);
    color: var(--blanco);
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
}
.container-reports {
    width: 90%;
    padding: 1rem;
    background-color: rgba(0,0,0,0.2);
    margin-top: 2rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.label-reports {
    font-family: var(--font1);
    font-size: 1.4rem;
    color: var(--salmon);
}
.reports-description {
    font-family: var(--font1);
    font-size: 0.9rem;
    color: var(--blanco);
    text-align: center;
    font-weight: bold;
}
.box-chart {
    width: 90%;
    height: 20rem;
    margin-top: 1rem;
}

.container-faq {
    width: 96%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
}
.img-faq {
    width: 60%;
}
.box-faq {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.sub-box-faq {
    width: 96%;
    display: flex;
    flex-direction: column;
}
.box-indice-faq {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: rgba(0,0,0,0.3);
    padding: 0.5rem 1rem;
}
.box-indice-faq p {
    font-family: var(--font1);
    color: var(--celeste);
    font-weight: bold;
    cursor: pointer;
}
.box-iconos-faq {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.icono-faq {
    width: 1.4rem;
    height: 1.4rem;
}
.box-text-faq {
    background-color: rgba(0,0,0,0.1);
    padding: 0.5rem 1rem;
}
.box-text-faq p {
    font-family: var(--font1);
    font-size: 0.8rem;
    color: rgba(255,255,255, 0.7);
}

@media (min-width: 768px) {
    .lab-home {
        font-size: 4rem;
    }
    .lab-description {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .container-features {
        flex-direction: row;
        justify-content: center;
    }
    .container-faq {
        flex-direction: row;
        width: 90%;
    }
    .img-faq {
        width: 40%;
    }
}

.hidd {
    display: none;
}