/* BOTÓN LLAMADA */

#ati-call{

    position:fixed;
    right:25px;
    bottom:175px;
    width:60px;
    height:60px;
    z-index:999998;
}

#ati-call a{

    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border-radius:50%;
    background:#B9CD45;
    color:#2C2C2C;
    font-size:30px;
    box-shadow:0 4px 15px rgba(0,0,0,.25);
    transition:.3s;
}

#ati-call a:hover{

    transform:scale(1.1);
}


/* BOTÓN FLOTANTE */

#ati-button{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#B9CD45;
    color:#2C2C2C;
    font-size:28px;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index:999999;
    box-shadow:0 4px 15px rgba(0,0,0,.25);
}

/* VENTANA */

#ati-window{
    display:none;
    position:fixed;
    right:20px;
    bottom:90px;

    width:340px;
    height:520px;

    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    z-index:999999;

    box-shadow:0 10px 35px rgba(0,0,0,.25);
}

/* CABECERA */

#ati-header{
    background:#B9CD45;
    color:#2C2C2C;
    font-weight:700;
    font-size:20px;
    padding:18px;
}

/* MENSAJES */

#ati-messages{
    height:350px;
    overflow-y:auto;
    padding:15px;
    background:#F4F4F4;
}

#ati-messages p{
    margin-bottom:12px;
    line-height:1.5;
}

/* PIE */

#ati-footer{
    display:flex;
    gap:10px;
    padding:15px;
    background:white;
    border-top:1px solid #eee;
}

#ati-input{
    flex:1;
    border:1px solid #ccc;
    border-radius:12px;
    padding:12px;
    font-size:14px;
}

#ati-send{
    border:none;
    border-radius:12px;
    padding:12px 18px;
    background:#B9CD45;
    color:#2C2C2C;
    font-weight:700;
    cursor:pointer;
}


/*STYLO EXTRA PARA CHAT*/

.tour-card{
    border:0px solid #ddd;
    border-radius:10px;
    overflow:hidden;
    margin:10px 0;
    background:#fff;
}

.tour-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.tour-card h4{
    padding:10px;
    margin:0;
}

.tour-card p{
    padding:0 10px;
}

.tour-card a{
    display:block;
    background:#0f4c81;
    color:white;
    text-align:center;
    padding:10px;
    text-decoration:none;
}



/*TARJETAS DE TOURS*/


.tour-card{
    background:white;
    border-radius:50px;
    overflow:hidden;
    margin:15px 0;
    box-shadow:0 30px 20px rgba(0,0,0,.25)
}

.tour-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.tour-card h4{
    margin:10px;
    color:#2C2C2C;
}

.tour-card p{
    margin:10px;
    color:#555;
}

.tour-card a{
    display:block;
    text-align:center;
    text-decoration:none;
    padding:8px;
    background:#a8d13d;
    color:#2C2C2C;
    font-weight:700;
}


/*SIMILAR A WHATSSAP*/

.msg-user{
    background:#B9CD45;
    padding:10px 14px;
    border-radius:14px;
    margin:10px 0;
    margin-left:40px;
}

.msg-ai{
    background:white;
    padding:10px 14px;
    border-radius:14px;
    margin:10px 0;
    margin-right:40px;
}
/*WHATSSAP*/
/* BOTÓN WHATSAPP */

#ati-whatsapp{
    position:fixed;
    bottom:100px;
    right:25px;

    width:60px;
    height:60px;

    z-index:999998;
}

#ati-whatsapp a{

    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    border-radius:50%;

    background:#25D366;

    color:white;

    font-size:30px;

    box-shadow:0 4px 15px rgba(0,0,0,.25);
}


/*RESPONSIVE*/


/* TABLETS */

@media (max-width:1024px){

    #ati-window{

        width:320px;
        height:500px;
        right:15px;
        bottom:85px;
    }

    #ati-messages{
        height:350px;
    }

}

/* CELULARES */

@media (max-width:768px){
    
    #ati-call{

        right:15px;
        bottom:155px;
        width:55px;
        height:55px;
    }
    
    #ati-whatsapp{
    
        right:15px;
        bottom:85px;
        width:55px;
        height:55px;
    }

    #ati-window{

        width:95vw;
        height:80vh;
        right:2.5vw;
        bottom:85px;
        border-radius:16px;
    }

    #ati-messages{
        height:calc(80vh - 140px);
    }

    #ati-button{

        width:58px;
        height:58px;
        right:15px;
        bottom:15px;
    }

    #ati-header{
        font-size:18px;
        padding:14px;
    }

}

/*CELULARES PEQUEÑOS*/
@media (max-width:480px){

    #ati-window{

        width:100vw;
        height:100vh;
        right:0;
        bottom:0;
        border-radius:0;
    }

    #ati-messages{
        height:calc(100vh - 140px);
    }

}