/* .metodologia-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.metodologia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
} */

.tab-button {
    transition: all 0.3s ease;
}

.tab-button.active {
    background-color: #0FA2A6;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
