/* ===== SERVIÇOS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(198, 167, 94, 0.15);
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(5px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(198, 167, 94, 0.1);
    pointer-events: none;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.service-card:hover::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-color: rgba(198, 167, 94, 0.3);
}

.service-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1.6rem;
    font-family: 'Montserrat', serif;
    position: relative;
    padding-bottom: 1rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background: var(--primary-gold);
}

.service-card p {
    color: rgba(245, 245, 245, 0.8);
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-benefits {
    list-style: none;
    margin: 1.5rem 0;
}

.service-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.9rem;
    border-bottom: 1px dashed rgba(198, 167, 94, 0.1);
}

.service-benefits li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.service-card .cta-button {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 0.8rem;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}