* {
    box-sizing: border-box;
    word-break: keep-all;      /* 👈 No rompas palabras al final de línea */
    overflow-wrap: normal;     /* 👈 Intenta ajustar sólo por espacios */
    white-space: normal;       /* 👈 Permite saltos de línea normales */
}
.body_file {
    background-color: var(--bg-body);
    font-family: Europa;
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr;
}
.main_file {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: calc(50% - 3.96vw) calc(50% - 3.96vw); /* 3.96vw es la mitad del gap */
    gap: 7.92vw;
    padding: 0 7.92vw;
}
.article_file {
    width: 100%;
}
.banner_text .strong {
    word-break: break-all;
}
.strong {
    font-weight: 700;
}
.footer_file {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    position: relative;
    background-color: var(--bg-body);
}
.footer_file h1 {
    color: var(--color-gray-2);
    font: var(--font-footer);
    padding: 12px 20px 12px 7.92vw;
    display: flex;
    align-items: center;
    gap: 8px;
    height: fit-content;
    position: relative;
    bottom: 0;
}
.footer_file .footer-home {
    width: 30%;
    transform: translateY(0);
    position: relative;
    animation: unset;
}
.footer_file h1 img {
    height: 20px;
    width: 100%;
}
.logo_file {
    width: 200px;
}
.btn_volver {
    font-size: 16px !important;
    color: var(--color-icon-back) !important;
}
.c_volver a {
    color: var(--color-green-dark) !important;
}
.mt-32-mv-24 {
    margin-top: 32px;
}
.mt-24-mv-16 {
    margin-top: 24px;
}
.mt-16-mv-8 {
    margin-top: 16px;
}
.article1_title {
    color: var(--color-black-1, #262626);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.article1_text {
    color: var(--color-icon-back, #666667);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    white-space: normal;
}
.txt-card-dtl, .code_id {
    word-break: break-all;
}
.line_h {
    line-height: 18px;
}
.line_normal {
    line-height: normal;
}
.drop-area {
    width: 100%;
    border-radius: 12px;
    border: 1px dashed #979393;
    background: #EDEDED;
    position: relative;
}
.article2_img {
    width: 100%;
}
.tablet, .movil {
    display: none;
}
.icon-upload-file {
    font-size: 40px;
    color: var(--color-icon-back, #666667);
}
.ctn-num-doc {
    width: 24px !important;
}
.download_docs {
    box-shadow: 0px 4px 4px 0px rgba(218, 218, 220, 0.12);
    background: var(--color-white);
    border: none;
}
.ctn-file-dtl {
    background: unset;
    border: none;
    font-size: 32px;
}
span#error {
    display: none;
}
span#error.error {
    display: block;
    color: var(--color-error) !important;
    padding-left: 10px;
}
.info_file_title2 {
    color: var(--Neutral-Neutral-700, #4D4D4F);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.span-text {
    font: italic normal 300 12px/15px Europa;
    color: var(--color-gray-1);
}
.gray_question {
    font: italic normal 300 12px/15px Europa;
    color: var(--color-gray-1);
}

@media only screen and (max-width: 1200px) {
    .main_file {
        display: flex;
        grid-template-columns: 1fr;
        height: 100%;
        padding: 80px 32px;
        grid-gap: 0;
        flex-direction: column;
    }
    .tablet {
        display: block;
    }
    .desk, .movil {
        display: none;
    }
    .article_file {
        height: 100%;
    }
    .article1 {
        padding-bottom: 64px;
        border-bottom: 2px solid #EAE9E9;
    }
    .article2 {
        padding-top: 64px;
    }
    .footer_file {
        justify-content: center;
        position: relative;
    }
    .footer_file h1 {
        padding: 0 20px 16px;
        margin: 0;
    }
    .footer_file .footer-home {
        display: none;
    }
}

@media only screen and (max-width: 680px) {
    .main_file {
        padding: 64px 20px;
    }
    .article1 {
        padding-bottom: 40px;
    }
    .article2 {
        padding-top: 40px;
    }
    .article1_title {
        font-size: 24px;
    }
    .mt-32-mv-24 {
        margin-top: 24px;
    }
    .mt-24-mv-16 {
        margin-top: 16px;
    }
    .logo_file {
        width: 120px;
    }
    .movil {
        display: block;
    }
    .tablet {
        display: none;
    }
    .mt-16-mv-8 {
        margin-top: 8px;
    }
}