    @import url('https://fonts.googleapis.com/css2?family=Lato:wght@100&family=Quicksand:wght@300;400;500;600;700&display=swap');

*{
    font-family: 'Quicksand', sans-serif;
}

a{
    text-decoration: none;
    color: #fff;   
}

body{
    color: #fff;
    background-color: #434596;
    background-image:
        radial-gradient(at 9% 89%, rgb(84, 141, 219) 0px, transparent 50%),
        radial-gradient(at 72% 6%, rgb(120, 143, 194) 0px, transparent 50%),
        radial-gradient(at 24% 19%, rgb(74, 196, 214) 0px, transparent 50%),
        radial-gradient(at 91% 97%, rgb(50, 28, 148)0px, transparent 50%);
    min-height: 100vh;
}

.container{
    display: flex;
    justify-content: center;
    }

.glass-container{
    display: block;
    max-width: 72vw;
    margin-top: 10vh;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.56);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    }

.logo{
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
    margin-top: -10px;
}

ul.nav-links{
    margin: 0;
    float: right;
    display: flex;
    list-style: none;
}

li.nav-link{
    display: inline-block;
    margin-left: 30px;
    font-size: 17px;
    font-weight: 300;
}

ul.nav-socials{
    margin: 30 0px;
    float: right;
    display: flex;
    list-style: none;
}

li.nav-social{
    display: inline-block;
    margin-left: 30px;
    font-size: 17px;
    font-weight: 300;
}

li.nav-social img{
    height: 30px;
}

.emailForm{
    width: 100%;
    padding: 20px;
    margin: 0 0 10px 0;
}

.emailForm h2{
    font-size: 25px;
}

.emailForm p{
    font-size: 16px;
    line-height: 23px;
}

label { 
    font-size: 13px; 
    color: var(--muted); 
    letter-spacing: .2px; 
}

.content{
    display: flex;
    width: 100%;
}

textarea { 
        width: 71vw; 
        min-height: 180px; 
        padding: 14px 14px; 
        border: 1px solid rgba(255,255,255,.12); 
        border-radius: 12px; 
        background: rgba(2,6,23,.6); 
        color: #ffffff;
    }
textarea:focus { 
        border-color: var(--brand); 
        box-shadow: 0 0 0 4px var(--ring); 
    }
    .row { display: grid; gap: 12px; }
    .two { grid-template-columns: 1fr; gap: 3vw;}
    @media (min-width: 820px) { .two { grid-template-columns: 1fr 1fr; } }

    .drop { border: 1.5px dashed rgba(255,255,255,.18); border-radius: 12px; padding: 18px; display: grid; gap: 8px; align-content: center; justify-items: center; text-align: center; background: rgba(2,6,23,.45); }
    .subject { border: 1.5px dashed rgba(255,255,255,.18); border-radius: 12px; padding: 18px; display: grid; gap: 8px; align-content: center; justify-items: center; text-align: center; background: rgba(2,6,23,.45); }
    .drop.dragover { border-color: var(--brand); background: rgba(34,211,238,.06); box-shadow: 0 0 0 4px var(--ring); }
    .drop small { color: var(--muted); }
    .pill { font-size: 12px; padding: 6px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.04); }

    .actions { display: flex; gap: 4vw; justify-content: flex-end; }
    button{
    margin-top: 10px;
    width: 100%;
    height: 40px;
    font-size: 15px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
    button:hover{
    background-color: #252525;
}

.image-wrapper{
    display: flex;
    margin-top: 5vh;
    position: relative;
}

.image-wrapper img{
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    max-width: 500px;
}

.attrebute img{
    position: absolute;
    bottom: 40px;
    right: 40px;
    max-width: 100px;
}
    .ghost { background: transparent; color: var(--ink); border: 1px solid rgba(255,255,255,.18); }

    .results { 
        display: none; 
        border-top: 1px dashed rgba(255,255,255,.12); 
        padding: 20px; 
        background: rgba(2,6,23,.35); 
        border-radius: 12px;
        margin-top: 20px;
    }
    
    /* Nova interface de resposta */
    .result-header {
        margin-bottom: 20px;
    }
    
    .status-indicator {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .status-dot {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        display: inline-block;
        box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }
    
    .status-dot.productive {
        background: #22c55e;
        box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    }
    
    .status-dot.unproductive {
        background: #ef4444;
        box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
    }
    
    .status-text {
        font-size: 18px;
        font-weight: 600;
        color: #ffffff;
        text-transform: capitalize;
    }
    
    .response-content {
        background: rgba(255,255,255,.08);
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .response-content h4 {
        margin: 0 0 15px 0;
        font-size: 16px;
        color: #ffffff;
        font-weight: 600;
    }
    
    .response-text {
        background: rgba(15,23,42,.6);
        border: 1px solid rgba(255,255,255,.06);
        padding: 15px;
        border-radius: 8px;
        color: #ffffff;
        line-height: 1.6;
        white-space: pre-wrap;
        word-wrap: break-word;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    }
    
    .error-section {
        background: rgba(239, 68, 68, 0.1);
        border: 1px solid rgba(239, 68, 68, 0.3);
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .error-section h4 {
        margin: 0 0 10px 0;
        font-size: 16px;
        color: #fca5a5;
        font-weight: 600;
    }
    
    .error-text {
        color: #fecaca;
        line-height: 1.5;
    }

    .results h3 { margin: 0 0 10px 0; font-size: 14px; color: var(--muted); }
    .results pre { margin: 0; white-space: pre-wrap; word-break: break-word; background: rgba(15,23,42,.6); border: 1px solid rgba(255,255,255,.06); padding: 12px; border-radius: 12px; }
    .hint { font-size: 12px; color: var(--muted); }

@media screen and (max-width: 1075px){
    .content{
        flex-direction: column;
    }
    .image-wrapper img{
        justify-content: center;
    }
}

@media screen and (max-width: 720px){
    .logo{
        font-size: 22px;
    }
    li.nav-link{
        font-size: 13px;
    }
    .main h2{
        font-size: 28px;
    }
    .main p{
        font-size: 15px;
    }
    button{
        font-size: 13px;
    }
    .image-wrapper img{
        max-width: 400px;
        justify-content: center;
    }
}