/*==================================================
    RED ASSISTANT
    PARTE 1
==================================================*/


/*==================================================
    1. VARIÁVEIS
==================================================*/

:root{

    --primary:#ff7a00;
    --primary-dark:#e56700;
    --primary-light:#ffb347;

    --secondary:#1d5d8f;
    --secondary-light:#4b89b8;

    --green:#22c55e;

    --danger:#ff4b4b;

    --white:#ffffff;

    --bg:#f4f7fb;

    --border:#e6ebf2;

    --text:#2d3748;

    --text-light:#64748b;

    --shadow-small:
        0 4px 15px rgba(0,0,0,.08);

    --shadow-medium:
        0 12px 35px rgba(0,0,0,.15);

    --shadow-large:
        0 25px 70px rgba(0,0,0,.25);

    --radius:18px;

    --transition:.30s ease;

}


/*==================================================
    2. RESET
==================================================*/

#red-widget *,
#red-widget *::before,
#red-widget *::after{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

#red-widget{

    position:fixed;

    right:30px;

    bottom:30px;

    z-index:999999;

    font-family:
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

}

#red-widget button{

    cursor:pointer;

    font-family:inherit;

}

#red-widget img{

    display:block;

    max-width:100%;

}

#red-widget input{

    font-family:inherit;

    outline:none;

}

#red-widget ul{

    list-style:none;

}

#red-widget a{

    text-decoration:none;

}


/*==================================================
    3. BOTÃO FLUTUANTE
==================================================*/

#red-toggle{

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    overflow:hidden;

    position:relative;

    background:linear-gradient(
        145deg,
        var(--primary),
        var(--primary-dark)
    );

    box-shadow:var(--shadow-large);

    transition:var(--transition);

}

#red-toggle.red-toggle-top{
    bottom: 90px !important;
}

#red-toggle:hover{

    transform:
        translateY(-5px)
        scale(1.06);

}

#red-toggle:active{

    transform:scale(.96);

}

#red-toggle img{

    width:100%;

    height:100%;

    object-fit:cover;

}


/* brilho */

#red-toggle::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:60%;

    height:100%;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(255,255,255,.45),

            transparent

        );

    transform:skewX(-20deg);

}

#red-toggle:hover::before{

    animation:redShine 1.2s;

}


/*==================================================
    PULSE
==================================================*/

.red-pulse{

    position:absolute;

    inset:0;

    border-radius:50%;

    pointer-events:none;

}

.red-pulse::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:50%;

    border:3px solid rgba(255,122,0,.55);

    animation:redPulse 2.5s infinite;

}

.red-pulse::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:50%;

    border:3px solid rgba(29,93,143,.30);

    animation:redPulse 2.5s infinite .8s;

}


/*==================================================
    4. BADGE
==================================================*/

.red-notification{

    position:absolute;

    top:2px;

    right:2px;

    width:24px;

    height:24px;

    border-radius:50%;

    background:var(--danger);

    color:white;

    font-size:12px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    border:2px solid white;

    animation:redNotification .8s infinite alternate;

    box-shadow:

        0 0 15px rgba(255,75,75,.4);

}


/*==================================================
    ANIMAÇÕES
==================================================*/

@keyframes redPulse{

    0%{

        transform:scale(1);

        opacity:.7;

    }

    70%{

        transform:scale(1.45);

        opacity:0;

    }

    100%{

        transform:scale(1.45);

        opacity:0;

    }

}


@keyframes redNotification{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.12);

    }

}


@keyframes redShine{

    from{

        left:-120%;

    }

    to{

        left:180%;

    }

}

/*==================================================
    5. JANELA DO CHAT
==================================================*/

#red-chat{

    position:absolute;

    right:0;

    bottom:100px;

    width:390px;

    height:650px;

    background:var(--white);

    border-radius:25px;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    box-shadow:var(--shadow-large);

    border:1px solid rgba(255,255,255,.45);

    opacity:0;

    visibility:hidden;

    transform:

        translateY(30px)

        scale(.95);

    transition:

        opacity .35s ease,

        transform .35s ease,

        visibility .35s;

}

/* Classe adicionada pelo JavaScript */

#red-chat.active{

    opacity:1;

    visibility:visible;

    transform:

        translateY(0)

        scale(1);

}


/*==================================================
    HEADER
==================================================*/

.red-header{

    height:95px;

    padding:18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:white;

    position:relative;

    overflow:hidden;

    background:

        linear-gradient(

            135deg,

            var(--secondary),

            var(--primary)

        );

}


/* brilho animado */

.red-header::before{

    content:"";

    position:absolute;

    top:-40%;

    left:-40%;

    width:180%;

    height:180%;

    background:

        radial-gradient(

            rgba(255,255,255,.18),

            transparent 70%

        );

    animation:redHeaderMove 10s linear infinite;

}


/* efeito vidro */

.red-header::after{

    content:"";

    position:absolute;

    inset:0;

    backdrop-filter:blur(15px);

    opacity:.20;

    pointer-events:none;

}


/*==================================================
    PERFIL
==================================================*/

.red-profile{

    display:flex;

    align-items:center;

    z-index:2;

}

.red-avatar{

    position:relative;

    width:58px;

    height:58px;

    border-radius:50%;

    overflow:hidden;

    border:3px solid rgba(255,255,255,.25);

    flex-shrink:0;

    box-shadow:

        0 6px 20px rgba(0,0,0,.18);

}

.red-avatar img{

    width:100%;

    height:100%;

    object-fit:cover;

}


/*==================================================
    ONLINE
==================================================*/

.online{

    position:absolute;

    width:15px;

    height:15px;

    background:var(--green);

    border:3px solid white;

    border-radius:50%;

    right:2px;

    bottom:2px;

    animation:redOnline 2s infinite;

}


/*==================================================
    DADOS
==================================================*/

.red-user{

    margin-left:15px;

}

.red-user h2{

    font-size:21px;

    font-weight:700;

    margin-bottom:3px;

}

.red-user small{

    display:block;

    font-size:12px;

    opacity:.95;

}

.status{

    margin-top:6px;

    font-size:12px;

    font-weight:600;

    color:#d9ffe3;

}


/*==================================================
    BOTÕES HEADER
==================================================*/

.header-buttons{

    display:flex;

    gap:10px;

    z-index:2;

}

.header-buttons button{

    width:38px;

    height:38px;

    border:none;

    border-radius:50%;

    color:white;

    font-size:18px;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    transition:.25s;

}

.header-buttons button:hover{

    background:white;

    color:var(--secondary);

    transform:rotate(8deg);

}


/*==================================================
    EFEITO HOVER NO HEADER
==================================================*/

.red-header:hover{

    background:

        linear-gradient(

            135deg,

            var(--secondary-light),

            var(--primary)

        );

}


/*==================================================
    SOMBRA INFERIOR
==================================================*/

.red-header{

    box-shadow:

        0 8px 25px rgba(0,0,0,.12);

}


/*==================================================
    ANIMAÇÕES
==================================================*/

@keyframes redOnline{

    0%{

        box-shadow:

            0 0 0 0 rgba(34,197,94,.55);

    }

    70%{

        box-shadow:

            0 0 0 10px rgba(34,197,94,0);

    }

    100%{

        box-shadow:

            0 0 0 0 rgba(34,197,94,0);

    }

}


@keyframes redHeaderMove{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/*==================================================
        7. CORPO DO CHAT
==================================================*/

.red-body{

    flex:1;

    overflow-y:auto;

    overflow-x:hidden;

    background:var(--bg);

    padding:20px;

    display:flex;

    flex-direction:column;

    gap:18px;

    scroll-behavior:smooth;

}


/*==================================================
        SCROLLBAR
==================================================*/

.red-body::-webkit-scrollbar{

    width:8px;

}

.red-body::-webkit-scrollbar-track{

    background:transparent;

}

.red-body::-webkit-scrollbar-thumb{

    background:#d6dde7;

    border-radius:30px;

}

.red-body::-webkit-scrollbar-thumb:hover{

    background:#b9c4d1;

}


/* Firefox */

.red-body{

    scrollbar-width:thin;

    scrollbar-color:#cdd5df transparent;

}


/*==================================================
        MENSAGENS
==================================================*/

.message{

    width:100%;

    display:flex;

    align-items:flex-end;

    gap:10px;

    animation:messageAppear .35s ease;

}


/*==================================================
        RED
==================================================*/

.message.bot{

    justify-content:flex-start;

}


/*==================================================
        UTILIZADOR
==================================================*/

.message.user{

    justify-content:flex-end;

}


/*==================================================
        AVATAR
==================================================*/

.message .avatar{

    width:42px;

    height:42px;

    border-radius:50%;

    overflow:hidden;

    flex-shrink:0;

    box-shadow:var(--shadow-small);

}

.message .avatar img{

    width:100%;

    height:100%;

    object-fit:cover;

}


/* Avatar do utilizador */

.message.user .avatar{

    order:2;

}


/*==================================================
        CONTEÚDO
==================================================*/

.content{

    display:flex;

    flex-direction:column;

    max-width:78%;

 

}


/*==================================================
        BALÕES
==================================================*/

.bubble{

    position:relative;

    padding:15px 18px;

    border-radius:20px;

    font-size:15px;

    line-height:1.7;

    word-break:break-word;

}


/*==================================================
        RED
==================================================*/

.message.bot .bubble{

    background:white;

    color:var(--text);

    border-top-left-radius:6px;

    box-shadow:var(--shadow-small);

}


/*==================================================
        UTILIZADOR
==================================================*/

.message.user .bubble{

    background:

        linear-gradient(

            135deg,

            var(--primary),

            var(--primary-dark)

        );

    color:white;

    border-top-right-radius:6px;

    box-shadow:

        0 8px 25px rgba(255,122,0,.25);

}


/*==================================================
        TÍTULOS
==================================================*/

.bubble h3{

    margin-bottom:10px;

    font-size:17px;

    color:inherit;

}


/*==================================================
        PARÁGRAFOS
==================================================*/

.bubble p{

    margin-bottom:10px;
  

}

.bubble p:last-child{

    margin-bottom:0;

}


/*==================================================
        LISTAS
==================================================*/

.bubble ul{

    margin-top:10px;

    padding-left:20px;

}

.bubble li{

    margin-bottom:8px;

    list-style:disc;

}


/*==================================================
        HORÁRIO
==================================================*/

.time{

    font-size:11px;

    color:var(--text-light);

    margin-top:6px;

    padding:0 6px;

}


/* Horário do utilizador */

.message.user .time{

    text-align:right;

}


/*==================================================
        SETINHAS DOS BALÕES
==================================================*/

.message.bot .bubble::before{

    content:"";

    position:absolute;

    left:-8px;

    top:18px;

    width:16px;

    height:16px;

    background:white;

    transform:rotate(45deg);

}

.message.user .bubble::before{

    content:"";

    position:absolute;

    right:-8px;

    top:18px;

    width:16px;

    height:16px;

    background:var(--primary-dark);

    transform:rotate(45deg);

}


/*==================================================
        EFEITO HOVER
==================================================*/

.message .bubble{

    transition:.25s;

}

.message .bubble:hover{

    transform:translateY(-2px);

}


/*==================================================
        ANIMAÇÃO DE ENTRADA
==================================================*/

@keyframes messageAppear{

    from{

        opacity:0;

        transform:

            translateY(20px)

            scale(.95);

    }

    to{

        opacity:1;

        transform:

            translateY(0)

            scale(1);

    }

}


/*==================================================
        MENSAGENS LONGAS
==================================================*/

.bubble code{

    display:block;

    margin-top:10px;

    padding:12px;

    border-radius:10px;

    background:#f3f5f8;

    overflow:auto;

    font-size:13px;

}

.message.user code{

    background:rgba(255,255,255,.15);

}


/*==================================================
        LINKS
==================================================*/

.bubble a{

    color:inherit;

    text-decoration:underline;

    font-weight:600;

}


/*==================================================
        IMAGENS
==================================================*/

.bubble img{

    width:100%;

    border-radius:12px;

    margin-top:10px;

}


/*==================================================
        SEPARADOR DE DATA
==================================================*/

.chat-date{

    align-self:center;

    background:white;

    padding:6px 14px;

    border-radius:20px;

    font-size:12px;

    color:var(--text-light);

    box-shadow:var(--shadow-small);

}


/*==================================================
        ESPAÇAMENTO FINAL
==================================================*/

.red-body::after{

    content:"";

    min-height:5px;

}

/*==================================================
        8. SUGESTÕES RÁPIDAS
==================================================*/

.quick-questions{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin:10px 0 5px;

}

.quick-questions button{

    border:none;

    background:white;

    color:var(--secondary);

    padding:10px 16px;

    border-radius:25px;

    font-size:13px;

    font-weight:600;

    cursor:pointer;

    transition:.30s;

    box-shadow:var(--shadow-small);

    border:1px solid var(--border);

}

.quick-questions button:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-2px);

    box-shadow:

        0 10px 25px rgba(255,122,0,.25);

}

.quick-questions button:active{

    transform:scale(.95);

}



/*==================================================
        TYPING AREA
==================================================*/

.typing-area{

    display:none;

    align-items:flex-end;

    gap:10px;

    margin-top:10px;

    animation:messageAppear .30s;

}

/* Quando o JS adicionar esta classe */

.typing-area.show{

    display:flex;

}



/*==================================================
        TYPING BOLHAS
==================================================*/

.typing{

    display:flex;

    align-items:center;

    gap:5px;

    background:white;

    padding:14px 18px;

    border-radius:20px;

    border-top-left-radius:8px;

    box-shadow:var(--shadow-small);

}

.typing span{

    width:8px;

    height:8px;

    border-radius:50%;

    background:#9ca3af;

    animation:redTyping 1.4s infinite;

}

.typing span:nth-child(2){

    animation-delay:.2s;

}

.typing span:nth-child(3){

    animation-delay:.4s;

}



/*==================================================
        RODAPÉ
==================================================*/

.red-footer{
    position: absolute;
    position: fixed;
    
    bottom: 0;
    left: 0;

    padding:16px;

    background:white;

    border-top:1px solid var(--border);

}



/*==================================================
        FORMULÁRIO
==================================================*/

#red-form{

    display:flex;

    align-items:center;

    gap:12px;

}



/*==================================================
        INPUT
==================================================*/

.input-box{

    flex:1;

    position:relative;

}

.input-box input{

    width:100%;

    height:52px;

    border-radius:30px;

    border:2px solid var(--border);

    background:#fafbfc;

    padding:0 20px;

    font-size:15px;

    color:var(--text);

    transition:.30s;

}

.input-box input::placeholder{

    color:#94a3b8;

}

.input-box input:focus{

    border-color:var(--primary);

    background:white;

    box-shadow:

        0 0 0 5px rgba(255,122,0,.12);

}



/*==================================================
        BOTÃO ENVIAR
==================================================*/

#send-question{

    width:54px;

    height:54px;

    border:none;

    border-radius:50%;

    background:

        linear-gradient(

            135deg,

            var(--primary),

            var(--primary-dark)

        );

    color:white;

    font-size:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.30s;

    box-shadow:

        0 10px 25px rgba(255,122,0,.25);

}

#send-question:hover{

    transform:

        translateY(-3px)

        scale(1.05);

}

#send-question:active{

    transform:scale(.92);

}



/*==================================================
        BOTÃO DESABILITADO
==================================================*/

#send-question:disabled{

    opacity:.55;

    cursor:not-allowed;

    transform:none;

}



/*==================================================
        CONTADOR DE CARACTERES
==================================================*/

.character-counter{

    margin-top:8px;

    text-align:right;

    font-size:12px;

    color:var(--text-light);

}



/*==================================================
        INPUT COM ÍCONE
==================================================*/

.input-box::before{

    content:"💬";

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    display:none;

}



/*==================================================
        INPUT VAZIO
==================================================*/

.input-box.empty::before{

    display:block;

}

.input-box.empty input{

    padding-left:45px;

}



/*==================================================
        ANIMAÇÃO TYPING
==================================================*/

@keyframes redTyping{

    0%{

        transform:translateY(0);

        opacity:.4;

    }

    25%{

        transform:translateY(-4px);

        opacity:1;

    }

    50%{

        transform:translateY(0);

        opacity:.6;

    }

    100%{

        transform:translateY(0);

        opacity:.4;

    }

}



/*==================================================
        HOVER GERAL
==================================================*/

#red-chat button{

    transition:.25s;

}



/*==================================================
        SELEÇÃO DE TEXTO
==================================================*/

#red-chat ::selection{

    background:var(--primary);

    color:white;

}



/*==================================================
        ANIMAÇÃO DE APARECER
==================================================*/

.fade-in{

    animation:fadeIn .35s;

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}



/*==================================================
        SOMBRA DO FOOTER
==================================================*/

.red-footer{

    box-shadow:

        0 -8px 20px rgba(0,0,0,.04);

}

/*==================================================
        15. RESPONSIVIDADE
==================================================*/

/* Notebook */

@media (max-width:1200px){

    #red-chat{

        width:360px;

        height:620px;

    }

}


/* Tablet */

@media (max-width:768px){

    #red-widget{

        right:20px;

        bottom:20px;

    }

    #red-chat{

        width:350px;

        height:600px;

    }

}


/* Smartphones */

@media (max-width:480px){

    #red-widget{

        right:0;

        bottom:0;

    }

    #red-chat{

        position:fixed;

        left:0;

        top:0;

        width:100%;

        height:100vh;

        border-radius:0;

        bottom:auto;

        right:auto;

    }

    #red-toggle{

        right:20px;

        bottom:20px;

        position:fixed;

    }

    .red-header{

        height:82px;

        padding:15px;

    }

    .red-user h2{

        font-size:18px;

    }

    .red-user small{

        font-size:11px;

    }

    .bubble{

        max-width:100%;

        font-size:14px;

    }

    .quick-questions{

        flex-direction:column;

    }

    .quick-questions button{

        width:100%;

    }

}



/*==================================================
        MINIMIZAR CHAT
==================================================*/

#red-chat.minimized{

    transform:translateY(40px);

    opacity:0;

    visibility:hidden;

}



/*==================================================
        TEMA ESCURO
==================================================*/

body.red-dark{

    --white:#1d2733;

    --bg:#131b23;

    --text:#f1f5f9;

    --text-light:#94a3b8;

    --border:#2b3846;

}

body.red-dark .bubble{

    color:var(--text);

}

body.red-dark .message.bot .bubble{

    background:#24303c;

}

body.red-dark .red-footer{

    background:#1d2733;

}

body.red-dark .input-box input{

    background:#273340;

    color:white;

}

body.red-dark .quick-questions button{

    background:#273340;

    color:white;

}



/*==================================================
        MICRO ANIMAÇÕES
==================================================*/

.red-body>*{

    animation-duration:.35s;

    animation-fill-mode:both;

}

button{

    transition:

        transform .25s,

        box-shadow .25s,

        background .25s;

}

button:hover{

    transform:translateY(-2px);

}

button:active{

    transform:scale(.96);

}



/*==================================================
        ANIMAÇÃO DE ABRIR
==================================================*/

@keyframes redOpen{

    from{

        opacity:0;

        transform:

            translateY(35px)

            scale(.92);

    }

    to{

        opacity:1;

        transform:

            translateY(0)

            scale(1);

    }

}



/*==================================================
        ANIMAÇÃO DE FECHAR
==================================================*/

@keyframes redClose{

    from{

        opacity:1;

        transform:

            scale(1);

    }

    to{

        opacity:0;

        transform:

            scale(.92);

    }

}



/*==================================================
        SCROLL SUAVE
==================================================*/

html{

    scroll-behavior:smooth;

}



/*==================================================
        GLASS EFFECT
==================================================*/

.glass{

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.35);

}



/*==================================================
        EFEITO DE BRILHO
==================================================*/

.shine{

    position:relative;

    overflow:hidden;

}

.shine::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    transform:skewX(-25deg);

    background:

        linear-gradient(

            transparent,

            rgba(255,255,255,.35),

            transparent

        );

}

.shine:hover::before{

    animation:redShine .8s;

}



/*==================================================
        UTILITÁRIOS
==================================================*/

.hidden{

    display:none !important;

}

.flex{

    display:flex !important;

}

.fade{

    opacity:.5;

}

.rotate{

    transform:rotate(180deg);

}

.shadow{

    box-shadow:var(--shadow-large);

}



/*==================================================
        LOADING
==================================================*/

.red-loading{

    width:18px;

    height:18px;

    border-radius:50%;

    border:3px solid rgba(255,255,255,.35);

    border-top-color:white;

    animation:redSpin .7s linear infinite;

}

@keyframes redSpin{

    to{

        transform:rotate(360deg);

    }

}



/*==================================================
        MENSAGEM NOVA
==================================================*/

.new-message{

    animation:newMessage .45s;

}

@keyframes newMessage{

    0%{

        transform:scale(.8);

        opacity:0;

    }

    70%{

        transform:scale(1.05);

    }

    100%{

        transform:scale(1);

        opacity:1;

    }

}



/*==================================================
        ACESSIBILIDADE
==================================================*/

button:focus,

input:focus{

    outline:none;

}



/*==================================================
        PERFORMANCE
==================================================*/

#red-chat,

#red-toggle,

.message,

.bubble{

    will-change:transform,opacity;

}

.red-menu{

    position:absolute;

    top:95px;

    right:18px;

    width:220px;

    background:white;

    border-radius:16px;

    overflow:hidden;

    display:none;

    box-shadow:var(--shadow-large);

    z-index:100;

}

.red-menu.show{

    display:block;

}

.red-menu button{

    width:100%;

    border:none;

    background:white;

    padding:15px;

    text-align:left;

    transition:.25s;

}

.red-menu button:hover{

    background:#f5f7fa;

}

.assistant-search{

    margin-bottom:20px;

}

.assistant-search input{

    width:100%;

    height:42px;

    border:none;

    border-radius:25px;

    padding:0 20px;

    background:white;

    box-shadow:var(--shadow-small);

}

.assistant-actions{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin:18px 0;

}

.assistant-actions button{

    border:none;

    background:#eef5fb;

    color:var(--secondary);

    padding:12px 16px;

    border-radius:25px;

    transition:.3s;

}

.assistant-actions button:hover{

    background:var(--secondary);

    color:white;

}

.searching-area{

    display:none;

    align-items:center;

    gap:12px;

    margin-top:15px;

}

.searching-area.show{

    display:flex;

}

.spinner{

    width:18px;

    height:18px;

    border-radius:50%;

    border:3px solid #ddd;

    border-top-color:var(--primary);

    animation:redSpin .8s linear infinite;

}

#scrollBottom{

    position:absolute;

    right:20px;

    bottom:95px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:white;

    display:none;

    box-shadow:var(--shadow-medium);

}

#attach-file{

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:white;

    box-shadow:var(--shadow-small);

}

#newConversation{

    margin-top:10px;

    border:none;

    background:rgba(255,255,255,.15);

    color:white;

    padding:8px 14px;

    border-radius:20px;

    font-size:12px;

}

/*==================================================
            HOME
==================================================*/

.assistant-home{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:35px 20px;

    gap: 10px;

    animation:fadeIn .5s;

}

.assistant-logo{

    width:120px;

    height:120px;

    border-radius:50%;

    overflow:hidden;

    margin-bottom:20px;

    box-shadow:var(--shadow-large);

}

.assistant-logo img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.assistant-home h2{

    color:var(--secondary);

    margin-bottom:8px;

}

.assistant-home p{

    color:var(--text-light);

    margin-bottom:20px;

}

.assistant-line{
    display: block;

    width:100px;

    height:4px;

    background:var(--primary);

    border-radius:50px;

    margin:20px auto;

}

.assistant-home h4{
    display: block;

    margin-bottom:20px;

    color:var(--text);

}

.assistant-cards{

    width:100%;

    display:flex;

    flex-direction: column;

    align-items: center;

    gap:12px;

}

.home-question{

    border:none;

    background:white;

    border-radius:15px;

    padding:16px;

    text-align:left;

    cursor:pointer;

    transition:.30s;

    box-shadow:var(--shadow-small);

    border:1px solid var(--border);

    font-size:14px;

    font-weight:600;

    width: 90%;

}

.home-question:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-3px);

}

/*==================================================
        FIM DO CSS
==================================================*/