/* ======================================== */
/* LIBRO RECLAMACIONES */
/* ======================================== */

.libro-reclamaciones{

    opacity:0;
    visibility:hidden;

    height:0;
    overflow:hidden;

    transition:.4s ease;
}

.libro-reclamaciones.active{

    opacity:1;
    visibility:visible;

    height:auto;
    overflow:visible;

    padding:80px 0;
}

.libro-container{

    width:100%;

    max-width:1100px;

    margin:auto;

    background:#fff;

    padding:60px;

    border-radius:34px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);

}

/* TITLE */

.libro-container h1{

    font-size:54px;

    font-weight:900;

    color:#1f7a45;

    margin-bottom:25px;

}

/* TEXT */

.libro-text{

    font-size:17px;

    line-height:1.8;

    color:#444;

    margin-bottom:50px;

}

/* FORM */

.libro-form{

    display:flex;

    flex-direction:column;

    gap:22px;

}

/* TITLES */

.form-title{

    font-size:22px;

    font-weight:800;

    color:#111;

    margin-top:25px;

}

/* INPUTS */

.libro-form input,
.libro-form select,
.libro-form textarea{

    width:100%;

    padding:18px 22px;

    border:1px solid #dcdcdc;

    border-radius:14px;

    font-size:16px;

    font-family:'Montserrat',sans-serif;

    outline:none;

    transition:.3s;

    background:#fff;

}

.libro-form textarea{

    min-height:140px;

    resize:none;

}

.libro-form input:focus,
.libro-form select:focus,
.libro-form textarea:focus{

    border-color:#1f7a45;

}

/* ROWS */

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

/* RADIO */

.radio-group{

    display:flex;

    gap:30px;

    margin-top:10px;

}

.radio-group label{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

/* TEXT LEGAL */

.libro-legal{

    font-size:15px;

    line-height:1.8;

    color:#444;

    margin-top:30px;

}

/* ======================================== */
/* BUTTON PREMIUM */
/* ======================================== */

.libro-btn{

    display:inline-flex !important;

    align-items:center;

    justify-content:center;

    gap:12px;

    width:auto;

    min-width:260px;

    height:60px;

    padding:
    0
    34px;

    border:none !important;

    outline:none;

    border-radius:999px !important;

    background:
    linear-gradient(
    135deg,
    #f15a24,
    #d94716
    ) !important;

    color:#fff !important;

    font-size:15px;

    font-weight:800;

    letter-spacing:.5px;

    cursor:pointer;

    transition:.35s ease;

    box-shadow:
    0 12px 30px rgba(241,90,36,.22);

    appearance:none;

    -webkit-appearance:none;
}

/* HOVER */

.libro-btn:hover{

    transform:
    translateY(-4px);

    background:
    linear-gradient(
    135deg,
    #ff6a32,
    #d94716
    ) !important;

    box-shadow:
    0 18px 40px rgba(241,90,36,.30);
}

/* ACTIVE */

.libro-btn:active{

    transform:scale(.98);
}



/* TOP */

.libro-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    margin-bottom:30px;
}

/* CLOSE */

.close-libro{

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    background:#f15a24;

    color:#fff;

    font-size:22px;

    cursor:pointer;

    transition:.3s;
}

.close-libro:hover{

    transform:rotate(90deg);

    background:#d94c1b;
}

/* ======================================== */
/* DOUBLE INPUT */
/* ======================================== */

.double-input{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;
}



/* RESPONSIVE */

@media(max-width:768px){

    .libro-container{

        padding:35px 25px;

        border-radius:20px;

    }

    .libro-container h1{

        font-size:34px;

        line-height:1.1;

    }

    .form-row{

        grid-template-columns:1fr;

    }
    
    .libro-btn{

    width:100%;

    min-width:100%;

    height:56px;

    font-size:14px;
}

.double-input{

    grid-template-columns:1fr;
}

}
/* ========================================
TABLET
======================================== */

@media(max-width:992px){

.libro-container{

    padding:
    50px
    35px;
}

.libro-container h1{

    font-size:44px;
}

}

/* ========================================
MOBILE
======================================== */

@media(max-width:768px){

.libro-reclamaciones.active{

    padding:
    60px
    0;
}

.libro-container{

    padding:
    35px
    22px;

    border-radius:24px;
}

.libro-top{

    align-items:flex-start;
}

.libro-container h1{

    font-size:34px;

    line-height:1.05;
}

.libro-text{

    font-size:15px;

    line-height:1.7;

    margin-bottom:35px;
}

.form-title{

    font-size:20px;
}

.form-row{

    grid-template-columns:1fr;

    gap:16px;
}

.libro-form{

    gap:18px;
}

.libro-form input,
.libro-form select,
.libro-form textarea{

    padding:
    16px
    18px;

    font-size:15px;

    border-radius:12px;
}

.libro-form textarea{

    min-height:120px;
}

.radio-group{

    flex-direction:column;

    gap:14px;
}

.libro-legal{

    font-size:14px;

    line-height:1.7;
}

.libro-btn{

    width:100%;

    min-width:100%;

    height:56px;

    font-size:14px;
}

.close-libro{

    width:44px;
    height:44px;

    font-size:18px;
}

}

/* ========================================
SMALL MOBILE
======================================== */

@media(max-width:480px){

.libro-container h1{

    font-size:30px;
}

}
