/* =========== SERVICE DETAIL PAGES =========== */

.pages-content {
    padding: 60px 0 80px;

}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-text h2 {
    margin-bottom: 24px;
}

.service-text p {
    font-size: 18.5px;
    font-weight: 400 !important;
    line-height: 1.8;
    color: var(--middle-dark);
    margin-bottom: 20px;
}

.service-text p:last-child {
    margin-bottom: 0;
}

/* Service List */
.service-list-container {
    background: linear-gradient(135deg, rgba(0, 64, 143, 0.15) 0%, rgba(0, 64, 143, 0.25) 100%);
    padding: 40px;
    border-radius: 36px;
    box-shadow: 2px 6px 30px rgba(0, 0, 0, 0.15);
    margin-top: 60px !important;

}

.service-list-title {
    font-size: 1.8rem;
    color: var(--color-2);
    margin-bottom: 30px;
    font-weight: 700;
}

.service-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.service-list li,
.service-list a {
    position: relative;
    padding-left: 36px;
    font-size: 19px;
    color: var(--middle-dark);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.service-list li::before,
.service-list a::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--color-1);
    color: white;
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-link-page {
    text-decoration: underline;
    text-underline-offset: 4px;
    /* Espaçamento entre texto e linha */
    line-height: 1.2;
}

.service-link-page {
    text-decoration: underline;
    text-underline-offset: 4px;

    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s ease;

}

.service-link-page:hover {
    color: var(--color-1);
    text-underline-offset: 6px;
}

@media (min-width: 768px) {
    .service-list {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* FAQ Service Section */
.faq-service-section {
    margin-top: 48px;
}

@media (min-width: 980px) {
    .faq-service-section {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 60px;
        align-items: center;
    }

    .faq-service-section>.section-title {
        margin-bottom: 0;
        position: sticky;
        top: 120px;
    }
}

.faq-service-section>.section-title {
    margin-bottom: 24px;
}

.faq-service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 40px;
}



.faq-service-column {
    display: flex;
    flex-direction: column;
}

.faq-service-section .faq-item {
    border-bottom: 1px solid rgba(0, 64, 143, 0.15);
    margin-bottom: 0;
}

.faq-service-section .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    font-family: "Jost", sans-serif;
}

.faq-service-section .faq-question h3 {
    font-size: 18px;
    color: var(--color-2);
}

.faq-service-section .faq-question:hover,
.faq-service-section .faq-question:focus {
    color: var(--color-1);
    outline: none;
}

.faq-service-section .faq-question:hover h3 {
    color: var(--color-1);
}

.faq-service-section .faq-question svg {
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.faq-service-section .faq-question svg.rotated {
    transform: rotate(45deg);
}

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

.faq-service-section .faq-answer.open {
    max-height: 280px;
    padding-bottom: 20px;
}

.faq-service-section .faq-answer p {
    color: var(--middle-dark);
    line-height: 1.6;
    font-size: 17px;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    padding: 20px 0 80px 0;

}

.cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.cta-content h2 {
    color: var(--color-2);
    font-size: 24px;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--middle-dark);
    font-size: 18.5px;

    margin: 0 20px;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-1);
    color: var(--light);
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(242, 94, 25, 0.3);
    border: 2px solid var(--color-1);
    flex-shrink: 0;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--color-1);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.cta-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (min-width: 980px) {
    .cta-box {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .cta-content {
        align-items: flex-start;
        text-align: left;
    }

    .cta-content h2 {
        color: var(--color-2);
        font-size: 30px;
        margin-bottom: 16px;
    }

    .cta-content p {
        margin: 0;

    }
}