  /* Estilos base do site */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f7fa;
    line-height: 1.6;
    color: #334155;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilos específicos para a página de dicas */
.dica-container {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 2rem 0;
    padding: 2rem;
}

.dica-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
}

.dica-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3b82f6;
}

.dica-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2563eb;
    margin: 1.5rem 0 0.75rem;
}

.dica-content p {
    margin-bottom: 1.25rem;
}

.dica-content ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.dica-content li {
    margin-bottom: 0.5rem;
}

.dica-content a {
    color: #3b82f6;
    font-weight: 500;
}

.dica-content a:hover {
    text-decoration: underline;
}

.error-list {
    list-style-type: none;
    padding-left: 0;
}

.error-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.error-list li::before {
    content: "❌";
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.dica-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dica-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dica-tag {
    background-color: #e0e7ff;
    color: #3b82f6;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    font-weight: 500;
}

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