/* Arousa Fiber - style.css - Additional styles */

/* Article content */
.article-content h1,
.article-content h2,
.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.article-content .list-points {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-content .list-points li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Article table */
.article-table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.article-table th,
.article-table td {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    text-align: left;
}

.article-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}

.article-table tr:nth-child(even) td {
    background: #f6f6f6;
}

/* FAQ section */
.faq-section {
    margin: 2rem 0;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: var(--radius2, 8px);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    padding: 1rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    background: var(--light, #f6f6f6);
    list-style: none;
    font-size: 1rem;
    color: var(--primary);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::before {
    content: "+ ";
    font-weight: bold;
}

details[open] .faq-question::before {
    content: "- ";
}

.faq-answer {
    padding: 1rem 1.25rem;
    color: var(--secondary, #666);
    line-height: 1.7;
}

/* Nav active */
.nav__item--active .nav__link {
    color: var(--primary);
}

/* Responsive header fix */
@media screen and (max-width: 820px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }
    
    main {
        padding-top: 80px;
    }
}

/* Footer year */
.footer__paxinas {
    color: var(--secondary, #666);
    font-size: 0.9rem;
}
