/* teste.css */

/* Custom Font */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f8eb; /* Fundo suave para os resultados */
}

/* Header & Results Styling */
.topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 160px;
    height: auto;
}

.botoes button {
    background-color: #0833f1;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.botoes button:hover {
    background-color: #062bd3;
}

/* Progress Bars */
.barra {
    background-color: #e3e9f3;
    border-radius: 30px;
    height: 32px;
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}

.barra-preenchida {
    height: 100%;
    border-radius: 20px;
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    font-weight: 700;
    transition: width 1s ease-out;
    white-space: nowrap;
}

/* Category Colors */
.linguistica        { background: #f05d5e; }
.logicomatematica   { background: #f28c28; }
.espacial           { background: #00bcd4; } 
.musical            { background: #004d38; }
.cinestesica        { background: #9b59b6; }
.intrapessoal       { background: #1abc9c; }
.interpessoal       { background: #0425e0; }
.naturalista        { background: #4caf50; }

/* Career Suggestions */
.area-curso {
    margin-top: 30px;
    color: #334155;
}

.titulo-area {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0833f1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.linha {
    border-top: 1px solid #e2e8f0;
    margin: 16px 0;
}

.percent-badge {
    background-color: #0833f1;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
    margin-right: 12px;
    min-width: 65px;
    text-align: center;
}

/* Results Footer */
.footer-info {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

/* Animations */
@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-slide {
    animation: slideIn 0.5s ease-out forwards;
}
