/* =====================================================
   BAZAR TANTE GRAZIE
   CONTACT FORM 7 PREMIUM
===================================================== */

.wpcf7 {
    max-width: 1000px;
    margin: 0 auto;
}

.btg-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.btg-full{
    grid-column:1/-1;
}

.btg-campo label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:500;
    color:#333;
}

.btg-campo input,
.btg-campo select,
.btg-campo textarea{

    width:100%;
    box-sizing:border-box;

    border:1px solid #e4e4e4;
    border-radius:8px;

    background:#fafafa;

    padding:14px 16px;

    font-size:14px;

    transition:.25s ease;
}

.btg-campo input{
    height:50px;
}

.btg-campo textarea{
    min-height:160px;
    resize:vertical;
}

.btg-campo input:focus,
.btg-campo select:focus,
.btg-campo textarea:focus{

    border-color:#bdbdbd;

    background:#fff;

    outline:none;

    box-shadow:
        0 0 0 3px rgba(0,0,0,.04);
}

.btg-boton{
    text-align:center;
    margin-top:10px;
}

.btg-boton input[type="submit"]{

    background:#222;

    color:#fff;

    border:none;

    border-radius:8px;

    height:52px;

    padding:0 40px;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    cursor:pointer;

    transition:.25s ease;
}

.btg-boton input[type="submit"]:hover{

    background:#000;

    transform:translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.15);
}

.wpcf7-spinner{
    display:none;
}

.wpcf7-response-output{

    border-radius:8px !important;

    padding:12px !important;

    margin-top:20px !important;
}

@media(max-width:767px){

    .btg-form-grid{

        grid-template-columns:1fr;

        gap:18px;

    }

    .btg-full{

        grid-column:auto;

    }

    .btg-boton input[type="submit"]{

        width:100%;

    }
}
.btg-contacto-header{
    text-align:center;
    margin-bottom:35px;
}

.btg-contacto-header h2{
    font-size:32px;
    font-weight:600;
    color:#222;
    margin-bottom:10px;
}

.btg-contacto-header p{
    color:#777;
    max-width:650px;
    margin:auto;
    line-height:1.6;
}