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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
}

.navbar {
    background-color: #0f172a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar a {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo svg {
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-menu li a:hover {
    color: #f59e0b;
}

.btn-contato {
    background-color: #f59e0b;
    color: #0f172a !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-contato:hover {
    background-color: #ea580c;
    color: #ffffff !important;
}

.hero {
    text-align: center;
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: #ffffff;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    color: #f8fafc;
}

.slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide:nth-child(1) {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(30, 58, 138, 0.85)),
                url('slide/Cobrança abusiva é crime 2.jpg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.8), rgba(220, 38, 38, 0.75)),
                url('slide/Cobrança abusiva é crime 2.jpg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(5, 150, 105, 0.85)),
                url('slide/Cobrança abusiva é crime 2.jpg');
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 900px;
    padding: 2rem;
    color: #ffffff;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #f8fafc;
}

.btn-primary {
    display: inline-block;
    background-color: #f59e0b;
    color: #0f172a;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #ea580c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border: none;
    padding: 1rem 1.2rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.slider-controls button:hover {
    background-color: rgba(245, 158, 11, 0.8);
}

.slider-controls .prev {
    left: 2rem;
}

.slider-controls .next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
    background-color: #f59e0b;
}

.direitos-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.container-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #64748b;
}

.cdc-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.cdc-article {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #f59e0b;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.article-icon {
    margin-bottom: 1.5rem;
}

.cdc-article h3 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.cdc-article blockquote {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    font-style: italic;
    margin: 1.5rem 0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.cdc-article p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.practice-card {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.practice-card.illegal {
    background: linear-gradient(135deg, #fee2e2 0%, #ffffff 100%);
    border: 2px solid #dc2626;
}

.practice-card.legal {
    background: linear-gradient(135deg, #d1fae5 0%, #ffffff 100%);
    border: 2px solid #10b981;
}

.card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.practice-card h4 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.practice-card ul {
    list-style: none;
    padding: 0;
}

.practice-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #0f172a;
    line-height: 1.6;
}

.practice-card.illegal ul li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.practice-card.legal ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.cta-box {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f8fafc;
}

.tipos-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.tipos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tipo-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tipo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tipo-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tipo-card-content {
    padding: 2rem;
}

.tipo-card-content h3 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 1rem;
    text-align: center;
}

.tipo-card-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tipo-card-content h4 {
    font-size: 1.2rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.tipo-card-content ul {
    list-style: none;
    padding: 0;
}

.tipo-card-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #0f172a;
    line-height: 1.6;
}

.tipo-card-content ul li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.defender-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.defender-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border-top: 4px solid #f59e0b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-content {
    flex: 1;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin: 0 0 1rem 0;
}

.step-content p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.step-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #0f172a;
    line-height: 1.6;
}

.step-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.hero-defender {
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-defender img {
    display: block;
    width: 100%;
    height: auto;
}

.section-subtitle {
    font-size: 2rem;
    color: #0f172a;
    margin: 3rem 0 2rem 0;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-subtitle:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b 0%, #ea580c 100%);
    border-radius: 2px;
}

.passos-iniciais {
    margin: 3rem 0;
}

.orgaos-denuncia {
    margin: 4rem 0;
}

.orgaos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 968px) {
    .orgaos-grid {
        grid-template-columns: 1fr;
    }
}

.orgao-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #f59e0b;
    transition: transform 0.3s, box-shadow 0.3s;
}

.orgao-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.orgao-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8fafc;
}

.orgao-icon {
    flex-shrink: 0;
}

.orgao-header h4 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 0;
    text-align: center;
}

.orgao-tag {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: #ffffff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.orgao-content p {
    color: #0f172a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.orgao-content strong {
    color: #1e3a8a;
}

.orgao-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.orgao-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #0f172a;
    line-height: 1.6;
}

.orgao-content ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

.orgao-content a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.orgao-content a:hover {
    color: #f59e0b;
    text-decoration: underline;
}

.procon-list {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px solid #f59e0b;
}

.procon-list summary {
    cursor: pointer;
    color: #1e3a8a;
    font-size: 1.1rem;
    padding: 0.5rem;
    user-select: none;
    transition: color 0.3s;
}

.procon-list summary:hover {
    color: #f59e0b;
}

.procon-estados {
    margin-top: 1rem;
}

.procon-estados ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.procon-estados ul li {
    padding: 0.5rem;
    padding-left: 0;
    position: relative;
    color: #0f172a;
    line-height: 1.6;
}

.procon-estados ul li:before {
    display: none;
}

.faq-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-left: 4px solid #f59e0b;
    transition: background 0.3s;
}

.faq-question:hover {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 2rem;
    color: #f59e0b;
    font-weight: bold;
    transition: transform 0.3s;
    user-select: none;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

.artigos-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.artigos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.artigo-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.artigo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.artigo-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.artigo-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f59e0b;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.artigo-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.artigo-content h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.artigo-meta {
    display: flex;
    gap: 1rem;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.artigo-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.artigo-link {
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.artigo-link:hover {
    color: #f59e0b;
}

.artigo-link:after {
    content: "→";
    font-size: 1.2rem;
}

.artigo-completo {
    background: #ffffff;
}

.artigo-header {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 3rem 0 2rem;
    border-bottom: 3px solid #f59e0b;
}

.breadcrumb {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: #1e3a8a;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #f59e0b;
}

.artigo-header h1 {
    font-size: 2.8rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.artigo-meta-full {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #64748b;
    font-size: 0.95rem;
}

.tag-artigo {
    background: #f59e0b;
    color: #ffffff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.artigo-hero-image {
    width: 100%;
    margin-bottom: 3rem;
}

.artigo-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    line-height: 1.8;
}

.artigo-body .lead {
    font-size: 1.3rem;
    color: #1e3a8a;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.artigo-body h2 {
    font-size: 2rem;
    color: #0f172a;
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f59e0b;
}

.artigo-body h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin: 2rem 0 1rem;
}

.artigo-body h4 {
    font-size: 1.2rem;
    color: #0f172a;
    margin: 1.5rem 0 0.5rem;
}

.artigo-body p {
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.artigo-body ul, .artigo-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.artigo-body li {
    margin-bottom: 0.8rem;
    color: #0f172a;
}

.destaque-box {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    border-left: 4px solid #f59e0b;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.destaque-box h3 {
    color: #f59e0b;
    margin-top: 0;
}

.passos-box {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.passos-box h3 {
    color: #1e3a8a;
    margin-top: 1.5rem;
}

.passos-box h3:first-child {
    margin-top: 0;
}

.tabela-valores {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tabela-valores th {
    background: #1e3a8a;
    color: #ffffff;
    padding: 1rem;
    text-align: left;
}

.tabela-valores td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.tabela-valores tr:hover {
    background: #f8fafc;
}

.caso-real {
    background: #ffffff;
    border: 2px solid #10b981;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.caso-real h4 {
    color: #10b981;
    margin-top: 0;
}

.artigo-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.compartilhar h4 {
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    background: #1e3a8a;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.social-btn:hover {
    background: #f59e0b;
}

.artigos-relacionados {
    margin-top: 2rem;
}

.artigos-relacionados ul {
    list-style: none;
    padding: 0;
}

.artigos-relacionados li {
    margin-bottom: 0.8rem;
}

.artigos-relacionados a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
}

.artigos-relacionados a:hover {
    color: #f59e0b;
}

.sidebar {
    max-width: 350px;
    margin: 2rem auto;
}

.sidebar-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-box h3 {
    margin-top: 0;
    color: #0f172a;
}

.indice {
    list-style: none;
    padding: 0;
}

.indice li {
    margin-bottom: 0.8rem;
}

.indice a {
    color: #1e3a8a;
    text-decoration: none;
}

.indice a:hover {
    color: #f59e0b;
}

.cta-sidebar {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: #ffffff;
}

.cta-sidebar h3, .cta-sidebar p {
    color: #ffffff;
}

.artigos-populares {
    list-style: none;
    padding: 0;
}

.artigos-populares li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.artigos-populares li:last-child {
    border-bottom: none;
}

.artigos-populares a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
}

.artigos-populares a:hover {
    color: #f59e0b;
}

.footer {
    background: #0f172a;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer p {
    margin: 0.5rem 0;
    color: #f8fafc;
}

.comentarios-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.comentarios-section h3 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.comentarios-info {
    color: #64748b;
    margin-bottom: 2rem;
}

.comentario-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
}

.comentarios-lista {
    margin-top: 2rem;
}

.comentario-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.comentario-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.comentario-header strong {
    color: #1e3a8a;
}

.comentario-data {
    color: #64748b;
    font-size: 0.9rem;
}

.comentario-item p {
    color: #0f172a;
    margin: 0;
}

.comentario-resposta {
    background: #fff7ed;
    border-left: 3px solid #f59e0b;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
}

.comentario-resposta strong {
    color: #f59e0b;
}

@media (max-width: 768px) {
    .hero-defender svg {
        height: 200px;
    }
    
    .orgao-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0f172a;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .nav-menu li a {
        display: block;
        padding: 0.75rem 1.5rem;
    }

    .btn-contato {
        margin: 0.5rem 1.5rem;
        display: inline-block;
    }
}

.contato-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contato-form-wrapper {
    max-width: 700px;
    margin: 3rem auto 0;
}

.contato-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.word-count {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #dc2626;
    font-weight: 600;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contato-form {
        padding: 2rem;
    }
}

/* Accessibility improvements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #f59e0b;
    color: #0f172a;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: bold;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Enhanced focus styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
.faq-question:focus {
    outline: 3px solid #f59e0b;
    outline-offset: 2px;
}

/* Focus visible for keyboard navigation */
*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 3px solid #f59e0b;
    outline-offset: 2px;
}

/* Improve contrast for better readability */
.subtitle {
    color: #475569;
}

.artigo-meta,
.comentario-data {
    color: #475569;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Lucide Icons styling */
[data-lucide] {
    stroke-width: 2;
    color: currentColor;
}

.tipo-card-content h3 [data-lucide] {
    color: #f59e0b;
}

.step-card h3 [data-lucide] {
    color: #f59e0b;
}

.faq-question h3 [data-lucide] {
    color: #1e3a8a;
}

.artigo-meta [data-lucide] {
    color: #64748b;
}

/* Organization logos */
.orgao-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    background: #ffffff;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
