/* --- Estilos para Sistema de Tabs en IDS --- */

.fdi-tabs-wrapper {
    margin-top: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.fdi-tabs-header {
    display: flex;
    background: #003d51;
    overflow-x: auto;
}

.fdi-tab-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 18px 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    outline: none;
    border-bottom: 4px solid transparent;
}

.fdi-tab-btn:hover {
    background: rgba(255,255,255,0.1);
}

.fdi-tab-btn.active {
    background: #002d3c;
    color: #fff;
    border-bottom: 4px solid #f7be0d;
}

.fdi-tab-content {
    padding: 40px;
    display: none;
    animation: fadeIn 0.5s ease;
}

.fdi-tab-content.active {
    display: block;
}

/* Tipografía Estandarizada para Tabs */
.fdi-tab-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.fdi-tab-content h4 {
    font-size: 1.25rem;
    color: #003d51;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

.fdi-tab-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CTA Styles */
.fdi-cta-wrapper {
    text-align: center;
    padding: 60px 0;
    background: #eef3f6;
    margin-top: 40px;
}

.fdi-cta-title {
    color: #003d51;
    font-weight: 700;
    margin-bottom: 20px;
}

.fdi-cta-btn {
    background: #f7be0d;
    color: #003d51;
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(247, 190, 13, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.fdi-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(247, 190, 13, 0.6);
    color: #003d51;
}

@media (max-width: 768px) {
    .fdi-tab-content {
        padding: 20px;
    }
    
    .fdi-tab-btn {
        padding: 15px;
        font-size: 14px;
        flex: 1;
        text-align: center;
    }
}
