@media(min-width:1024px){
    body{
        height:100vh;
    }

    .main{
        height:100%;
        display:flex;
        flex-direction:column;
    }

    .info-footer{
        flex-grow:1;
    }

    .contacto #innerBox{
        padding:40px;
    }

    .contacto{
        font-size:14px;
    }

    .info-footer .box{
        padding-top:24px;
        padding-bottom:100px;

    }
}

@media(max-width:1024px){
    .contacto .caja{
        height:100%;
    }

    .contacto .content{
        height:100%;
    }

    .contacto #innerBox{
        height:100%;
    }

    .info-footer .caja{
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding:0 ;
        min-width: unset;
        border-radius: unset;
    }

    .contacto .titulo{
        margin-bottom: 0px;
    }

    .info-footer .box{
        border:none;
        border-radius: unset;
        padding-top: 50px;
        justify-content: start;
        height: -webkit-fill-available;
    }

    .contacto .btn-send {
        background-color: rgb(255, 255, 255) !important;
        color: #666;
        font-size: 14px;
        font-weight: 400;
        border-radius: 12px;
        padding: 10px 20px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .contacto input{
        background-color: white !important;
        border-radius:8px;
    }

    .contacto textarea{
        background-color: white !important;
        height:80px !important;
        border-radius:8px !important;

    }

    .contacto .btn-send:hover {
        background-color: #f4f4f4;
        color: #333;
        border-color: #bbb;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    

    .main{
        display:flex;
        flex-direction: column;
        flex-grow:1;
    }

    .info-footer{
        display:flex;
        flex-grow: 1;
    }

    .nav-item{
        display:flex;
        flex-direction: row;
        justify-content: center;
    }
    .navbar-expand-md{
        justify-content: center;

    }

    .select-menu.active .options {
        transform: translateY(40px);
    }

}


