/*
=========================================
CONTACTO
=========================================
*/

.contact-section{

    position:relative;

    padding:140px 0;

    background:#F7F9FC;

    overflow:hidden;

}

/*=========================================
INFORMACIÓN
=========================================*/

.contact-info{

    height:100%;

    background:#FFF;

    border-radius:30px;

    padding:45px;

    box-shadow:0 25px 60px rgba(15,23,42,.08);

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:22px 0;

    border-bottom:1px solid #EEF2F7;

}

.contact-item:last-child{

    border-bottom:none;

}

.contact-icon{

    width:65px;

    height:65px;

    border-radius:18px;

    background:linear-gradient(135deg,var(--secondary),#8B5CFF);

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    box-shadow:0 15px 35px rgba(108,59,255,.25);

}

.contact-icon i{

    color:#FFF;

    font-size:24px;

}

.contact-item h5{

    color:var(--primary);

    margin-bottom:8px;

    font-size:20px;

}

.contact-item p{

    margin:0;

    color:var(--gray);

    line-height:1.7;

}

/*=========================================
FORMULARIO
=========================================*/

.contact-form{

    height:100%;

    background:#FFF;

    border-radius:30px;

    padding:45px;

    box-shadow:0 25px 60px rgba(15,23,42,.08);

}

.contact-form .form-control{

    height:60px;

    border:none;

    border-radius:16px;

    background:#F8F9FC;

    padding:0 22px;

    font-size:16px;

    color:var(--primary);

    box-shadow:none;

    transition:.35s;

}

.contact-form textarea.form-control{

    height:180px;

    padding:20px 22px;

    resize:none;

}

.contact-form .form-control:focus{

    background:#FFF;

    border:2px solid var(--secondary);

    box-shadow:0 0 0 5px rgba(108,59,255,.08);

}

/*=========================================
BOTÓN
=========================================*/

.contact-form .btn{

    width:100%;

    height:62px;

    border:none;

    border-radius:18px;

    background:linear-gradient(135deg,var(--secondary),#8B5CFF);

    color:#FFF;

    font-size:18px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 20px 40px rgba(108,59,255,.30);

}

.contact-form .btn:hover{

    transform:translateY(-4px);

    box-shadow:0 25px 45px rgba(108,59,255,.35);

}

/*=========================================
DECORACIÓN
=========================================*/

.contact-section::before{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    border-radius:50%;

    background:rgba(108,59,255,.05);

    right:-140px;

    top:-120px;

}

.contact-section::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(108,59,255,.04);

    left:-100px;

    bottom:-100px;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

    .contact-section{

        padding:100px 0;

    }

    .contact-info{

        margin-bottom:40px;

    }

}

@media(max-width:767px){

    .contact-section{

        padding:80px 0;

    }

    .contact-info,
    .contact-form{

        padding:30px;

        border-radius:24px;

    }

    .contact-icon{

        width:55px;

        height:55px;

    }

    .contact-icon i{

        font-size:20px;

    }

}