/* Página de Serviços */

.services-hero {
    position: relative;
    margin-top: 70px;
}

.services-hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.services-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-text {
    text-align: center;
    color: var(--white);
}

.services-hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-weight: 600;
}

.services-hero-text h1 {
    font-size: 42px;
    font-weight: 300;
    color: var(--white);
    margin: 0;
}

.services-cards {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card-large {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: 30px;
}

.service-card-content h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.service-card-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
}

.service-card-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

/* Detalhes do Trading */
.trading-details {
    padding: 60px 0 80px;
    background-color: var(--light-bg);
}

.trading-item {
    background: var(--white);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.trading-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-bg);
}

.trading-header h3 {
    font-size: 22px;
    color: #3D4F5C;
    font-weight: 600;
    margin: 0;
}

.trading-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trading-icon svg {
    fill: var(--white);
}

.trading-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.trading-item p:last-child {
    margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .services-grid-large {
        grid-template-columns: 1fr;
    }
    
    .services-hero h1 {
        font-size: 36px;
    }
    
    .service-card-content h2 {
        font-size: 20px;
    }
    
    .trading-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
