/* 1. O Container Pai */
.lux-service-grid {
    display: flex !important;       /* Força o flexbox */
    flex-direction: row !important; /* Força a direção horizontal */
    flex-wrap: wrap !important;     /* Permite quebrar linha */
    gap: 30px;
    justify-content: center;        /* Centraliza o grupo na tela */
    width: 100%;
    margin: 0 auto;                 /* Centraliza o container */
}

/* 2. O Card Individual */
.lux-service-card {                                                        
    width: 250px !important;
    min-width: 250px !important;
    max-width: 250px !important;

    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 20px;
}

.lux-service-card:hover {
    transform: translateY(-5px);
}

/* Área da Imagem */
.lux-service-card-image {
    width: 100%;
    height: 180px;
}

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

/* Área de Texto */
.lux-service-card-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lux-service-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    line-height: 25px !important;
}

.lux-service-card-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    /* Limite de linhas */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Botão */
.lux-card-action {
    margin-top: auto;
}

.lux-service-card-link {
    display: block;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    background-color: #c5a47e;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.lux-service-card-link:hover {
    background-color: #b08d65;
}