/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 150px 50px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,165,0,0.1) 0%, transparent 50%);
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.page-header h1 span {
    color: #ffa500;
}

.page-header p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
}

/* INTRO SERVIÇOS */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.intro-text h2 {
    font-size: 2rem;
    color: #ffa500;
    margin-bottom: 20px;
}

.intro-text p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* SERVICE DETAIL */
.service-detail {
    padding: 80px 50px;
    border-radius: 30px;
    margin: 40px 0;
    background: #111;
}

.service-detail.bg-dark {
    background: #0a0a0a;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse .service-detail-content {
    direction: ltr;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-icon-large i {
    font-size: 3rem;
    color: #ffa500;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #ffa500;
    margin-bottom: 10px;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 30px;
}

.service-description {
    margin-bottom: 30px;
}

.service-description p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.service-feature-item {
    display: flex;
    gap: 15px;
}

.service-feature-item i {
    color: #ffa500;
    font-size: 1.3rem;
    margin-top: 3px;
}

.service-feature-item h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.service-feature-item p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-cta {
    display: flex;
    gap: 15px;
}

.service-detail-image {
    position: relative;
}

.service-detail-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.image-stats {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: #000;
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid #ffa500;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.image-stats .stat {
    text-align: center;
    min-width: 80px;
}

.image-stats .stat-number {
    font-size: 1.5rem;
    color: #ffa500;
    font-weight: bold;
}

.image-stats .stat-label {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* FAQ SECTION */
.faq-section {
    background: #111;
    border-radius: 30px;
    padding: 60px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #222;
}

.faq-question h3 {
    color: #fff;
    font-size: 1.1rem;
}

.faq-question i {
    color: #ffa500;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.6;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    border-radius: 30px;
    padding: 80px 50px;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 30px;
    opacity: 0.8;
}

.cta-content .btn {
    background: #000;
    color: #ffa500;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-content .btn:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-grid.reverse {
        direction: ltr;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .image-stats {
        position: static;
        transform: none;
        margin-top: 30px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 20px 60px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .service-detail {
        padding: 40px 20px;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .service-cta {
        flex-direction: column;
    }

    .faq-section {
        padding: 30px 20px;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}