* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Nova paleta de cores */
    --color-dark-blue: #1e2838;      /* Azul muito escuro/charcoal */
    --color-charcoal: #2d3436;       /* Cinza escuro/charcoal */
    --color-slate-blue: #5a6c7d;      /* Azul-cinza médio escuro */
    --color-light-blue: #7a8fb8;      /* Azul-cinza mais claro */
    --color-royal-blue: #2563eb;     /* Azul royal vibrante */
    --color-white: #ffffff;          /* Branco puro */
    
    /* Cores aplicadas */
    --primary-color: #25D366;        /* Mantém verde WhatsApp */
    --secondary-color: var(--color-royal-blue);
    --background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-slate-blue) 50%, var(--color-royal-blue) 100%);
    --card-background: rgba(255, 255, 255, 0.95);
    --text-primary: var(--color-charcoal);
    --text-secondary: var(--color-slate-blue);
    --shadow: 0 10px 30px rgba(30, 40, 56, 0.3);
    --shadow-hover: 0 15px 40px rgba(30, 40, 56, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--background);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(122, 143, 184, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.profile-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.profile-image {
    margin-bottom: 20px;
}

.avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-royal-blue) 0%, var(--color-light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    box-shadow: var(--shadow);
    border: 4px solid var(--color-white);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar:hover {
    transform: scale(1.05);
}

.profile-name {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.profile-bio {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.link-item {
    background: var(--card-background);
    padding: 18px 24px;
    border-radius: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.link-item:hover::before {
    left: 100%;
}

.link-item:nth-child(1) {
    animation-delay: 0.1s;
}

.link-item:nth-child(2) {
    animation-delay: 0.2s;
}

.link-item:nth-child(3) {
    animation-delay: 0.3s;
}

.link-item:nth-child(4) {
    animation-delay: 0.4s;
}

.link-item:nth-child(5) {
    animation-delay: 0.5s;
}

.link-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.link-item.whatsapp {
    border-left: 4px solid var(--primary-color);
}

.link-item.whatsapp:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.link-item.teste {
    border-left: 4px solid var(--color-royal-blue);
}

.link-item.teste:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.link-item.location {
    border-left: 4px solid var(--color-light-blue);
}

.link-item.location:hover {
    background: linear-gradient(135deg, rgba(122, 143, 184, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.link-item i:first-child {
    font-size: 24px;
    width: 32px;
    text-align: center;
}

.link-item.whatsapp i:first-child {
    color: var(--primary-color);
}

.link-item.teste i:first-child {
    color: var(--color-royal-blue);
}

.link-item.location i:first-child {
    color: var(--color-light-blue);
}

.link-item span {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.link-item i:last-child {
    font-size: 14px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.link-item:hover i:last-child {
    transform: translateX(4px);
}

.footer {
    text-align: center;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    animation: fadeIn 1s ease-out 0.6s backwards;
    text-shadow: 0 1px 3px rgba(30, 40, 56, 0.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        max-width: 100%;
    }

    .profile-name {
        font-size: 28px;
    }

    .profile-bio {
        font-size: 14px;
    }

    .link-item {
        padding: 16px 20px;
    }

    .link-item span {
        font-size: 15px;
    }

    .avatar {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* -------------------------------------------------- */
/* Teste de Excelência Page                           */
/* -------------------------------------------------- */

.teste-excelencia-page {
    background: linear-gradient(135deg, rgba(30, 40, 56, 0.95) 0%, rgba(37, 99, 235, 0.9) 100%);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.teste-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    width: min(1200px, 92%);
    margin: 60px auto 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 14px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.hero-list i {
    color: #7dd3fc;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.hero-actions .link-return {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.hero-actions .link-return:hover {
    opacity: 0.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 14px;
    background: var(--color-white);
    color: var(--color-charcoal);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.25);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(17, 24, 39, 0.3);
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--color-royal-blue) 0%, var(--color-light-blue) 100%);
    color: var(--color-white);
    border: none;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    font-size: 16px;
    padding: 18px 32px;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, var(--color-royal-blue) 0%, #1d4ed8 100%);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.cta-button.whatsapp {
    background: var(--primary-color);
    color: var(--color-white);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
}

.cta-note {
    font-size: 14px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.hero-visual {
    display: none;
}

.teste-content {
    background: var(--color-white);
    color: var(--color-charcoal);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 60px 0 80px;
    margin-top: 20px;
}

.teste-content section {
    width: min(1100px, 90%);
    margin: 0 auto 60px;
}

.commitment-section h2,
.quiz-sections h2,
.score-section h2 {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 20px;
}

.commitment-section ul {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
}

.commitment-section li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.commitment-section i {
    color: var(--color-royal-blue);
}

.commitment-note {
    color: var(--color-slate-blue);
}

.quiz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.quiz-card {
    padding: 26px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.02) 100%);
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.quiz-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.score-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.score-card {
    border-radius: 20px;
    padding: 28px;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.1);
}

.score-card header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.score-card header span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--color-royal-blue);
    font-weight: 600;
    font-size: 13px;
}

.score-note {
    margin-top: 24px;
    color: var(--color-slate-blue);
}

.quiz-form-section {
    background: var(--color-white);
    border-radius: 24px;
    padding: 40px 32px;
    margin-bottom: 60px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.quiz-form {
    display: grid;
    gap: 28px;
    margin-top: 32px;
}

.quiz-question {
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 20px;
    padding: 24px 26px;
    background: var(--color-white);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 18px;
}

.quiz-question legend {
    font-weight: 600;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quiz-question legend span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    background: rgba(37, 99, 235, 0.18);
    color: var(--color-royal-blue);
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}

.question-options {
    display: grid;
    gap: 14px;
}

.option-wrapper {
    position: relative;
    display: block;
}

.option-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    background: rgba(37, 99, 235, 0.04);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.option-card:hover {
    border-color: var(--color-royal-blue);
}

.option-input:focus-visible + .option-card {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 2px;
}

.option-input:checked + .option-card,
.option-card.selected {
    border-color: var(--color-royal-blue);
    background: rgba(37, 99, 235, 0.14);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.18);
}

.option-label {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-royal-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.18);
}

.option-text {
    flex: 1;
    font-size: 15px;
    color: var(--color-charcoal);
}

.submit-button {
    align-self: center;
    margin-top: 32px;
    width: 100%;
    max-width: 400px;
    justify-content: center;
    font-size: 17px;
    padding: 20px 36px;
}

.quiz-only {
    padding-top: 40px;
}

.form-alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 99, 71, 0.12);
    color: #b91c1c;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(185, 28, 28, 0.2);
    margin-top: 24px;
}

/* Formulário de captura de dados */
.data-form-section {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.18) 0%, rgba(37, 99, 235, 0.08) 100%);
    border-radius: 24px;
    padding: 40px;
    margin: 0 auto 60px;
    width: min(600px, 90%);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
}

.data-form-section h2 {
    font-size: clamp(28px, 3.5vw, 36px);
    margin-bottom: 8px;
    color: var(--color-charcoal);
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--color-slate-blue);
    margin-bottom: 32px;
    font-size: 16px;
}

.data-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--color-charcoal);
    font-size: 15px;
}

.form-group input {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: var(--color-white);
    font-size: 15px;
    color: var(--color-charcoal);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-royal-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input.invalid:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.field-error {
    display: none;
    color: #ef4444;
    font-size: 13px;
    margin-top: 4px;
    font-weight: 500;
}

.form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-royal-blue);
}

.form-checkbox-group label {
    font-size: 14px;
    color: var(--color-charcoal);
    cursor: pointer;
}

.form-disclaimer {
    font-size: 13px;
    color: var(--color-slate-blue);
    line-height: 1.5;
    margin-top: 8px;
}

.form-disclaimer strong {
    color: var(--color-royal-blue);
}

@media (max-width: 600px) {
    .data-form-section {
        padding: 28px 20px;
    }
}

.result-summary {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.18) 0%, rgba(37, 99, 235, 0.08) 100%);
    border-radius: 24px;
    padding: 40px;
    margin: 0 auto 60px;
    width: min(900px, 90%);
    text-align: center;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
}

.result-profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(30, 40, 56, 0.2);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 100%;
    box-sizing: border-box;
}

.result-profile-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(30, 40, 56, 0.25);
}

.result-profile-badge i {
    font-size: 24px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.result-profile-badge .badge-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
}

.result-profile-badge .profile-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.result-profile-badge .profile-name {
    color: white;
    font-size: 26px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-description {
    font-size: 16px;
    color: var(--color-slate-blue);
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.result-summary h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 16px;
    color: var(--color-charcoal);
}

.result-score {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--color-royal-blue);
    padding: 16px 24px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 12px;
    display: inline-block;
}

.result-score strong {
    color: var(--color-royal-blue);
    font-weight: 700;
}

.result-diagnosis,
.result-summary-text,
.result-next-steps {
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.result-next-steps {
    font-weight: 600;
}

.result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.link-restart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-royal-blue);
    font-weight: 600;
    text-decoration: none;
}

.link-restart:hover {
    text-decoration: underline;
}

.teste-footer {
    margin-top: auto;
    padding: 60px 20px;
    background: #0b1120;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.teste-footer .footer-content {
    max-width: 680px;
}

.teste-footer h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    margin-bottom: 12px;
}

.teste-footer p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .teste-hero {
        margin-top: 32px;
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .teste-content {
        border-radius: 32px 32px 0 0;
        padding-top: 40px;
    }

    .progress-mockup {
        padding: 22px;
        max-width: 100%;
    }

    .hero-content {
        text-align: center;
    }

    .hero-list {
        text-align: left;
    }

    .hero-actions {
        align-items: center;
        width: 100%;
    }

    .hero-actions .cta-button {
        width: 100%;
        justify-content: center;
    }

    .hero-actions .link-return {
        align-self: center;
    }

    .hero-visual {
        justify-content: center;
    }

    .quiz-only {
        padding-top: 24px;
    }

    .teste-hero {
        text-align: center;
    }

    .quiz-form-section {
        padding: 32px 20px;
    }

    .quiz-question {
        padding: 20px 18px;
    }

    .option-card {
        align-items: flex-start;
    }

    .option-label {
        margin-top: 2px;
    }

    .result-summary {
        padding: 32px 24px;
    }

    .result-profile-badge {
        padding: 12px 20px;
        flex-direction: row;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        align-items: center;
    }

    .result-profile-badge i {
        font-size: 20px;
        flex-shrink: 0;
    }

    .result-profile-badge .badge-content {
        flex-direction: column;
        align-items: center;
        gap: 2px;
        flex: 1;
        min-width: 0;
        text-align: center;
    }

    .result-profile-badge .profile-label {
        font-size: 12px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .result-profile-badge .profile-name {
        font-size: 20px;
        line-height: 1.2;
        word-break: break-word;
    }

    .badge-description {
        font-size: 14px;
        padding: 0 16px;
    }

    .result-score {
        font-size: 18px;
        padding: 14px 20px;
        display: block;
        width: 100%;
    }

    .result-actions {
        flex-direction: column;
    }

    .cta-button.whatsapp,
    .cta-button.secondary {
        width: 100%;
        justify-content: center;
    }

    .score-grid {
        grid-template-columns: 1fr;
    }

    .quiz-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 16px;
    }

    .hero-list li {
        font-size: 15px;
    }

    .quiz-question legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .question-options {
        gap: 10px;
    }

    .option-card {
        padding: 14px 16px;
    }

    .option-text {
        font-size: 14px;
    }

    .result-summary {
        padding: 28px 20px;
    }

    .result-profile-badge {
        padding: 10px 16px;
        gap: 10px;
    }

    .result-profile-badge i {
        font-size: 18px;
    }

    .result-profile-badge .profile-label {
        font-size: 11px;
    }

    .result-profile-badge .profile-name {
        font-size: 18px;
    }

    .badge-description {
        font-size: 13px;
        padding: 0 12px;
    }

    .teste-footer {
        padding: 48px 16px;
    }
}

