.team-section {
    background: #10141b;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

/*.section-title {
    font-size: 2.2rem;
    background: linear-gradient(to right, #00ffe0, #00b3ff);
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-bottom: 50px;
}*/

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    background: #1a1f27;
    padding: 20px;
    border-radius: 16px;
    width: 280px;
    text-align: center;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.team-member h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.team-member .role {
    color: #00ffe0;
    margin-bottom: 10px;
}

.team-member .bio {
    font-size: 0.95rem;
    color: #cfcfcf;
}

.testimonials {
    margin-top: 60px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials h3 {
    font-size: 1.5rem;
    color: #00b3ff;
    margin-bottom: 20px;
}

.testimonial-box {
    background: #1a1f27;
    padding: 20px;
    border-left: 4px solid #00ffe0;
    border-radius: 12px;
    font-style: italic;
    color: #e0e0e0;
}

.testimonial-box span {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    font-style: normal;
    color: #ffffff;
}

/*inicio */
.image-hover {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.image-hover .img-default,
.image-hover .img-hover {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: opacity 0.4s ease-in-out;
}

.image-hover .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.image-hover:hover .img-hover {
    opacity: 1;
}

.image-hover:hover .img-default {
    opacity: 0;
}

/*seccion hover imagen*/

/* Responsive */
@media (max-width: 768px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 90%;
    }

    .testimonial-box {
        font-size: 0.95rem;
    }
}