.tenzo-support{

    max-width:1400px;
    margin:60px auto;
    padding:0 20px;

}

.tenzo-support-header{

    text-align:center;
    margin-bottom:60px;

}

.tenzo-support-header h1{

    font-size:48px;
    font-weight:700;
    margin-bottom:15px;

}

.tenzo-support-header p{

    max-width:700px;
    margin:auto;
    font-size:18px;
    color:#777;

}

.tenzo-support-grid{

    display:grid;

    grid-template-columns:repeat(4, 1fr);

    gap:30px;

}

.tenzo-support-card{

    display:flex;
    flex-direction:column;

    background:#ffffff;

    padding:25px;

    min-height:240px;

    border:1px solid #e8e8e8;
    border-top:4px solid transparent;

    border-radius:16px;

    text-decoration:none;
    color:#222;

    position:relative;
    overflow:hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease,
        border-top-color .25s ease;

    box-shadow:0 6px 18px rgba(0,0,0,.04);

}

.tenzo-support-card:hover{

    transform:translateY(-8px);

    border-color:#ff6b00;
    border-top-color:#ff6b00;

    box-shadow:
        0 18px 40px rgba(0,0,0,.10),
        0 6px 16px rgba(255,107,0,.12);

}

.tenzo-support-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        135deg,
        rgba(255,107,0,.03),
        transparent 45%
    );

    opacity:0;

    transition:.25s;

    pointer-events:none;

}

.tenzo-support-card:hover::before{

    opacity:1;

}

.tenzo-support-icon{

    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    font-size:30px;

    border-radius:50%;

    background:#fff6ef;

    transition:.25s;

}

.tenzo-support-card:hover .tenzo-support-icon{

    transform:scale(1.08);

    background:#ff6b00;
    color:#fff;

}

.tenzo-support-card h2{

    font-size:22px;

    margin-bottom:10px;

}

.tenzo-support-card p{

    color:#666;

    line-height:1.6;

}

.tenzo-support-badge{

    position:absolute;

    top:18px;

    right:18px;

    background:#f4f4f4;

    color:#666;

    padding:6px 14px;

    border-radius:50px;

    font-size:12px;

    font-weight:600;

}

.tenzo-support-card.disabled{

    opacity:.65;

    cursor:default;

}

.tenzo-support-card.disabled:hover{

    transform:none;

    box-shadow:none;

    border-color:#e6e6e6;

}

.tenzo-support-notice{

    margin-top:30px;

    background:#fff6dd;

    border-left:5px solid #f2b705;

    padding:20px;

    border-radius:8px;

}

/* Tablet */

@media (max-width:1200px){

    .tenzo-support-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/* M贸vil */

@media (max-width:768px){

    .tenzo-support-grid{

        grid-template-columns:1fr;

    }

}

/*==================================================
=            ENTREGA DE SKINS
==================================================*/

.tenzo-form{

    display:grid;

    grid-template-columns: 2fr 1fr;

    gap:35px;

    max-width:1400px;

    width:100%;

    margin:0px auto 50px;

    padding:30px;

    background:#fff;

    border:2px solid #ececec;
    border-radius:12px;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

    align-items:start;

}

/*====================================*/

.tenzo-form-left{

    display:flex;
    flex-direction:column;
    gap:10px;

}

.tenzo-form-right{

    display:flex;
    flex-direction:column;
    gap:45px;

}

/*====================================*/

.tenzo-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:12px;

    padding:20px;

    box-shadow:0 8px 22px rgba(0,0,0,.03);

}

.tenzo-card h3{

    margin:0 0 18px;

    font-size:18px;
    font-weight:700;

    color:#f0a400;

}

/*====================================*/

.tenzo-form-group{

    display:flex;
    flex-direction:column;

}

.tenzo-form-group label{

    margin-bottom:10px;

    font-size:15px;
    font-weight:700;

    color:#222;

}

/*====================================*/

.tenzo-form select,
.tenzo-form textarea,
.tenzo-form input[type=file]{

    width:100%;

    padding:15px 18px;

    border:1px solid #dcdcdc;
    border-radius:12px;

    background:#fff;

    font-size:15px;

    transition:
        border-color .20s,
        box-shadow .20s;

}

.tenzo-form select:hover,
.tenzo-form textarea:hover{

    border-color:#ff6b00;

}

.tenzo-form select:focus,
.tenzo-form textarea:focus{

    outline:none;

    border-color:#ff6b00;

    box-shadow:0 0 0 4px rgba(255,107,0,.12);

}

/*====================================*/

.tenzo-form textarea{

    width:100%;

    height:225px;

    min-height:225px;

    max-height:225px;

    resize:none;

}

/*====================================*/

.tenzo-form small{

    display:block;

    margin-top:10px;

    font-size:13px;
    line-height:1.6;

    color:#777;

}

/*==================================================
=            NOMBRE DEL ARCHIVO
==================================================*/

.tenzo-required-name{

    margin-top:12px;

    padding:18px 20px;

    background:#fff7ef;

    border-left:4px solid #ff6b00;

    border-radius:12px;

    color:#555;

    font-size:14px;

    line-height:1.7;

}

#tenzo-required-filename{

    display:block;

    margin-top:14px;

    font-size:24px;

    font-weight:800;

    color:#ff6b00;

    letter-spacing:.5px;

    line-height:1.35;

    word-break:break-word;

}

/*==================================================
=            RESPUESTA AJAX
==================================================*/

#tenzo-upload-response{

    display:none;

    padding:18px;

    border-radius:12px;

    font-size:14px;

}

#tenzo-upload-response.success{

    display:block;

    background:#eefcf1;

    border:1px solid #9ad3a3;

    color:#167636;

}

#tenzo-upload-response.error{

    display:block;

    background:#fff2f2;

    border:1px solid #ef8d8d;

    color:#b91d1d;

}

/*==================================================
=            AVISO
==================================================*/

.tenzo-support-warning{

    background:#fff8df;

    border-left:5px solid #ffb300;

    border-radius:14px;

    padding:18px 22px;

    font-size:14px;

    line-height:1.7;

    color:#555;

}

.tenzo-support-warning strong{

    display:block;

    margin-bottom:8px;

    color:#222;

}

/*==================================================
=            BOTÓN
==================================================*/

.tenzo-form-actions{

    margin-top:auto;

}

.tenzo-button{

    width:100%;
    height:58px;

    border:none;
    border-radius:12px;

    background:#ff6b00;

    color:#fff;

    font-size:17px;
    font-weight:700;

    cursor:pointer;

    transition:
        background .20s,
        transform .20s,
        box-shadow .20s;

}

.tenzo-button:hover{

    background:#ea5f00;

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(255,107,0,.30);

}

.tenzo-button:disabled{

    background:#bcbcbc;

    cursor:not-allowed;

    transform:none;

    box-shadow:none;

}

/*==================================================
=            RESPONSIVE
==================================================*/

@media (max-width:1200px){

    .tenzo-form{

        grid-template-columns:1fr 360px;

        max-width:1200px;

    }

}

@media (max-width:1000px){

    .tenzo-form{

        grid-template-columns:1fr;

        width:100%;

        padding:30px;

    }

    .tenzo-form-right{

        order:-1;

    }

}

@media (max-width:768px){

    .tenzo-form{

        padding:20px;

        border-radius:16px;

    }

    .tenzo-card{

        padding:20px;

    }

    #tenzo-required-filename{

        font-size:20px;

        letter-spacing:0;

    }

    .tenzo-button{

        height:54px;

    }

}