/* =========================================================
   TULLAVERO COTIZADOR - CSS COMPLETO
   Paleta basada en logo Tullavero
   Azul principal: #3060A8
   ========================================================= */

.tlv-cotizador {
    max-width: 1180px;
    margin: 40px auto;
    padding: 0 18px;
    font-family: inherit;
    color: #24374d;
}

.tlv-cotizador * {
    box-sizing: border-box;
}

/* =========================================================
   HEADER
   ========================================================= */

.tlv-cotizador__header {
    text-align: center;
    margin-bottom: 28px;
}

.tlv-cotizador__badge {
    display: inline-block;
    background: #EDF4FF;
    color: #3060A8;
    border: 1px solid #CFE0FF;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tlv-cotizador__header h2 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.15;
    color: #173B6D;
}

.tlv-cotizador__header p {
    margin: 0 auto;
    max-width: 640px;
    color: #64748b;
    font-size: 16px;
}

/* =========================================================
   LAYOUT GENERAL
   Escritorio: formulario izquierda + preview derecha sticky
   ========================================================= */

.tlv-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 24px !important;
    align-items: start !important;
}

.tlv-layout__main {
    min-width: 0;
}

.tlv-layout__side {
    position: sticky !important;
    top: 95px !important;
}

/* Preview móvil oculto en escritorio */
.tlv-preview-mobile {
    display: none !important;
}

/* Preview escritorio visible en escritorio */
.tlv-preview-desktop {
    display: block !important;
}

/* =========================================================
   CARDS
   ========================================================= */

.tlv-card,
.tlv-preview-card {
    background: #ffffff;
    border: 1px solid #d9e3f2;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(48, 96, 168, 0.10);
    margin-bottom: 22px;
}

.tlv-preview-card {
    background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
}

/* =========================================================
   PASOS
   ========================================================= */

.tlv-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.tlv-step span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: #3060A8;
    color: #ffffff;
    font-weight: 800;
}

.tlv-step h3 {
    margin: 0 0 5px;
    font-size: 21px;
    color: #173B6D;
}

.tlv-step p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

/* =========================================================
   UPLOAD
   ========================================================= */

.tlv-upload {
    display: flex;
    min-height: 180px;
    border: 2px dashed #CFE0FF;
    border-radius: 18px;
    background: #F6F9FF;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.tlv-upload:hover {
    border-color: #3060A8;
    background: #EDF4FF;
}

.tlv-upload input {
    display: none;
}

.tlv-upload__icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #3060A8;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 4px;
}

.tlv-upload strong {
    color: #173B6D;
}

.tlv-upload small {
    color: #64748b;
}

.tlv-file-info {
    margin-top: 10px;
    font-size: 14px;
    color: #64748b;
}

/* =========================================================
   PREVIEW
   ========================================================= */

.tlv-preview-card h3 {
    margin: 0 0 8px;
    color: #173B6D;
    font-size: 21px;
}

.tlv-preview-card p {
    color: #64748b;
    font-size: 14px;
}

.tlv-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
}

.tlv-preview__molde {
    width: 250px;
    height: 250px;
    border: 4px solid #3060A8;
    background: #ffffff;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 8px #EDF4FF;
}

.tlv-preview__molde img {
    max-width: 88%;
    max-height: 88%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.tlv-preview__molde span {
    color: #8a96aa;
    font-size: 14px;
}

/* Redondo */
.tlv-preview__molde.is-redondo {
    border-radius: 50%;
}

.tlv-preview__molde.is-redondo img {
    max-width: 90%;
    max-height: 90%;
}

/* Cuadrado */
.tlv-preview__molde.is-cuadrado {
    border-radius: 28px;
}

.tlv-preview__molde.is-cuadrado img {
    max-width: 90%;
    max-height: 90%;
}

/* Rectangular */
.tlv-preview__molde.is-rectangular {
    width: 290px;
    height: 190px;
    border-radius: 26px;
}

.tlv-preview__molde.is-rectangular img {
    max-width: 92%;
    max-height: 84%;
}

/* Rombo */
.tlv-preview__molde.is-rombo {
    width: 215px;
    height: 215px;
    transform: rotate(45deg);
    border-radius: 22px;
}

.tlv-preview__molde.is-rombo img,
.tlv-preview__molde.is-rombo span {
    transform: rotate(-45deg);
}

.tlv-preview__molde.is-rombo img {
    max-width: 88%;
    max-height: 88%;
}

/* Contorno */
.tlv-preview__molde.is-contorno {
    border-radius: 34px 50% 28px 50%;
}

.tlv-preview__molde.is-contorno img {
    max-width: 90%;
    max-height: 90%;
}

.tlv-preview-resumen {
    border-top: 1px solid #d9e3f2;
    padding-top: 14px;
    margin-top: 6px;
}

.tlv-preview-resumen p {
    margin: 6px 0;
    color: #64748b;
}

.tlv-preview-resumen strong {
    color: #24374d;
}

/* =========================================================
   MODELOS
   ========================================================= */

.tlv-modelos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.tlv-modelo {
    position: relative;
    display: flex;
    min-height: 126px;
    border: 1px solid #d9e3f2;
    border-radius: 16px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    text-align: center;
    padding: 14px 10px;
    transition: all 0.2s ease;
}

.tlv-modelo input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tlv-modelo:hover,
.tlv-modelo.tlv-modelo--selected {
    border-color: #3060A8;
    box-shadow: 0 8px 18px rgba(48, 96, 168, 0.15);
    background: #F6F9FF;
}

/* Soporte moderno si el navegador acepta :has */
.tlv-modelo:has(input:checked) {
    border-color: #3060A8;
    box-shadow: 0 8px 18px rgba(48, 96, 168, 0.15);
    background: #F6F9FF;
}

.tlv-modelo__figura {
    width: 54px;
    height: 54px;
    display: block;
    border: 3px solid #3060A8;
    background: #ffffff;
}

.tlv-modelo__figura--redondo {
    border-radius: 50%;
}

.tlv-modelo__figura--cuadrado {
    border-radius: 10px;
}

.tlv-modelo__figura--rectangular {
    width: 72px;
    height: 46px;
    border-radius: 10px;
}

.tlv-modelo__figura--rombo {
    transform: rotate(45deg);
    border-radius: 8px;
}

.tlv-modelo__figura--contorno {
    border-radius: 18px 50% 24px 50%;
}

.tlv-modelo strong {
    font-size: 14px;
    color: #24374d;
}

/* =========================================================
   GRIDS / CAMPOS
   ========================================================= */

.tlv-grid {
    display: grid;
    gap: 16px;
}

.tlv-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tlv-field {
    margin-bottom: 16px;
}

.tlv-field label {
    display: block;
    font-weight: 700;
    color: #24374d;
    margin-bottom: 7px;
    font-size: 14px;
}

.tlv-field input[type="text"],
.tlv-field input[type="email"],
.tlv-field input[type="number"],
.tlv-field select,
.tlv-field textarea {
    width: 100%;
    border: 1px solid #d9e3f2;
    border-radius: 12px;
    padding: 12px 13px;
    font-size: 15px;
    background: #ffffff;
    color: #24374d;
    outline: none;
    transition: all 0.2s ease;
}

.tlv-field input[type="text"]:focus,
.tlv-field input[type="email"]:focus,
.tlv-field input[type="number"]:focus,
.tlv-field select:focus,
.tlv-field textarea:focus {
    border-color: #3060A8;
    box-shadow: 0 0 0 3px rgba(48, 96, 168, 0.12);
}

.tlv-field select:disabled {
    background: #f3f6fb;
    color: #8391a4;
    cursor: not-allowed;
}

.tlv-field textarea {
    resize: vertical;
    min-height: 110px;
}

/* =========================================================
   RADIO BUTTONS
   ========================================================= */

.tlv-radio-line {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tlv-radio-line label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d9e3f2;
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
    margin: 0;
    font-weight: 700;
    background: #ffffff;
    color: #24374d;
    transition: all 0.2s ease;
}

.tlv-radio-line label:hover {
    border-color: #3060A8;
    background: #F6F9FF;
}

.tlv-radio-line input {
    margin: 0;
}

/* =========================================================
   CONDICIONALES
   ========================================================= */

.tlv-conditional,
.tlv-field--hidden {
    display: none;
}

.tlv-conditional.is-active,
.tlv-field--hidden.is-active {
    display: block;
}

.tlv-conditional {
    border-top: 1px solid #d9e3f2;
    margin-top: 18px;
    padding-top: 18px;
}

.tlv-conditional--inner {
    background: #F6F9FF;
    border: 1px solid #d9e3f2;
    border-radius: 16px;
    padding: 18px;
}

.tlv-conditional h4 {
    margin: 0 0 16px;
    color: #173B6D;
    font-size: 18px;
}

/* =========================================================
   BOTÓN
   ========================================================= */

.tlv-actions {
    text-align: center;
    margin: 26px 0 10px;
}

.tlv-btn {
    border: 0;
    background: #3060A8;
    color: #ffffff;
    border-radius: 999px;
    padding: 15px 28px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tlv-btn:hover {
    background: #244E8A;
    transform: translateY(-1px);
}

.tlv-actions p {
    color: #64748b;
    margin: 12px 0 0;
    font-size: 14px;
}

/* =========================================================
   TABLET / MOBILE
   En móvil preview va entre paso 3 y paso 4
   ========================================================= */

@media (max-width: 980px) {
    .tlv-layout {
        display: block !important;
    }

    .tlv-layout__side {
        position: static !important;
    }

    .tlv-preview-desktop {
        display: none !important;
    }

    .tlv-preview-mobile {
        display: block !important;
    }

    .tlv-modelos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .tlv-cotizador {
        margin: 26px auto;
        padding: 0 14px;
    }

    .tlv-cotizador__header {
        margin-bottom: 22px;
    }

    .tlv-cotizador__header h2 {
        font-size: 27px;
    }

    .tlv-cotizador__header p {
        font-size: 15px;
    }

    .tlv-card,
    .tlv-preview-card {
        padding: 18px;
        border-radius: 17px;
        margin-bottom: 18px;
    }

    .tlv-step h3 {
        font-size: 19px;
    }

    .tlv-step p {
        font-size: 13px;
    }

    .tlv-grid--2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tlv-modelos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tlv-modelo {
        min-height: 116px;
    }

    .tlv-radio-line {
        flex-direction: column;
    }

    .tlv-radio-line label {
        width: 100%;
        border-radius: 14px;
    }

    .tlv-upload {
        min-height: 160px;
    }

    .tlv-preview__molde {
        width: 220px;
        height: 220px;
    }

    .tlv-preview__molde.is-rectangular {
        width: 240px;
        height: 155px;
    }

    .tlv-preview__molde.is-rombo {
        width: 180px;
        height: 180px;
    }

    .tlv-btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .tlv-modelos {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .tlv-modelo {
        padding: 12px 8px;
    }

    .tlv-preview__molde {
        width: 200px;
        height: 200px;
    }

    .tlv-preview__molde.is-rectangular {
        width: 215px;
        height: 140px;
    }

    .tlv-preview__molde.is-rombo {
        width: 160px;
        height: 160px;
    }
}

/* =========================================================
   ARCHIVO CARGADO
   ========================================================= */

.tlv-file-loaded {
    display: none;
    align-items: center;
    gap: 14px;
    border: 1px solid #CFE0FF;
    background: #F6F9FF;
    border-radius: 18px;
    padding: 18px;
    margin-top: 10px;
}

.tlv-file-loaded.is-active {
    display: flex;
}

.tlv-file-loaded__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 999px;
    background: #3060A8;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
}

.tlv-file-loaded__content {
    flex: 1;
    min-width: 0;
}

.tlv-file-loaded__content strong {
    display: block;
    color: #173B6D;
    font-size: 15px;
    margin-bottom: 3px;
}

.tlv-file-loaded__content span {
    display: block;
    color: #24374d;
    font-size: 14px;
    word-break: break-word;
}

.tlv-file-loaded__content small {
    display: block;
    color: #64748b;
    font-size: 13px;
    margin-top: 2px;
}

.tlv-file-loaded__remove {
    border: 1px solid #d9e3f2;
    background: #ffffff;
    color: #3060A8;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tlv-file-loaded__remove:hover {
    border-color: #3060A8;
    background: #EDF4FF;
}

/* =========================================================
   CONFIRMACI�0�7N PRODUCTO 3D
   ========================================================= */

.tlv-info-producto {
    grid-column: 1 / -1;
    background: #F6F9FF;
    border: 1px solid #CFE0FF;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 18px;
}

.tlv-info-producto h4 {
    margin: 0 0 10px;
    color: #173B6D;
    font-size: 18px;
}

.tlv-info-producto ul {
    margin: 0 0 14px 18px;
    padding: 0;
    color: #24374d;
    font-size: 14px;
}

.tlv-info-producto li {
    margin-bottom: 6px;
}

.tlv-check-confirmacion {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #d9e3f2;
    border-radius: 14px;
    padding: 13px;
    cursor: pointer;
    font-weight: 700;
    color: #24374d;
}

.tlv-check-confirmacion input {
    margin-top: 3px;
    min-width: 16px;
}

.tlv-check-confirmacion span {
    line-height: 1.35;
}

/* Mobile */
@media (max-width: 700px) {
    .tlv-file-loaded {
        flex-direction: column;
        align-items: flex-start;
    }

    .tlv-file-loaded__remove {
        width: 100%;
    }

    .tlv-info-producto {
        padding: 16px;
    }
}

/* =========================================================
   ALERTAS FORMULARIO
   ========================================================= */

.tlv-alert {
    max-width: 1180px;
    margin: 24px auto 0;
    padding: 16px 18px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
}

.tlv-alert--ok {
    background: #EDF4FF;
    border: 1px solid #CFE0FF;
    color: #173B6D;
}

.tlv-alert--error {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #9f1239;
}

/* Error visual en carga de imagen */
.tlv-upload-error .tlv-upload {
    border-color: #dc2626;
    background: #fff1f2;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.14);
    animation: tlvUploadPulse 0.45s ease-in-out 2;
}

@keyframes tlvUploadPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.015);
    }

    100% {
        transform: scale(1);
    }
}

.tlv-alert p {
    margin: 0;
}

.tlv-alert ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.tlv-alert li {
    margin-bottom: 5px;
}

/* =========================================================
   TARJETA �0�7XITO FINAL
   ========================================================= */

.tlv-success-card {
    max-width: 1180px;
    margin: 28px auto 28px;
    padding: 24px;
    border: 1px solid #CFE0FF;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #F6F9FF 100%);
    box-shadow: 0 12px 30px rgba(48, 96, 168, 0.10);
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.tlv-success-card__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 999px;
    background: #3060A8;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
}

.tlv-success-card__content {
    flex: 1;
}

.tlv-success-card__badge {
    display: inline-block;
    background: #EDF4FF;
    color: #3060A8;
    border: 1px solid #CFE0FF;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.tlv-success-card h2 {
    margin: 0 0 10px;
    color: #173B6D;
    font-size: 26px;
    line-height: 1.2;
}

.tlv-success-card p {
    margin: 0 0 12px;
    color: #24374d;
    font-size: 15px;
}

.tlv-success-card__code {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    background: #ffffff;
    border: 1px solid #d9e3f2;
    border-radius: 16px;
    padding: 14px 18px;
    margin: 8px 0 14px;
}

.tlv-success-card__code span {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.tlv-success-card__code strong {
    color: #173B6D;
    font-size: 22px;
    letter-spacing: 0.5px;
}

@media (max-width: 700px) {
    .tlv-success-card {
        flex-direction: column;
        margin: 22px 14px 22px;
        padding: 20px;
    }

    .tlv-success-card h2 {
        font-size: 22px;
    }

    .tlv-success-card__code {
        width: 100%;
    }
}

/* =========================================================
   TEL�0�7FONO CHILE
   ========================================================= */

.tlv-phone-field {
    display: flex;
    width: 100%;
}

.tlv-phone-field span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 13px;
    border: 1px solid #d9e3f2;
    border-right: 0;
    border-radius: 12px 0 0 12px;
    background: #F6F9FF;
    color: #173B6D;
    font-weight: 800;
    font-size: 15px;
    min-width: 72px;
}

.tlv-phone-field input {
    border-radius: 0 12px 12px 0 !important;
}

.tlv-field-help {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 13px;
}

/* =========================================================
   HOME UPLOAD SHORTCODE
   ========================================================= */

.tlv-home-upload {
    max-width: 560px;
    width: 100%;
    background: linear-gradient(180deg, #173B6D 0%, #3060A8 100%);
    color: #ffffff;
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(23, 59, 109, 0.24);
}

.tlv-home-upload * {
    box-sizing: border-box;
}

.tlv-home-upload__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.tlv-home-upload h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.tlv-home-upload p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.78);
}

.tlv-home-upload__form input[type="file"] {
    display: none;
}

.tlv-home-upload__box {
    min-height: 210px;
    border: 2px dashed rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tlv-home-upload__box:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.75);
}

.tlv-home-upload__icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #3060A8;
    font-size: 34px;
    font-weight: 900;
}

.tlv-home-upload__box strong {
    color: #ffffff;
    font-size: 19px;
}

.tlv-home-upload__box small {
    color: rgba(255, 255, 255, 0.75);
}

.tlv-home-upload__fake-btn {
    margin-top: 10px;
    display: inline-flex;
    background: #ffffff;
    color: #173B6D;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 900;
}

.tlv-home-upload__file {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    word-break: break-word;
}

/* =========================================================
   HOME UPLOAD - AUTOLOAD / DRAG DROP
   ========================================================= */

.tlv-home-upload__box.is-dragover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
    transform: scale(1.01);
}

.tlv-home-upload__box.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.tlv-home-upload__loader {
    display: none;
    min-height: 210px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 24px;
}

.tlv-home-upload__loader.is-active {
    display: flex;
}

.tlv-home-upload__loader strong {
    color: #ffffff;
    font-size: 19px;
}

.tlv-home-upload__loader small {
    color: rgba(255, 255, 255, 0.76);
    max-width: 320px;
}

.tlv-home-upload__spinner {
    width: 54px;
    height: 54px;
    border: 5px solid rgba(255, 255, 255, 0.28);
    border-top-color: #ffffff;
    border-radius: 999px;
    animation: tlvHomeSpin 0.8s linear infinite;
}

@keyframes tlvHomeSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.tlv-home-upload__msg {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
}

.tlv-home-upload__msg.is-error {
    color: #ffe4e6;
}

@media (max-width: 700px) {
    .tlv-home-upload {
        padding: 24px;
        border-radius: 24px;
    }

    .tlv-home-upload h2 {
        font-size: 25px;
    }

    .tlv-home-upload__box {
        min-height: 180px;
    }
}