/* Cartas */
.service-card {
    perspective: 1000px;
    position: relative;
    height: 300px;
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9; /* Fondo claro */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card-front {
    background-color: #f9f9f9;
    color: #333;
}

.service-card-back {
    transform: rotateY(180deg);
    background-color: #f9f9f9; /* Fondo claro */
    color: #333;
}

.service-card:hover .service-card-front {
    transform: rotateY(180deg);
}

.service-card:hover .service-card-back {
    transform: rotateY(0);
}

.icon {
    font-size: 40px;
    color: #6abe0a;
    margin-bottom: 15px;
}
