/* About Section Styles */
#about-section {
    background: url(../img/X-jures-solucao-Section-pc.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.about-container {
    max-width: 500px;
    text-align: left;
    margin-right: 80px;
}

.about-content {
    max-width: 650px;
    margin-left: auto;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.about-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #E6B75A 0%, #C69D4F 100%);
    color: #1A212E;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 183, 90, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #E6B75A;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border: 2px solid #E6B75A;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(230, 183, 90, 0.1);
    transform: translateY(-2px);
}

/* Statistics Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, #4a3a245d 0%, #6b5534a8 50%, #4a3a2447 100%);
    backdrop-filter: blur(10px);
}

.stat-card {

    padding: 32px 40px;
    text-align: center;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 992px) {
    #about-section {
        padding: 60px 20px;
    }

    .about-title {
        font-size: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-card {
        padding: 28px 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    #about-section {
        padding: 50px 16px;
        background: url(../img/X-jures-solucao-Section-tablet-cel.webp);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        align-items: flex-end;
        justify-content: center;

    }

    .about-title {
        font-size: 32px;
    }

    .about-description {
        font-size: 15px;
    }

    .about-buttons {
        flex-direction: column;
    }
   

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .stat-card {
        padding: 24px 20px;
    }

    .stat-card:not(:last-child)::after {
        display: none;
    }

    .stat-card:not(:last-child) {
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 12px;
    }
    .about-container {
        margin-right: inherit;
    }
    .about-content {
        padding-top: 210px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 28px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 15px;
        padding: 12px 24px;
    }

    .stat-number {
        font-size: 24px;
    }
}