﻿.section1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background-color: #111;
    border-radius: 10px;
}

.card1 {
    background: #1e1e1e;
    color: #fff;
    width: 150px;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(64,224,208,0.5); /* turquesa */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card1:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255,64,129,0.7); /* rosa al hover */
    }

.card-img1 {
    max-width: 80px;
    margin-bottom: 10px;
}

.card1 h4 {
    margin: 0;
    color: #40e0d0; /* turquesa */
}
